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