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>
Source:stackexchange.com