Showing posts with label send. Show all posts
Showing posts with label send. Show all posts
Monday, November 02, 2015
Python Email Send
Simple email test from python
import smtplib
from email.mime.text import MIMEText
f = "no-reply@example.com"
t = "joe@example.com"
s = smtplib.SMTP('localhost')
msg = MIMEText("this is a test")
msg["Subject"] = "This is a test - ignore"
msg["To"] = t
msg["From"] = f
s.sendmail(f, [t], msg.as_string())
Subscribe to:
Posts (Atom)