2022-04-14 21:48:59 -03:00
|
|
|
# Import smtplib for the actual sending function.
|
2007-08-15 11:28:22 -03:00
|
|
|
import smtplib
|
|
|
|
|
2022-04-14 21:48:59 -03:00
|
|
|
# Here are the email package 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
|
|
|
# Create the container email message.
|
|
|
|
msg = EmailMessage()
|
2007-08-15 11:28:22 -03:00
|
|
|
msg['Subject'] = 'Our family reunion'
|
|
|
|
# me == the sender's email address
|
|
|
|
# family = the list of all recipients' email addresses
|
|
|
|
msg['From'] = me
|
2016-09-07 22:15:59 -03:00
|
|
|
msg['To'] = ', '.join(family)
|
2019-07-14 04:46:19 -03:00
|
|
|
msg.preamble = 'You will not see this in a MIME-aware mail reader.\n'
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2022-04-14 21:48:59 -03:00
|
|
|
# Open the files in binary mode. You can also omit the subtype
|
|
|
|
# if you want MIMEImage to guess it.
|
2007-08-15 11:28:22 -03:00
|
|
|
for file in pngfiles:
|
2015-02-25 12:14:09 -04:00
|
|
|
with open(file, 'rb') as fp:
|
2016-09-07 22:15:59 -03:00
|
|
|
img_data = fp.read()
|
|
|
|
msg.add_attachment(img_data, maintype='image',
|
2022-04-14 21:48:59 -03:00
|
|
|
subtype='png')
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
# Send the email via our own SMTP server.
|
2016-09-07 22:15:59 -03:00
|
|
|
with smtplib.SMTP('localhost') as s:
|
|
|
|
s.send_message(msg)
|