<?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>评论：修改 mail to commenter,让邮件通知更加友好</title>
	<atom:link href="http://xfuxing.com/2009/modify-the-mail-to-commenter-so-that-more-user-friendly-e-mail-notification.html/feed" rel="self" type="application/rss+xml" />
	<link>http://xfuxing.com/2009/modify-the-mail-to-commenter-so-that-more-user-friendly-e-mail-notification.html</link>
	<description>越简单越幸福</description>
	<lastBuildDate>Sat, 21 Jan 2012 00:19:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>来自：232</title>
		<link>http://xfuxing.com/2009/modify-the-mail-to-commenter-so-that-more-user-friendly-e-mail-notification.html/comment-page-2#comment-355</link>
		<dc:creator>232</dc:creator>
		<pubDate>Tue, 19 Jul 2011 16:17:58 +0000</pubDate>
		<guid isPermaLink="false">http://xfuxing.com/2009/%e4%bf%ae%e6%94%b9-mail-to-commenter%e8%ae%a9%e9%82%ae%e4%bb%b6%e9%80%9a%e7%9f%a5%e6%9b%b4%e5%8a%a0%e5%8f%8b%e5%a5%bd.html#comment-355</guid>
		<description>&lt;a href=&quot;#comment-223&quot; rel=&quot;nofollow&quot;&gt;@JasonChao &lt;/a&gt; 反复</description>
		<content:encoded><![CDATA[<p><a href="#comment-223" rel="nofollow">@JasonChao </a> 反复</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：232</title>
		<link>http://xfuxing.com/2009/modify-the-mail-to-commenter-so-that-more-user-friendly-e-mail-notification.html/comment-page-2#comment-354</link>
		<dc:creator>232</dc:creator>
		<pubDate>Tue, 19 Jul 2011 16:16:56 +0000</pubDate>
		<guid isPermaLink="false">http://xfuxing.com/2009/%e4%bf%ae%e6%94%b9-mail-to-commenter%e8%ae%a9%e9%82%ae%e4%bb%b6%e9%80%9a%e7%9f%a5%e6%9b%b4%e5%8a%a0%e5%8f%8b%e5%a5%bd.html#comment-354</guid>
		<description>&lt;a href=&quot;#comment-294&quot; rel=&quot;nofollow&quot;&gt;@德海 &lt;/a&gt; 00</description>
		<content:encoded><![CDATA[<p><a href="#comment-294" rel="nofollow">@德海 </a> 00</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：关于WordPress插件Mail To Commenter使用的几个问题 &#124; 吊链博客</title>
		<link>http://xfuxing.com/2009/modify-the-mail-to-commenter-so-that-more-user-friendly-e-mail-notification.html/comment-page-2#comment-353</link>
		<dc:creator>关于WordPress插件Mail To Commenter使用的几个问题 &#124; 吊链博客</dc:creator>
		<pubDate>Sun, 17 Apr 2011 02:35:11 +0000</pubDate>
		<guid isPermaLink="false">http://xfuxing.com/2009/%e4%bf%ae%e6%94%b9-mail-to-commenter%e8%ae%a9%e9%82%ae%e4%bb%b6%e9%80%9a%e7%9f%a5%e6%9b%b4%e5%8a%a0%e5%8f%8b%e5%a5%bd.html#comment-353</guid>
		<description>[...] 上面的代码也可以这样写（来自：Simple happiness）： function mailtocommenter_send_email($to,$subject,$message){ &#160;&#160;&#160;&#160;&#160;&#160;&#160; $blogname = get_option(&#8216;blogname&#8217;); &#160;&#160;&#160;&#160;&#160;&#160;&#160; $hostname = get_option(&#8216;home&#8217;);&#160;&#160;&#160; //get blog url &#160;&#160;&#160;&#160;&#160;&#160;&#160; preg_match(&quot;/^(http://)?([^/]+)/i&quot;,$hostname, $matches); &#160;&#160;&#160;&#160;&#160;&#160;&#160; $blogname = get_option(&#8216;blogname&#8217;); &#160;&#160;&#160;&#160;&#160;&#160;&#160; $blogname .= &quot; &lt;no-reply@&quot;;&#160;&#160;&#160; //blogname+&lt;no-reply@ &#160;&#160;&#160;&#160;&#160;&#160;&#160; $blogname .= $matches[2];&#160;&#160;&#160; //blogname+&lt;no-reply@+hostname &#160;&#160;&#160;&#160;&#160;&#160;&#160; $blogname .= &quot;&gt;&quot;;&#160;&#160;&#160; //blogname&lt;no-reply@hostname&gt; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; $charset = get_option(&#8216;blog_charset&#8217;); &#160;&#160;&#160;&#160;&#160;&#160;&#160; $headers&#160; = &quot;From: $blogname n&quot; ; &#160;&#160;&#160;&#160;&#160;&#160;&#160; $headers .= &quot;MIME-Version: 1.0n&quot;; &#160;&#160;&#160;&#160;&#160;&#160;&#160; $headers .= &quot;Content-Type: text/html;charset=&quot;$charset&quot;n&quot;; &#160;&#160;&#160;&#160;&#160;&#160;&#160; $to = strtolower($to); &#160;&#160;&#160;&#160;&#160;&#160;&#160; return @wp_mail($to, $subject, $message, $headers); } [...]</description>
		<content:encoded><![CDATA[<p>[...] 上面的代码也可以这样写（来自：Simple happiness）： function mailtocommenter_send_email($to,$subject,$message){ &#160;&#160;&#160;&#160;&#160;&#160;&#160; $blogname = get_option(&#8216;blogname&#8217;); &#160;&#160;&#160;&#160;&#160;&#160;&#160; $hostname = get_option(&#8216;home&#8217;);&#160;&#160;&#160; //get blog url &#160;&#160;&#160;&#160;&#160;&#160;&#160; preg_match(&quot;/^(http://)?([^/]+)/i&quot;,$hostname, $matches); &#160;&#160;&#160;&#160;&#160;&#160;&#160; $blogname = get_option(&#8216;blogname&#8217;); &#160;&#160;&#160;&#160;&#160;&#160;&#160; $blogname .= &quot; &lt;no-reply@&quot;;&#160;&#160;&#160; //blogname+&lt;no-reply@ &#160;&#160;&#160;&#160;&#160;&#160;&#160; $blogname .= $matches[2];&#160;&#160;&#160; //blogname+&lt;no-reply@+hostname &#160;&#160;&#160;&#160;&#160;&#160;&#160; $blogname .= &quot;&gt;&quot;;&#160;&#160;&#160; //blogname&lt;no-reply@hostname&gt; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; $charset = get_option(&#8216;blog_charset&#8217;); &#160;&#160;&#160;&#160;&#160;&#160;&#160; $headers&#160; = &quot;From: $blogname n&quot; ; &#160;&#160;&#160;&#160;&#160;&#160;&#160; $headers .= &quot;MIME-Version: 1.0n&quot;; &#160;&#160;&#160;&#160;&#160;&#160;&#160; $headers .= &quot;Content-Type: text/html;charset=&quot;$charset&quot;n&quot;; &#160;&#160;&#160;&#160;&#160;&#160;&#160; $to = strtolower($to); &#160;&#160;&#160;&#160;&#160;&#160;&#160; return @wp_mail($to, $subject, $message, $headers); } [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：关于WordPress插件Mail To Commenter使用的几个问题 &#124; 乾坤 Blog</title>
		<link>http://xfuxing.com/2009/modify-the-mail-to-commenter-so-that-more-user-friendly-e-mail-notification.html/comment-page-2#comment-352</link>
		<dc:creator>关于WordPress插件Mail To Commenter使用的几个问题 &#124; 乾坤 Blog</dc:creator>
		<pubDate>Tue, 29 Mar 2011 14:36:08 +0000</pubDate>
		<guid isPermaLink="false">http://xfuxing.com/2009/%e4%bf%ae%e6%94%b9-mail-to-commenter%e8%ae%a9%e9%82%ae%e4%bb%b6%e9%80%9a%e7%9f%a5%e6%9b%b4%e5%8a%a0%e5%8f%8b%e5%a5%bd.html#comment-352</guid>
		<description>[...] 上面的代码也可以这样写（来自：Simple happiness）： function mailtocommenter_send_email($to,$subject,$message){ &#160;&#160;&#160;&#160;&#160;&#160;&#160; $blogname = get_option(&#039;blogname&#039;); &#160;&#160;&#160;&#160;&#160;&#160;&#160; $hostname = get_option(&#039;home&#039;);&#160;&#160;&#160; //get blog url &#160;&#160;&#160;&#160;&#160;&#160;&#160; preg_match(&quot;/^(http://)?([^/]+)/i&quot;,$hostname, $matches); &#160;&#160;&#160;&#160;&#160;&#160;&#160; $blogname = get_option(&#039;blogname&#039;); &#160;&#160;&#160;&#160;&#160;&#160;&#160; $blogname .= &quot; &lt;no-reply@&quot;;&#160;&#160;&#160; //blogname+&lt;no-reply@ &#160;&#160;&#160;&#160;&#160;&#160;&#160; $blogname .= $matches[2];&#160;&#160;&#160; //blogname+&lt;no-reply@+hostname &#160;&#160;&#160;&#160;&#160;&#160;&#160; $blogname .= &quot;&gt;&quot;;&#160;&#160;&#160; //blogname&lt;no-reply@hostname&gt; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; $charset = get_option(&#039;blog_charset&#039;); &#160;&#160;&#160;&#160;&#160;&#160;&#160; $headers&#160; = &quot;From: $blogname n&quot; ; &#160;&#160;&#160;&#160;&#160;&#160;&#160; $headers .= &quot;MIME-Version: 1.0n&quot;; &#160;&#160;&#160;&#160;&#160;&#160;&#160; $headers .= &quot;Content-Type: text/html;charset=&quot;$charset&quot;n&quot;; &#160;&#160;&#160;&#160;&#160;&#160;&#160; $to = strtolower($to); &#160;&#160;&#160;&#160;&#160;&#160;&#160; return @wp_mail($to, $subject, $message, $headers); } [...]</description>
		<content:encoded><![CDATA[<p>[...] 上面的代码也可以这样写（来自：Simple happiness）： function mailtocommenter_send_email($to,$subject,$message){ &#160;&#160;&#160;&#160;&#160;&#160;&#160; $blogname = get_option(&#39;blogname&#39;); &#160;&#160;&#160;&#160;&#160;&#160;&#160; $hostname = get_option(&#39;home&#39;);&#160;&#160;&#160; //get blog url &#160;&#160;&#160;&#160;&#160;&#160;&#160; preg_match(&quot;/^(http://)?([^/]+)/i&quot;,$hostname, $matches); &#160;&#160;&#160;&#160;&#160;&#160;&#160; $blogname = get_option(&#39;blogname&#39;); &#160;&#160;&#160;&#160;&#160;&#160;&#160; $blogname .= &quot; &lt;no-reply@&quot;;&#160;&#160;&#160; //blogname+&lt;no-reply@ &#160;&#160;&#160;&#160;&#160;&#160;&#160; $blogname .= $matches[2];&#160;&#160;&#160; //blogname+&lt;no-reply@+hostname &#160;&#160;&#160;&#160;&#160;&#160;&#160; $blogname .= &quot;&gt;&quot;;&#160;&#160;&#160; //blogname&lt;no-reply@hostname&gt; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; $charset = get_option(&#39;blog_charset&#39;); &#160;&#160;&#160;&#160;&#160;&#160;&#160; $headers&#160; = &quot;From: $blogname n&quot; ; &#160;&#160;&#160;&#160;&#160;&#160;&#160; $headers .= &quot;MIME-Version: 1.0n&quot;; &#160;&#160;&#160;&#160;&#160;&#160;&#160; $headers .= &quot;Content-Type: text/html;charset=&quot;$charset&quot;n&quot;; &#160;&#160;&#160;&#160;&#160;&#160;&#160; $to = strtolower($to); &#160;&#160;&#160;&#160;&#160;&#160;&#160; return @wp_mail($to, $subject, $message, $headers); } [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：starch521</title>
		<link>http://xfuxing.com/2009/modify-the-mail-to-commenter-so-that-more-user-friendly-e-mail-notification.html/comment-page-2#comment-335</link>
		<dc:creator>starch521</dc:creator>
		<pubDate>Sat, 11 Sep 2010 09:08:28 +0000</pubDate>
		<guid isPermaLink="false">http://xfuxing.com/2009/%e4%bf%ae%e6%94%b9-mail-to-commenter%e8%ae%a9%e9%82%ae%e4%bb%b6%e9%80%9a%e7%9f%a5%e6%9b%b4%e5%8a%a0%e5%8f%8b%e5%a5%bd.html#comment-335</guid>
		<description>好啊，博主
我是eddda.tk的博主，谢谢你介绍我的文章。</description>
		<content:encoded><![CDATA[<p>好啊，博主<br />
我是eddda.tk的博主，谢谢你介绍我的文章。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：德海</title>
		<link>http://xfuxing.com/2009/modify-the-mail-to-commenter-so-that-more-user-friendly-e-mail-notification.html/comment-page-2#comment-325</link>
		<dc:creator>德海</dc:creator>
		<pubDate>Thu, 26 Aug 2010 02:10:48 +0000</pubDate>
		<guid isPermaLink="false">http://xfuxing.com/2009/%e4%bf%ae%e6%94%b9-mail-to-commenter%e8%ae%a9%e9%82%ae%e4%bb%b6%e9%80%9a%e7%9f%a5%e6%9b%b4%e5%8a%a0%e5%8f%8b%e5%a5%bd.html#comment-325</guid>
		<description>&lt;a href=&quot;#comment-322&quot; rel=&quot;nofollow&quot;&gt;@fly2lan  &lt;/a&gt; 
如果测试时都没有收到邮件有几种可能，一种是博的服务器所在的支持，再有就是测试的邮箱拒收（比如163什么的邮箱经常拒收一些邮件），还有就是进了邮件垃圾箱，再有才可能是插件有点什么问题。
可以参看这兄弟的文章测试解决一下。
http://eddda.tk/skill/mailtocommenter.html</description>
		<content:encoded><![CDATA[<p><a href="#comment-322" rel="nofollow">@fly2lan  </a><br />
如果测试时都没有收到邮件有几种可能，一种是博的服务器所在的支持，再有就是测试的邮箱拒收（比如163什么的邮箱经常拒收一些邮件），还有就是进了邮件垃圾箱，再有才可能是插件有点什么问题。<br />
可以参看这兄弟的文章测试解决一下。<br />
<a href="http://eddda.tk/skill/mailtocommenter.html" rel="nofollow">http://eddda.tk/skill/mailtocommenter.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：fly2lan</title>
		<link>http://xfuxing.com/2009/modify-the-mail-to-commenter-so-that-more-user-friendly-e-mail-notification.html/comment-page-2#comment-322</link>
		<dc:creator>fly2lan</dc:creator>
		<pubDate>Sun, 15 Aug 2010 07:33:56 +0000</pubDate>
		<guid isPermaLink="false">http://xfuxing.com/2009/%e4%bf%ae%e6%94%b9-mail-to-commenter%e8%ae%a9%e9%82%ae%e4%bb%b6%e9%80%9a%e7%9f%a5%e6%9b%b4%e5%8a%a0%e5%8f%8b%e5%a5%bd.html#comment-322</guid>
		<description>收不到邮件是怎么回事？我在mail to commente这个插件设置页面上测试发送邮件，一直都没能收到邮件，不知有什么办法可以解决。</description>
		<content:encoded><![CDATA[<p>收不到邮件是怎么回事？我在mail to commente这个插件设置页面上测试发送邮件，一直都没能收到邮件，不知有什么办法可以解决。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：小杰博客</title>
		<link>http://xfuxing.com/2009/modify-the-mail-to-commenter-so-that-more-user-friendly-e-mail-notification.html/comment-page-2#comment-319</link>
		<dc:creator>小杰博客</dc:creator>
		<pubDate>Tue, 10 Aug 2010 01:29:29 +0000</pubDate>
		<guid isPermaLink="false">http://xfuxing.com/2009/%e4%bf%ae%e6%94%b9-mail-to-commenter%e8%ae%a9%e9%82%ae%e4%bb%b6%e9%80%9a%e7%9f%a5%e6%9b%b4%e5%8a%a0%e5%8f%8b%e5%a5%bd.html#comment-319</guid>
		<description>试试这个插件如何</description>
		<content:encoded><![CDATA[<p>试试这个插件如何</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：德海</title>
		<link>http://xfuxing.com/2009/modify-the-mail-to-commenter-so-that-more-user-friendly-e-mail-notification.html/comment-page-2#comment-294</link>
		<dc:creator>德海</dc:creator>
		<pubDate>Wed, 03 Feb 2010 07:07:48 +0000</pubDate>
		<guid isPermaLink="false">http://xfuxing.com/2009/%e4%bf%ae%e6%94%b9-mail-to-commenter%e8%ae%a9%e9%82%ae%e4%bb%b6%e9%80%9a%e7%9f%a5%e6%9b%b4%e5%8a%a0%e5%8f%8b%e5%a5%bd.html#comment-294</guid>
		<description>&lt;a href=&quot;#comment-289&quot; rel=&quot;nofollow&quot;&gt;@待续. &lt;/a&gt; 
我好久没顾上小博了，不知您是如何改的，是否存盘的时候没有选择无BOM的UTF-8编码。如有需要，可以GTALK我。</description>
		<content:encoded><![CDATA[<p><a href="#comment-289" rel="nofollow">@待续. </a><br />
我好久没顾上小博了，不知您是如何改的，是否存盘的时候没有选择无BOM的UTF-8编码。如有需要，可以GTALK我。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：Mail To Commenter的未知发件人问题 &#124; Derek&#39;s Blog</title>
		<link>http://xfuxing.com/2009/modify-the-mail-to-commenter-so-that-more-user-friendly-e-mail-notification.html/comment-page-2#comment-292</link>
		<dc:creator>Mail To Commenter的未知发件人问题 &#124; Derek&#39;s Blog</dc:creator>
		<pubDate>Sat, 30 Jan 2010 03:31:08 +0000</pubDate>
		<guid isPermaLink="false">http://xfuxing.com/2009/%e4%bf%ae%e6%94%b9-mail-to-commenter%e8%ae%a9%e9%82%ae%e4%bb%b6%e9%80%9a%e7%9f%a5%e6%9b%b4%e5%8a%a0%e5%8f%8b%e5%a5%bd.html#comment-292</guid>
		<description>[...] 修改 mail to commenter,让邮件通知更加友好 &#124;  Simple happiness [...]</description>
		<content:encoded><![CDATA[<p>[...] 修改 mail to commenter,让邮件通知更加友好 |  Simple happiness [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

