Question

Possible Duplicate:
Specify a sender when sending mail with Python (smtplib)

I'm using smtplib to send a mail in python. When I view a sent mail, the from line only says "contact" because I have FROM = "contact@foo.com". However, I'd like the from line to read "foo" instead (but still have an email recipient reply to contact@foo.com). Any advice?

Was it helpful?

Solution

Try this:

FROM = "Foo <contact@foo.com>"
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top