Good day
How to send an email without using a template?
I have done the following:
mail = self.env['mail.message']
mail_data = {'subject': subject,
'body_html': body,
'email_from': email_from,
'email_to': email_to}
mail_out = mail.create(mail_data)
mail.send(mail_out)
Kind Regards