gpt4 book ai didi

python - 如何在以下功能中使用电子邮件模板?

转载 作者:太空宇宙 更新时间:2023-11-04 05:39:14 26 4
gpt4 key购买 nike

我正在尝试使用以下代码发送邮件功能:

def button_confirm_mom(self,cr,uid,ids,context=None):
sobj = self.browse(cr, uid, ids)
msg_pool = self.pool.get('mail.mail')
cc_text = ''
msg_vals = {
'subject' : "MoM has been created",

'email_from' : "abc@gmail.com",
'reply_to' : False,
'state' : 'outgoing',
'model' : False,
'res_id' : False,
'auto_delete' : False,
}


if sobj.matp:
for cc_obj in sobj.matp:
if cc_obj.empname.work_email:
cc_text += cc_obj.empname.work_email + ','

if sobj.newa:
for cc_obj1 in sobj.newa:
if cc_obj1.empname.work_email:
cc_text += cc_obj1.empname.work_email + ','
msg_vals['email_cc'] = cc_text
self.pool.get('mail.mail').create(cr,uid,msg_vals)
return True

我想知道如何使用模板并为多人发送邮件。有人对此有任何想法吗?

最佳答案

你可以这样使用。为邮件添加新模板(如查看 xml 文件)。示例:

<?xml version="1.0"?>
<openerp>
<data noupdate="1">
<record id="event_YOUR_ID_mail_template" model="mail.template">
<field name="name">Name of template</field>
<!-- for example model - res.users -->
<field name="model_id" ref="your_module.model_res_users"/>
<field name="email_from">test@gmail.com</field>
<field name="email_to" >${object.email|safe}</field>
<field name="lang"></field>
<field name="subject">Your subject</field>
<field name="auto_delete" eval="True"/>
<field name="body_html"><![CDATA[Message of mail. <p>You can use here ${object.name} or any fields of object,</p> ]]></field>
</record>
</data>
</openerp>

安装\更新您的模块后,您可以在此处找到(和编辑)模板:(顶部菜单)设置 -> (左侧菜单)电子邮件 -> 模板(您必须使用开发人员模式 以查看此菜单项)。

我们如何在 python 代码中使用这个模板:

temp = self.env.ref('your_module.event_YOUR_ID_mail_template')
if temp:
# example: user - instance of res.users
temp.sudo().with_context().send_mail(user.id, force_send=True)

关于python - 如何在以下功能中使用电子邮件模板?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34585222/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com