if recipients only then try to send email digest

This commit is contained in:
Anand Doshi 2012-11-05 13:28:30 +05:30
parent 282a97f954
commit 3b8d588f3d

View File

@ -56,6 +56,7 @@ class DocType:
recipients = filter(lambda r: r in valid_users,
self.doc.recipient_list.split("\n"))
if recipients:
from webnotes.utils.email_lib import sendmail
sendmail(recipients=recipients, subject=(self.doc.frequency + " Digest"),
sender="ERPNext Notifications <notifications+email_digest@erpnext.com>",