<?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: PHP Mail Class</title>
	<atom:link href="http://www.zacharyfox.com/blog/php/simple-mail-class/feed" rel="self" type="application/rss+xml" />
	<link>http://www.zacharyfox.com/blog/php/simple-mail-class</link>
	<description></description>
	<lastBuildDate>Fri, 09 Jul 2010 16:22:10 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Caine rain</title>
		<link>http://www.zacharyfox.com/blog/php/simple-mail-class/comment-page-1#comment-8604</link>
		<dc:creator>Caine rain</dc:creator>
		<pubDate>Thu, 11 Jun 2009 03:57:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.zacharyfox.com/blog/php/simple-mail-class#comment-8604</guid>
		<description>I really wanted to set something up like this for quite some time now!
Thanks a ton!</description>
		<content:encoded><![CDATA[<p>I really wanted to set something up like this for quite some time now!<br />
Thanks a ton!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: followme</title>
		<link>http://www.zacharyfox.com/blog/php/simple-mail-class/comment-page-1#comment-6763</link>
		<dc:creator>followme</dc:creator>
		<pubDate>Thu, 19 Mar 2009 16:39:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.zacharyfox.com/blog/php/simple-mail-class#comment-6763</guid>
		<description>i like you. get dofollow and i subscribe :D</description>
		<content:encoded><![CDATA[<p>i like you. get dofollow and i subscribe <img src='http://www.zacharyfox.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ravi</title>
		<link>http://www.zacharyfox.com/blog/php/simple-mail-class/comment-page-1#comment-5585</link>
		<dc:creator>ravi</dc:creator>
		<pubDate>Sat, 24 Jan 2009 11:01:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.zacharyfox.com/blog/php/simple-mail-class#comment-5585</guid>
		<description>nice blog dude</description>
		<content:encoded><![CDATA[<p>nice blog dude</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Melen</title>
		<link>http://www.zacharyfox.com/blog/php/simple-mail-class/comment-page-1#comment-5580</link>
		<dc:creator>Michael Melen</dc:creator>
		<pubDate>Fri, 23 Jan 2009 23:07:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.zacharyfox.com/blog/php/simple-mail-class#comment-5580</guid>
		<description>I really enjoyed this post (not that I didn&#039;t enjoy the others as well ;) )- nice work man.</description>
		<content:encoded><![CDATA[<p>I really enjoyed this post (not that I didn&#8217;t enjoy the others as well <img src='http://www.zacharyfox.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  )- nice work man.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zachary Fox</title>
		<link>http://www.zacharyfox.com/blog/php/simple-mail-class/comment-page-1#comment-396</link>
		<dc:creator>Zachary Fox</dc:creator>
		<pubDate>Thu, 13 Mar 2008 16:54:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.zacharyfox.com/blog/php/simple-mail-class#comment-396</guid>
		<description>@Nick

Yes, for this example. This is a new post on my blog, but it&#039;s actually a very old page on my site that was just moved into wordpress. I always meant to update it to show how using objects can help when you&#039;re performing more complex operations.

Even if it&#039;s simply a matter of changing your mail transport, it would be easier to update the class than changing multiple places in the code.

Perhaps I&#039;ll flesh this out further one day, but I&#039;m working on some more interesting posts right now.</description>
		<content:encoded><![CDATA[<p>@Nick</p>
<p>Yes, for this example. This is a new post on my blog, but it&#8217;s actually a very old page on my site that was just moved into wordpress. I always meant to update it to show how using objects can help when you&#8217;re performing more complex operations.</p>
<p>Even if it&#8217;s simply a matter of changing your mail transport, it would be easier to update the class than changing multiple places in the code.</p>
<p>Perhaps I&#8217;ll flesh this out further one day, but I&#8217;m working on some more interesting posts right now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick T</title>
		<link>http://www.zacharyfox.com/blog/php/simple-mail-class/comment-page-1#comment-389</link>
		<dc:creator>Nick T</dc:creator>
		<pubDate>Wed, 12 Mar 2008 23:17:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.zacharyfox.com/blog/php/simple-mail-class#comment-389</guid>
		<description>Frogot could post php code. Oops :S

$to      = &#039;me@thissite.co.uk&#039;;
$subject = &#039;My Subject&#039;;
$message = &#039;Hi, this is my mail message!&#039;;
$headers = &#039;From: donotreply@thissite.co.uk&#039; . &quot;\r\n&quot; .
    &#039;Reply-To: donotreply@thissite.co.uk&#039; . &quot;\r\n&quot; .
    &#039;X-Mailer: PHP/&#039; . phpversion();

mail($to, $subject, $message, $headers);

N</description>
		<content:encoded><![CDATA[<p>Frogot could post php code. Oops :S</p>
<p>$to      = &#8216;me@thissite.co.uk&#8217;;<br />
$subject = &#8216;My Subject&#8217;;<br />
$message = &#8216;Hi, this is my mail message!&#8217;;<br />
$headers = &#8216;From: <a href="mailto:donotreply@thissite.co.uk">donotreply@thissite.co.uk</a>&#8216; . &#8220;\r\n&#8221; .<br />
    &#8216;Reply-To: <a href="mailto:donotreply@thissite.co.uk">donotreply@thissite.co.uk</a>&#8216; . &#8220;\r\n&#8221; .<br />
    &#8216;X-Mailer: PHP/&#8217; . phpversion();</p>
<p>mail($to, $subject, $message, $headers);</p>
<p>N</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick T</title>
		<link>http://www.zacharyfox.com/blog/php/simple-mail-class/comment-page-1#comment-388</link>
		<dc:creator>Nick T</dc:creator>
		<pubDate>Wed, 12 Mar 2008 23:14:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.zacharyfox.com/blog/php/simple-mail-class#comment-388</guid>
		<description>Not to put you down or anything, but wouldnt it just be quicker to :



N</description>
		<content:encoded><![CDATA[<p>Not to put you down or anything, but wouldnt it just be quicker to :</p>
<p>N</p>
]]></content:encoded>
	</item>
</channel>
</rss>
