<?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: Email pipe tutorial. Setting up Email piping.</title>
	<atom:link href="http://www.webmasters-central.com/article-blog/tutorials/email-pipe-tutorial-setting-up-email-piping/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webmasters-central.com/article-blog/tutorials/email-pipe-tutorial-setting-up-email-piping/</link>
	<description>Blog Dedicated To Internet Marketing!</description>
	<lastBuildDate>Tue, 20 Dec 2011 07:33:58 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Craig</title>
		<link>http://www.webmasters-central.com/article-blog/tutorials/email-pipe-tutorial-setting-up-email-piping/comment-page-1/#comment-4342</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Sun, 03 Oct 2010 05:08:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.webmasters-central.com/article-blog/?p=412#comment-4342</guid>
		<description>Hi, Thanks for the good article. Very helpful...
There are a few good free/cheap services that will pipe email to a remote script as well.  I would recommend checking out:

Free services, basic key value pair POST to your remote script
http://www.mailhooks.com
http://smtp2web.com

Paid service, multiple formats for POSTing the MIME parts
http://www.mailnuggets.com</description>
		<content:encoded><![CDATA[<p>Hi, Thanks for the good article. Very helpful&#8230;<br />
There are a few good free/cheap services that will pipe email to a remote script as well.  I would recommend checking out:</p>
<p>Free services, basic key value pair POST to your remote script<br />
<a href="http://www.mailhooks.com" rel="nofollow">http://www.mailhooks.com</a><br />
<a href="http://smtp2web.com" rel="nofollow">http://smtp2web.com</a></p>
<p>Paid service, multiple formats for POSTing the MIME parts<br />
<a href="http://www.mailnuggets.com" rel="nofollow">http://www.mailnuggets.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Sebasta</title>
		<link>http://www.webmasters-central.com/article-blog/tutorials/email-pipe-tutorial-setting-up-email-piping/comment-page-1/#comment-4274</link>
		<dc:creator>Eric Sebasta</dc:creator>
		<pubDate>Sun, 10 Jan 2010 04:08:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.webmasters-central.com/article-blog/?p=412#comment-4274</guid>
		<description>Great article, but remember that for php it should be -q to suppress notices and the like fumbling up stdin and stdout . This is in the pipe and the shebang

#/usr/bin/php -q
&lt;?php
// start output buffering
ob_start();
// read from stdin
$fd = fopen(&quot;php://stdin&quot;, &quot;r&quot;);
$email = &quot;&quot;;
while (!feof($fd)) {
$email .= fread($fd, 1024);
}
fclose($fd);

// handle email
$lines = explode(&quot;\n&quot;, $email);

// empty vars
$from = &quot;&quot;;
$subject = &quot;&quot;;
$headers = &quot;&quot;;
$message = &quot;&quot;;
$splittingheaders = true;

for ($i=0; $i

From this you could read $lines and track keywords, emails and anything else your little heart wanted.</description>
		<content:encoded><![CDATA[<p>Great article, but remember that for php it should be -q to suppress notices and the like fumbling up stdin and stdout . This is in the pipe and the shebang</p>
<p>#/usr/bin/php -q<br />
&lt;?php<br />
// start output buffering<br />
ob_start();<br />
// read from stdin<br />
$fd = fopen(&quot;php://stdin&quot;, &quot;r&quot;);<br />
$email = &quot;&quot;;<br />
while (!feof($fd)) {<br />
$email .= fread($fd, 1024);<br />
}<br />
fclose($fd);</p>
<p>// handle email<br />
$lines = explode(&quot;\n&quot;, $email);</p>
<p>// empty vars<br />
$from = &quot;&quot;;<br />
$subject = &quot;&quot;;<br />
$headers = &quot;&quot;;<br />
$message = &quot;&quot;;<br />
$splittingheaders = true;</p>
<p>for ($i=0; $i</p>
<p>From this you could read $lines and track keywords, emails and anything else your little heart wanted.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

