I am having issues getting the Subject portion of my emails to show up when my program sends email. I thought I was following the RFC spec for SMTP.. but i cant seem to figure out what I am doing wrong. Any help is greatly appreciated.
def email():
sender = 'username@domain.com'
receivers = ['username@domain.com']
message = """From: From Admin <admin@domain.com>
To:To Person <user@domain.com>
Subject: Important Information
This is a test email message.
"""
try:
smtpObj = smtplib.SMTP('domain.com', 25)
smtpObj.sendmail(sender, receivers, message)
print "Successfully sent email"
except smtplib.SMTPException:
print('Error: unable to send email')
smtplibtakes care of that. To avoid errors when creating email messages it woule be better to use the [email](docs.python.org/library/email) module. – mata May 27 '12 at 15:52