Forked from yosemitebandit/send_pdf_with_boto_ses.py
Created
February 17, 2016 04:32
-
-
Save votaguz/9a3ec66a118ea3ba87bb to your computer and use it in GitHub Desktop.
send PDF attachment with boto and SES
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
''' quick example showing how to attach a pdf to multipart messages | |
and then send them from SES via boto | |
''' | |
from email.mime.text import MIMEText | |
from email.mime.application import MIMEApplication | |
from email.mime.multipart import MIMEMultipart | |
import boto | |
# via http://codeadict.wordpress.com/2010/02/11/send-e-mails-with-attachment-in-python/ | |
msg = MIMEMultipart() | |
msg['Subject'] = 'weekly report' | |
msg['From'] = '[email protected]' | |
msg['To'] = '[email protected]' | |
# what a recipient sees if they don't use an email reader | |
msg.preamble = 'Multipart message.\n' | |
# the message body | |
part = MIMEText('Howdy -- here is the data from last week.') | |
msg.attach(part) | |
# the attachment | |
part = MIMEApplication(open('/tmp/weekly.pdf', 'rb').read()) | |
part.add_header('Content-Disposition', 'attachment', filename='weekly.pdf') | |
msg.attach(part) | |
# connect to SES | |
connection = boto.connect_ses(aws_access_key_id='ID123' | |
, aws_access_key_secret='secret456') | |
# and send the message | |
result = connection.send_raw_email(msg.as_string() | |
, source=msg['From'] | |
, destinations=[msg['To']]) | |
print result |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment