Archives
Blogroll
Python
Tag Archives: Email
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