2007-08-15 11:28:22 -03:00
|
|
|
# Import smtplib for the actual sending function
|
|
|
|
import smtplib
|
|
|
|
|
|
|
|
# Import the email modules we'll need
|
2016-09-07 22:15:59 -03:00
|
|
|
from email.message import EmailMessage
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2016-09-07 22:15:59 -03:00
|
|
|
# Open the plain text file whose name is in textfile for reading.
|
2015-02-25 12:14:09 -04:00
|
|
|
with open(textfile) as fp:
|
|
|
|
# Create a text/plain message
|
2016-09-07 22:15:59 -03:00
|
|
|
msg = EmailMessage()
|
|
|
|
msg.set_content(fp.read())
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
# me == the sender's email address
|
|
|
|
# you == the recipient's email address
|
2019-11-15 05:03:47 -04:00
|
|
|
msg['Subject'] = f'The contents of {textfile}'
|
2007-08-15 11:28:22 -03:00
|
|
|
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()
|