diff options
Diffstat (limited to 'Doc/includes/email-mime.py')
-rw-r--r-- | Doc/includes/email-mime.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Doc/includes/email-mime.py b/Doc/includes/email-mime.py index 6af2be0..c87db6a 100644 --- a/Doc/includes/email-mime.py +++ b/Doc/includes/email-mime.py @@ -1,9 +1,6 @@ # Import smtplib for the actual sending function import smtplib -# And imghdr to find the types of our images -import imghdr - # Here are the email package modules we'll need from email.message import EmailMessage @@ -22,7 +19,7 @@ for file in pngfiles: with open(file, 'rb') as fp: img_data = fp.read() msg.add_attachment(img_data, maintype='image', - subtype=imghdr.what(None, img_data)) + subtype='jpeg') # Send the email via our own SMTP server. with smtplib.SMTP('localhost') as s: |