from email.MIMEText import MIMETextfrom email.Header import Headerfrom email import Utilsmessage = """Hello,This is a test messaget!-- Anonymous"""msg = MIMEText(message)msg['To'] = 'recipient@example.com'fromhdr = Header("Michael Mxfcller", 'iso-8859-1')fromhdr.append('<mmueller@example.com>', 'ascii')msg['From'] = fromhdrmsg['Subject'] = Header('Test Message')msg['Date'] = Utils.formatdate(localtime = 1)msg['Message-ID'] = Utils.make_msgid()print msg.as_string()
Name (required)
email (will not be published) (required)
Website