<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DZone Snippets: attachment code</title>
    <link>http://snippets.dzone.com/posts</link>
    <pubDate>Thu, 24 Jul 2008 23:59:47 GMT</pubDate>
    <description>DZone Snippets: attachment code</description>
    <item>
      <title>Send Email in Python with Text File Attachment</title>
      <link>http://snippets.dzone.com/posts/show/3910</link>
      <description>// description of your code here&lt;br /&gt;Send an email in python with a text attachment. You can change the attachment type by adjusting the part.startbody label in the attachment section (ie, 'image/jpg' or whatever)&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;import smtplib, sys, MimeWriter, StringIO, base64&lt;br /&gt;import os&lt;br /&gt;def mail(serverURL=None, sender='', to='', subject='', text=''):&lt;br /&gt;    """&lt;br /&gt;    Usage:&lt;br /&gt;    mail('somemailserver.com', 'me@example.com', 'someone@example.com', 'test', 'This is a test')&lt;br /&gt;    """&lt;br /&gt;    message = StringIO.StringIO()&lt;br /&gt;    writer = MimeWriter.MimeWriter(message)&lt;br /&gt;    writer.addheader('Subject', subject)&lt;br /&gt;    writer.startmultipartbody('mixed')&lt;br /&gt;&lt;br /&gt;    # start off with a text/plain part&lt;br /&gt;    part = writer.nextpart()&lt;br /&gt;    body = part.startbody('text/plain')&lt;br /&gt;    body.write(text)&lt;br /&gt;&lt;br /&gt;    # now add an attachment&lt;br /&gt;    part = writer.nextpart()&lt;br /&gt;    part.addheader('Content-Transfer-Encoding', 'base64')&lt;br /&gt;    body = part.startbody('text/plain')&lt;br /&gt;    base64.encode(open('myfile.txt', 'rb'), body)&lt;br /&gt;&lt;br /&gt;    # finish off&lt;br /&gt;    writer.lastpart()&lt;br /&gt;&lt;br /&gt;    # send the mail&lt;br /&gt;    smtp = smtplib.SMTP(serverURL)&lt;br /&gt;    smtp.sendmail(sender, to, message.getvalue())&lt;br /&gt;    smtp.quit()&lt;br /&gt;&lt;/code&gt;</description>
      <pubDate>Thu, 26 Apr 2007 17:23:42 GMT</pubDate>
      <guid>http://snippets.dzone.com/posts/show/3910</guid>
      <author>minitotoro (Natalie)</author>
    </item>
  </channel>
</rss>
