Created
January 15, 2013 17:38
-
-
Save binarytemple/4540378 to your computer and use it in GitHub Desktop.
Create a multipart email message, send to multiple recipients.
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
#!/usr/bin/env python2.7 | |
import smtplib | |
from email.mime.multipart import MIMEMultipart | |
from email.mime.text import MIMEText | |
from email.mime.base import MIMEBase | |
from email import Encoders | |
msg = MIMEMultipart() | |
msg['Subject'] = "Greets from Bryan" | |
msg['From'] = "[email protected]" | |
msg['To'] = "[email protected]" | |
from_user = "from@hostname" | |
to_users = ["to@hostname", "to@hostname2",] | |
part = MIMEBase('spreadsheet','text/csv') | |
part.set_payload("1,2,3,4,5\n2,4,6,8,10") | |
Encoders.encode_base64(part) | |
part.add_header('Content-Disposition','attachment; filename="data.csv"') | |
msg.attach(part) | |
part2 = MIMEText("A text message") | |
Encoders.encode_base64(part2) | |
msg.attach(part2) | |
s = smtplib.SMTP('localhost') | |
s.sendmail(from_user, to_users, msg.as_string()) | |
s.quit() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment