添付したい zip ファイルが'/home/local/user/project/zip_module/csv.zip'
、 、 でありto
、sender
宛先subject
アドレスtext
、送信元アドレス、件名、メール本文がそれぞれ含まれているとします。
それで、
import smtplib, MimeWriter, mimetools, base64
message = StringIO.StringIO()
email_msg = MimeWriter.MimeWriter(message)
email_msg.addheader('To', to)
email_msg.addheader('From', sender)
email_msg.addheader('Subject', subject)
email_msg.addheader('MIME-Version', '1.0')
email_msg.startmultipartbody('mixed')
part = email_msg.nextpart()
body = part.startbody('text/plain')
part.flushheaders()
body.write(text)
file_to_attach = '/home/local/user/project/zip_module/csv.zip'
filename = os.path.basename(file_to_attach)
ftype, encoding = 'application/zip', None
part = email_msg.nextpart()
part.addheader('Content-Transfer-Encoding', encoding)
body = part.startbody("%s; name=%s" % (ftype, filename))
mimetools.encode(open(file_to_attach, 'rb'), body, encoding)
email_msg.lastpart()
email_text = message.getvalue()
smtplib
を使用したのとemail_text
同じようにメールを送信します。msg
例えば
smtp = smtplib.SMTP(SERVER, PORT)
smtp.login(USER, PASSWORD)
smtp.sendmail(sender, to, email_text)
smtp.quit()