2007-08-15 11:28:22 -03:00
|
|
|
# Import smtplib for the actual sending function
|
|
|
|
import smtplib
|
|
|
|
|
|
|
|
# Import the email modules we'll need
|
|
|
|
from email.mime.text import MIMEText
|
|
|
|
|
|
|
|
# Open a plain text file for reading. For this example, assume that
|
|
|
|
# the text file contains only ASCII characters.
|
2015-02-25 12:14:09 -04:00
|
|
|
with open(textfile) as fp:
|
|
|
|
# Create a text/plain message
|
|
|
|
msg = MIMEText(fp.read())
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
# me == the sender's email address
|
|
|
|
# you == the recipient's email address
|
|
|
|
msg['Subject'] = 'The contents of %s' % textfile
|
|
|
|
msg['From'] = me
|
|
|
|
msg['To'] = you
|
|
|
|
|
2010-11-08 13:15:13 -04:00
|
|
|
# Send the message via our own SMTP server.
|
2011-04-30 18:26:32 -03:00
|
|
|
s = smtplib.SMTP('localhost')
|
2011-04-30 18:19:53 -03:00
|
|
|
s.send_message(msg)
|
2009-04-26 17:25:45 -03:00
|
|
|
s.quit()
|