Background :-

My email Backend is something like this

EMAIL_HOST ='smtp.gmail.com' 
EMAIL_PORT = 587
EMAIL_HOST_USER = 'feedback@example.com' 
EMAIL_HOST_PASSWORD = 'XXX' 
EMAIL_USE_TLS = True

Problem:-

Am using EmailMultiAlternatives to send html mails. Now I want to define auth_user and auth_password so that i can change the "from".Basically i want to over ride the EMAIL_HOST_USER, but want the from_email to be verbose i.e. 'Support Team' How can i do that? The below does not work. But I hope you got my point.

subject, from_email, to = "hello", 'Support Team','to_user@gmail.com'
text = "hello"
html = "<strong>hello</strong>"
msg = EmailMultiAlternatives(subject, text_content, from_email, [to])
msg.attach_alternative(html_content, "text/html")
msg.send(fail_silently=False,auth_user = 'support@example.me',auth_password = 'XXX')

P.S: Please forgive my poor English

link|improve this question

70% accept rate
feedback

1 Answer

You could do something like this:

from django.core.mail import *
msg = EmailMultiAlternatives(subject, text_content, from_email, [to])
msg.attach_alternative(html_content, "text/html")
#retrieve emailbackend from settings.py
connection = get_connection()
#change connection parameters
connection.username='XXX'
connection.password='XXX'
connection.host='XXX'
connection.send_messages([msg,])
# dont forget to close connection
connection.close()

EmailMultiAlternatives accepts only one paramter (fail_silently=False|True).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.