Please forgive me up front. When I’ve tried to research this question I end up looking at code that I simply can’t comprehend. I have about 3 hours of experience with Python and am probably attempting more than I can handle.
The problem is simple. I can successfully call Python from R (my analysis software) to send an e-mail. Adding the message, subject, to, and from fields I can do. I’d like to be able to send an attachment. Life would be great if I could send just one attachment.
The code I have thus far is
import smtplib
import os
from email.MIMEMultipart import MIMEMultipart
from email.MIMEBase import MIMEBase
from email.MIMEText import MIMEText
from email.Utils import COMMASPACE, formatdate
from email import Encoders
import email.utils
fromaddr = 'someone@gmail.com'
toaddrs = 'recipient@gmail.org'
msg = MIMEMultipart(MIMEText('This is the body of the e-mail'))
msg['From'] = email.utils.formataddr(('Benjamin Nutter', fromaddr))
msg['To'] = email.utils.formataddr(('Benjamin Nutter', toaddrs))
msg['Subject'] = 'Simple test message'
f = 'filename.pdf'
part=MIMEBase('application', 'octet-stream')
part.set_payload(open(f, 'rb').read())
Encoders.encode_base64(part)
part.add_header('Content-Disposition', 'attachment; filename=\"%s\"' % os.path.basename(f))
msg.attach(part)
"username = 'user'
"password = 'pw'
server = smtplib.SMTP('smtp.gmail.com:587')
server.ehlo()
server.starttls()
server.ehlo()
server.login(username,password)
server.sendmail(fromaddr, toaddrs, msg.as_string())
server.quit()
When I run this code, I get the message
string payload expected: [type ‘list’] (but with < not [)
I’m at my limit for self-learning today. I’m hoping this is an obvious fix to someone more experienced than myself.
I hope you’re all having a great day.
I know it’s bad form to answer my own question, but it started working miraculously with no changes. What a way to make my first impression, right?
Anyway, I wrapped it into an R function. This will send from gmail, but I haven’t tried sending it from other accounts yet. I’m most interested in sending from Outlook, since I’d be using this to send analysis reports from within my scripts. When I entered my employer’s SMTP server, it gave the error “SMTP AUTH extension not supported by server.” I suspect I’ll have to work this out with my tech support guys.
This will probably only work on Windows, thanks to the winDialog() functions. But it’s a good start.