<?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: Version 0.2 of mailer module released</title>
	<atom:link href="http://ginstrom.com/scribbles/2009/03/29/version-02-of-mailer-module-released/feed/" rel="self" type="application/rss+xml" />
	<link>http://ginstrom.com/scribbles/2009/03/29/version-02-of-mailer-module-released/</link>
	<description>Random scribbling about programming, translation, and Japan</description>
	<lastBuildDate>Thu, 10 May 2012 05:41:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Pablo</title>
		<link>http://ginstrom.com/scribbles/2009/03/29/version-02-of-mailer-module-released/comment-page-1/#comment-16111</link>
		<dc:creator>Pablo</dc:creator>
		<pubDate>Fri, 12 Mar 2010 00:42:23 +0000</pubDate>
		<guid isPermaLink="false">http://ginstrom.com/scribbles/?p=927#comment-16111</guid>
		<description>I&#039;ve used the version 0.5 with Python 2.6. For send messages to, by example, Gmail, you need a line like this &quot;server.starttls()&quot; before the login command.
The module is great!

p/d: sorry for my english .. :(</description>
		<content:encoded><![CDATA[<p>I&#8217;ve used the version 0.5 with Python 2.6. For send messages to, by example, Gmail, you need a line like this &#8220;server.starttls()&#8221; before the login command.<br />
The module is great!</p>
<p>p/d: sorry for my english .. <img src='http://ginstrom.com/scribbles/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan Ginstrom</title>
		<link>http://ginstrom.com/scribbles/2009/03/29/version-02-of-mailer-module-released/comment-page-1/#comment-1385</link>
		<dc:creator>Ryan Ginstrom</dc:creator>
		<pubDate>Sat, 25 Apr 2009 08:54:22 +0000</pubDate>
		<guid isPermaLink="false">http://ginstrom.com/scribbles/?p=927#comment-1385</guid>
		<description>I just updated mailer to version 0.3. Please see the &lt;a href=&quot;/code/mailer.html&quot; rel=&quot;nofollow&quot;&gt;mailer home page&lt;/a&gt; for the latest version, documentation, and code samples.</description>
		<content:encoded><![CDATA[<p>I just updated mailer to version 0.3. Please see the <a href="/code/mailer.html">mailer home page</a> for the latest version, documentation, and code samples.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan Ginstrom</title>
		<link>http://ginstrom.com/scribbles/2009/03/29/version-02-of-mailer-module-released/comment-page-1/#comment-969</link>
		<dc:creator>Ryan Ginstrom</dc:creator>
		<pubDate>Tue, 21 Apr 2009 15:07:03 +0000</pubDate>
		<guid isPermaLink="false">http://ginstrom.com/scribbles/?p=927#comment-969</guid>
		<description>@MordicusEtCubitus

You&#039;re quite right. I did fix this on the module&#039;s &lt;a href=&quot;http://pypi.python.org/pypi/mailer/&quot; rel=&quot;nofollow&quot;&gt;pypi page&lt;/a&gt;, and I plan to fix the example in my next code update.</description>
		<content:encoded><![CDATA[<p>@MordicusEtCubitus</p>
<p>You&#8217;re quite right. I did fix this on the module&#8217;s <a href="http://pypi.python.org/pypi/mailer/">pypi page</a>, and I plan to fix the example in my next code update.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MordicusEtCubitus</title>
		<link>http://ginstrom.com/scribbles/2009/03/29/version-02-of-mailer-module-released/comment-page-1/#comment-960</link>
		<dc:creator>MordicusEtCubitus</dc:creator>
		<pubDate>Tue, 21 Apr 2009 13:28:13 +0000</pubDate>
		<guid isPermaLink="false">http://ginstrom.com/scribbles/?p=927#comment-960</guid>
		<description>I think the example should be rewrite has:

from mailer import Mailer
from mailer import Message

*server* = Mailer(&#039;smtp.example.com&#039;)

msg = Message(From=&quot;me@example.com&quot;, To=&quot;you@example.com&quot;)
msg.Subject = &quot;テキストメール&quot;
msg.Body = &quot;これは、日本語のキストメールでございます。&quot;
msg.charset = &quot;utf-8&quot;

server.send(msg)

Because when customizing the example, and write this:
new_msg = mailer.Message()
we&#039;ve got an error attribute because mailer variable override the mailer module</description>
		<content:encoded><![CDATA[<p>I think the example should be rewrite has:</p>
<p>from mailer import Mailer<br />
from mailer import Message</p>
<p>*server* = Mailer(&#8216;smtp.example.com&#8217;)</p>
<p>msg = Message(From=&#8221;me@example.com&#8221;, To=&#8221;you@example.com&#8221;)<br />
msg.Subject = &#8220;テキストメール&#8221;<br />
msg.Body = &#8220;これは、日本語のキストメールでございます。&#8221;<br />
msg.charset = &#8220;utf-8&#8243;</p>
<p>server.send(msg)</p>
<p>Because when customizing the example, and write this:<br />
new_msg = mailer.Message()<br />
we&#8217;ve got an error attribute because mailer variable override the mailer module</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan Ginstrom</title>
		<link>http://ginstrom.com/scribbles/2009/03/29/version-02-of-mailer-module-released/comment-page-1/#comment-721</link>
		<dc:creator>Ryan Ginstrom</dc:creator>
		<pubDate>Sun, 19 Apr 2009 00:06:08 +0000</pubDate>
		<guid isPermaLink="false">http://ginstrom.com/scribbles/?p=927#comment-721</guid>
		<description>@David

Good point. I think I&#039;ll change the API spec so that &quot;To&quot; can be a string or an iterable, and if it&#039;s a string, it&#039;s assumed to be one address.</description>
		<content:encoded><![CDATA[<p>@David</p>
<p>Good point. I think I&#8217;ll change the API spec so that &#8220;To&#8221; can be a string or an iterable, and if it&#8217;s a string, it&#8217;s assumed to be one address.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Goodger</title>
		<link>http://ginstrom.com/scribbles/2009/03/29/version-02-of-mailer-module-released/comment-page-1/#comment-686</link>
		<dc:creator>David Goodger</dc:creator>
		<pubDate>Sat, 18 Apr 2009 20:04:10 +0000</pubDate>
		<guid isPermaLink="false">http://ginstrom.com/scribbles/?p=927#comment-686</guid>
		<description>It seems to me that it&#039;s inherently fragile to keep the To-list (recipients) as a single string. What if I&#039;m sending a message to &#039;&quot;Sammy Davis, Jr.&quot; &#039;?  The quote-escaping is tricky (and probably already handled by the email package).

How about accepting a list of strings, and storing the list?</description>
		<content:encoded><![CDATA[<p>It seems to me that it&#8217;s inherently fragile to keep the To-list (recipients) as a single string. What if I&#8217;m sending a message to &#8216;&#8221;Sammy Davis, Jr.&#8221; &#8216;?  The quote-escaping is tricky (and probably already handled by the email package).</p>
<p>How about accepting a list of strings, and storing the list?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

