[Django]-How do you change the display name when sending emails via Amazon SES in Django?

4👍

I doubt that you can, but you should be able to use from addresses like this:

email_message = EmailMessage('This is a title', 'This is a message body', 'UserFirstName UserLastName <FromEmail@example.com>', ['ToEmail@example.com'])

which should result in email clients displaying the from address like this:

UserFirstName UserLastName <FromEmail@example.com>
👤mhawke

Leave a comment