跳至內容
選單
此問題已被標幟
2 回覆
5916 瀏覽次數

in odoo 11 ,There is any way to send mail with  dynamic  body  content  and  'to_adrress' by conditinally.I need to send Mail to diffrent approavls with different content on each stage of my work flow.I need to send emai to users by python code

頭像
捨棄
最佳答案

Please try like this.

vals = {
'subject': 'Foo',
'body_html': body,
'email_to': 'foo@example.com,bar@example.com',
'email_cc': 'qux@example.com',
'auto_delete': False,
'email_from': 'foobar@example.com',
}

mail_id = self.env['mail.mail'].sudo().create(vals)
mail_id.sudo().send()

頭像
捨棄
最佳答案

create_values = {
'body_html': "your html body",
'subject': "your subject",
'email_from': your email from,
'recipient_ids': [(4, partner.id)]
}
mail = self.env['mail.mail'].create(create_values)
mail.send()

i used this code to send email without mail template in odoo 12

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
2
7月 24
14259
1
7月 21
8493
0
4月 20
4972
1
5月 18
3251
0
4月 18
3743