Tag Archives: SMTP

Very simple email sending method in python

I needed to send an email, so I came up with this:   def send_plain_mail(subject, body, from_mail, to): import smtplib from email.MIMEText import MIMEText from email.Encoders import encode_quopri   msg = MIMEText(body, ‘plain’, ‘iso-8859-1′)   msg[’Subject’] = subject msg[’From’] = … Continue reading

Posted in Uncategorized | Tagged , , , | Leave a comment