浏览代码

reference doctype and name in the email queue while sending email from the auto email report (#4557)

version-14
Manas Solanki 7 年前
committed by Rushabh Mehta
父节点
当前提交
406bf1d962
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. +3
    -1
      frappe/email/doctype/auto_email_report/auto_email_report.py

+ 3
- 1
frappe/email/doctype/auto_email_report/auto_email_report.py 查看文件

@@ -139,7 +139,9 @@ class AutoEmailReport(Document):
recipients = self.email_to.split(),
subject = self.name,
message = message,
attachments = attachments
attachments = attachments,
reference_doctype = self.doctype,
reference_name = self.name
)

@frappe.whitelist()


正在加载...
取消
保存