Skip to content

Instantly share code, notes, and snippets.

@ilyasProgrammer
Created May 17, 2017 14:56
Show Gist options
  • Save ilyasProgrammer/1509f8ce9c7b31b132ec551c753a9abc to your computer and use it in GitHub Desktop.
Save ilyasProgrammer/1509f8ce9c7b31b132ec551c753a9abc to your computer and use it in GitHub Desktop.
Odoo send email
#Send mail sans queue
ir_mail_server = self.pool.get('ir.mail_server')
msg = ir_mail_server.build_email("[email protected]", ["[email protected]"], "My subject", "my message")
ir_mail_server.send_email(cr, uid, msg)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment