2007-08-15 14:28:22 +00:00
|
|
|
# Import smtplib for the actual sending function
|
|
|
|
import smtplib
|
|
|
|
|
|
|
|
# Import the email modules we'll need
|
2016-09-08 01:15:59 +00:00
|
|
|
from email.message import EmailMessage
|
2007-08-15 14:28:22 +00:00
|
|
|
|
2016-09-08 01:15:59 +00:00
|
|
|
# Open the plain text file whose name is in textfile for reading.
|
2015-02-25 16:14:09 +00:00
|
|
|
with open(textfile) as fp:
|
|
|
|
# Create a text/plain message
|
2016-09-08 01:15:59 +00:00
|
|
|
msg = EmailMessage()
|
|
|
|
msg.set_content(fp.read())
|
2007-08-15 14:28:22 +00: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 17:15:13 +00:00
|
|
|
# Send the message via our own SMTP server.
|
2011-04-30 21:26:32 +00:00
|
|
|
s = smtplib.SMTP('localhost')
|
2011-04-30 21:19:53 +00:00
|
|
|
s.send_message(msg)
|
2009-04-26 20:25:45 +00:00
|
|
|
s.quit()
|