Created
April 20, 2021 19:50
-
-
Save lanbugs/b26441c64bf2ac053bf16f3bc78d34c2 to your computer and use it in GitHub Desktop.
Mail with attachment (python3)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Source: https://stackoverflow.com/questions/3362600/how-to-send-email-attachments | |
import smtplib | |
from pathlib import Path | |
from email.mime.multipart import MIMEMultipart | |
from email.mime.base import MIMEBase | |
from email.mime.text import MIMEText | |
from email.utils import COMMASPACE, formatdate | |
from email import encoders | |
def send_mail(send_from, send_to, subject, message, files=[], | |
server="localhost", port=587, username='', password='', | |
use_tls=True): | |
"""Compose and send email with provided info and attachments. | |
Args: | |
send_from (str): from name | |
send_to (list[str]): to name(s) | |
subject (str): message title | |
message (str): message body | |
files (list[str]): list of file paths to be attached to email | |
server (str): mail server host name | |
port (int): port number | |
username (str): server auth username | |
password (str): server auth password | |
use_tls (bool): use TLS mode | |
""" | |
msg = MIMEMultipart() | |
msg['From'] = send_from | |
msg['To'] = COMMASPACE.join(send_to) | |
msg['Date'] = formatdate(localtime=True) | |
msg['Subject'] = subject | |
msg.attach(MIMEText(message)) | |
for path in files: | |
part = MIMEBase('application', "octet-stream") | |
with open(path, 'rb') as file: | |
part.set_payload(file.read()) | |
encoders.encode_base64(part) | |
part.add_header('Content-Disposition', | |
'attachment; filename="{}"'.format(Path(path).name)) | |
msg.attach(part) | |
smtp = smtplib.SMTP(server, port) | |
if use_tls: | |
smtp.starttls() | |
smtp.login(username, password) | |
smtp.sendmail(send_from, send_to, msg.as_string()) | |
smtp.quit() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment