<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Sending Email with Attachments in Python</title>
	<atom:link href="http://www.finefrog.com/2008/05/06/sending-email-with-attachments-in-python/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.finefrog.com/2008/05/06/sending-email-with-attachments-in-python/</link>
	<description>while(true) { write(learn(live())); }</description>
	<lastBuildDate>Wed, 25 Jan 2012 05:07:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Samar</title>
		<link>http://www.finefrog.com/2008/05/06/sending-email-with-attachments-in-python/comment-page-1/#comment-52088</link>
		<dc:creator>Samar</dc:creator>
		<pubDate>Fri, 28 Oct 2011 23:43:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.finefrog.com/?p=125#comment-52088</guid>
		<description>Yup Eric..from is a keyword..a different name can be used here.</description>
		<content:encoded><![CDATA[<p>Yup Eric..from is a keyword..a different name can be used here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://www.finefrog.com/2008/05/06/sending-email-with-attachments-in-python/comment-page-1/#comment-39368</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Thu, 09 Jun 2011 14:45:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.finefrog.com/?p=125#comment-39368</guid>
		<description>&#039;from&#039; is a python keyword. The function above should probably be refactored so that &#039;from&#039; is not the name of a parameter.</description>
		<content:encoded><![CDATA[<p>&#8216;from&#8217; is a python keyword. The function above should probably be refactored so that &#8216;from&#8217; is not the name of a parameter.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thinkwell</title>
		<link>http://www.finefrog.com/2008/05/06/sending-email-with-attachments-in-python/comment-page-1/#comment-22920</link>
		<dc:creator>thinkwell</dc:creator>
		<pubDate>Sat, 27 Nov 2010 02:37:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.finefrog.com/?p=125#comment-22920</guid>
		<description>Thanks  alot. Excellent little script. 

Took me awhile to figure out, but line 22 can be modified to send HTML emails.

 message.attach(MIMEText(text, &#039;html&#039;))</description>
		<content:encoded><![CDATA[<p>Thanks  alot. Excellent little script. </p>
<p>Took me awhile to figure out, but line 22 can be modified to send HTML emails.</p>
<p> message.attach(MIMEText(text, &#8216;html&#8217;))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Poor Yorick</title>
		<link>http://www.finefrog.com/2008/05/06/sending-email-with-attachments-in-python/comment-page-1/#comment-13546</link>
		<dc:creator>Poor Yorick</dc:creator>
		<pubDate>Sun, 21 Feb 2010 00:24:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.finefrog.com/?p=125#comment-13546</guid>
		<description>I came to this page while looking for a drop-in replacement for sendmail to use with mutt.  I ended up writing this:

http://www.ynform.org/w/Pub/SendmailPy

Posting it here for others who are looking for the same thing.  It can also augment the above script with more automated transport mechanism.</description>
		<content:encoded><![CDATA[<p>I came to this page while looking for a drop-in replacement for sendmail to use with mutt.  I ended up writing this:</p>
<p><a href="http://www.ynform.org/w/Pub/SendmailPy" rel="nofollow">http://www.ynform.org/w/Pub/SendmailPy</a></p>
<p>Posting it here for others who are looking for the same thing.  It can also augment the above script with more automated transport mechanism.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jordoncm</title>
		<link>http://www.finefrog.com/2008/05/06/sending-email-with-attachments-in-python/comment-page-1/#comment-6756</link>
		<dc:creator>jordoncm</dc:creator>
		<pubDate>Mon, 01 Jun 2009 14:23:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.finefrog.com/?p=125#comment-6756</guid>
		<description>@Christopher Thanks for the correction. I must have messed it up when posting. I have corrected this for future use.</description>
		<content:encoded><![CDATA[<p>@Christopher Thanks for the correction. I must have messed it up when posting. I have corrected this for future use.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christopher</title>
		<link>http://www.finefrog.com/2008/05/06/sending-email-with-attachments-in-python/comment-page-1/#comment-6432</link>
		<dc:creator>Christopher</dc:creator>
		<pubDate>Sat, 23 May 2009 18:28:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.finefrog.com/?p=125#comment-6432</guid>
		<description>Looks like there&#039;s a missing comma between &#039;files&#039; and &#039;cc&#039; in the function argument list.

But a part from this, thank you for the code! very helpful!!</description>
		<content:encoded><![CDATA[<p>Looks like there&#8217;s a missing comma between &#8216;files&#8217; and &#8216;cc&#8217; in the function argument list.</p>
<p>But a part from this, thank you for the code! very helpful!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.finefrog.com/2008/05/06/sending-email-with-attachments-in-python/comment-page-1/#comment-4746</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Fri, 03 Apr 2009 03:16:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.finefrog.com/?p=125#comment-4746</guid>
		<description>I wanted to comment and thank the author, good stuff</description>
		<content:encoded><![CDATA[<p>I wanted to comment and thank the author, good stuff</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Radomir</title>
		<link>http://www.finefrog.com/2008/05/06/sending-email-with-attachments-in-python/comment-page-1/#comment-4458</link>
		<dc:creator>Radomir</dc:creator>
		<pubDate>Wed, 11 Mar 2009 09:35:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.finefrog.com/?p=125#comment-4458</guid>
		<description>Easier said than done, right?  Well I want it to be the other way around!</description>
		<content:encoded><![CDATA[<p>Easier said than done, right?  Well I want it to be the other way around!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://www.finefrog.com/2008/05/06/sending-email-with-attachments-in-python/comment-page-1/#comment-687</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Sun, 22 Jun 2008 20:39:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.finefrog.com/?p=125#comment-687</guid>
		<description>I agree this is very helpful!</description>
		<content:encoded><![CDATA[<p>I agree this is very helpful!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter-Jan Randewijk</title>
		<link>http://www.finefrog.com/2008/05/06/sending-email-with-attachments-in-python/comment-page-1/#comment-655</link>
		<dc:creator>Peter-Jan Randewijk</dc:creator>
		<pubDate>Thu, 22 May 2008 12:36:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.finefrog.com/?p=125#comment-655</guid>
		<description>This should be included in the python help file!</description>
		<content:encoded><![CDATA[<p>This should be included in the python help file!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

