<?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: A Simple/Secure Email Class For PHPMailer</title>
	<atom:link href="http://labs.iamkoa.net/2007/11/27/a-simplesecure-email-class-for-phpmailer/feed/" rel="self" type="application/rss+xml" />
	<link>http://labs.iamkoa.net/2007/11/27/a-simplesecure-email-class-for-phpmailer/</link>
	<description>I break it. I fix it. You learn.</description>
	<lastBuildDate>Tue, 13 Jul 2010 11:10:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: koline</title>
		<link>http://labs.iamkoa.net/2007/11/27/a-simplesecure-email-class-for-phpmailer/comment-page-1/#comment-201</link>
		<dc:creator>koline</dc:creator>
		<pubDate>Fri, 01 Aug 2008 11:49:26 +0000</pubDate>
		<guid isPermaLink="false">http://labs.iamkoa.net/2007/11/27/a-simplesecure-email-class-for-phpmailer/#comment-201</guid>
		<description>thank i relly solv of problems.</description>
		<content:encoded><![CDATA[<p>thank i relly solv of problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Koa</title>
		<link>http://labs.iamkoa.net/2007/11/27/a-simplesecure-email-class-for-phpmailer/comment-page-1/#comment-191</link>
		<dc:creator>Koa</dc:creator>
		<pubDate>Sun, 27 Jul 2008 17:46:56 +0000</pubDate>
		<guid isPermaLink="false">http://labs.iamkoa.net/2007/11/27/a-simplesecure-email-class-for-phpmailer/#comment-191</guid>
		<description>&lt;strong&gt; Edster&lt;/strong&gt;, thanks a bunch for catching my error - I&#039;m glad the class is helpful!</description>
		<content:encoded><![CDATA[<p><strong> Edster</strong>, thanks a bunch for catching my error &#8211; I&#8217;m glad the class is helpful!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edster</title>
		<link>http://labs.iamkoa.net/2007/11/27/a-simplesecure-email-class-for-phpmailer/comment-page-1/#comment-190</link>
		<dc:creator>Edster</dc:creator>
		<pubDate>Sat, 26 Jul 2008 19:43:41 +0000</pubDate>
		<guid isPermaLink="false">http://labs.iamkoa.net/2007/11/27/a-simplesecure-email-class-for-phpmailer/#comment-190</guid>
		<description>I&#039;ve corrected the problem 
It seems there&#039;s a little mistake in the example you&#039;ve provided ;

I just changed the lines :
&lt;pre&gt;&lt;code&gt;
$mail-&gt;addEmail(&quot;Name&quot;,&quot;name@person.com&quot;);
$mail-&gt;addEmail(&quot;Name2&quot;,&quot;name2@person.com&quot;);
&lt;/code&gt;&lt;/pre&gt;
to :
&lt;pre&gt;&lt;code&gt;
$mail-&gt;addEmail(&quot;name@person.com&quot;, &quot;Name&quot;);
$mail-&gt;addEmail(&quot;name2@person.com&quot;, &quot;Name2&quot;);
&lt;/code&gt;&lt;/pre&gt;
And it worked like a charm.

Thanks again for this nice class. It really solves a lot of problems.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve corrected the problem<br />
It seems there&#8217;s a little mistake in the example you&#8217;ve provided ;</p>
<p>I just changed the lines :</p>
<pre><code>
$mail->addEmail("Name","name@person.com");
$mail->addEmail("Name2","name2@person.com");
</code></pre>
<p>to :</p>
<pre><code>
$mail->addEmail("name@person.com", "Name");
$mail->addEmail("name2@person.com", "Name2");
</code></pre>
<p>And it worked like a charm.</p>
<p>Thanks again for this nice class. It really solves a lot of problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edster</title>
		<link>http://labs.iamkoa.net/2007/11/27/a-simplesecure-email-class-for-phpmailer/comment-page-1/#comment-189</link>
		<dc:creator>Edster</dc:creator>
		<pubDate>Thu, 24 Jul 2008 22:50:03 +0000</pubDate>
		<guid isPermaLink="false">http://labs.iamkoa.net/2007/11/27/a-simplesecure-email-class-for-phpmailer/#comment-189</guid>
		<description>This seems to be awesome. But when I try to send something, WHATERVER what I put in &lt;code&gt;$mail-&gt;addEmail(&quot;Name&quot;,&quot;name@domain.com&quot;);&lt;/code&gt;, i&#039;m returned the following error :
&lt;pre&gt;&lt;code&gt;
Send to: name@domain.com  is not a valid email address.
&lt;/code&gt;&lt;/pre&gt;

The adresses are perfectly valid. So what can I do to correct this problem?

Thanks.</description>
		<content:encoded><![CDATA[<p>This seems to be awesome. But when I try to send something, WHATERVER what I put in <code>$mail->addEmail("Name","name@domain.com");</code>, i&#8217;m returned the following error :</p>
<pre><code>
Send to: <a href="mailto:name@domain.com">name@domain.com</a>  is not a valid email address.
</code></pre>
<p>The adresses are perfectly valid. So what can I do to correct this problem?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Des</title>
		<link>http://labs.iamkoa.net/2007/11/27/a-simplesecure-email-class-for-phpmailer/comment-page-1/#comment-139</link>
		<dc:creator>Des</dc:creator>
		<pubDate>Mon, 21 Apr 2008 23:10:39 +0000</pubDate>
		<guid isPermaLink="false">http://labs.iamkoa.net/2007/11/27/a-simplesecure-email-class-for-phpmailer/#comment-139</guid>
		<description>Awesome, I just googled for an easy way to implement PHPmailer and you have solved my problems!!!

Thanks V.Much!!</description>
		<content:encoded><![CDATA[<p>Awesome, I just googled for an easy way to implement PHPmailer and you have solved my problems!!!</p>
<p>Thanks V.Much!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Updates &#38; Checkboxes &#38; Loadbars! Oh My! - Labs</title>
		<link>http://labs.iamkoa.net/2007/11/27/a-simplesecure-email-class-for-phpmailer/comment-page-1/#comment-53</link>
		<dc:creator>Updates &#38; Checkboxes &#38; Loadbars! Oh My! - Labs</dc:creator>
		<pubDate>Fri, 21 Dec 2007 19:22:07 +0000</pubDate>
		<guid isPermaLink="false">http://labs.iamkoa.net/2007/11/27/a-simplesecure-email-class-for-phpmailer/#comment-53</guid>
		<description>[...] all-too-awesome PHPMailer class has been updated and is awaiting your [...]</description>
		<content:encoded><![CDATA[<p>[...] all-too-awesome PHPMailer class has been updated and is awaiting your [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
