[Django]-Email django from using EmailMultiAlternatives

8👍

For the Name to be displayed instead of the username part of the email, just do

from_email = "info@domain.com <info@domain.com>"

OR

from_email = "Name <info@domain.com>"

Leave a comment