<?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: PHPMailer tutorial</title>
	<atom:link href="http://www.askapache.com/php/phpfreaks-eric-rosebrocks-phpmailer-tutorial.html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.askapache.com/php/phpfreaks-eric-rosebrocks-phpmailer-tutorial.html</link>
	<description>Advanced Web Development</description>
	<lastBuildDate>Thu, 02 Jul 2009 05:41:11 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9-rare</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Armitag3</title>
		<link>http://www.askapache.com/php/phpfreaks-eric-rosebrocks-phpmailer-tutorial.html#comment-82335</link>
		<dc:creator>Armitag3</dc:creator>
		<pubDate>Thu, 18 Jun 2009 07:54:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/php/phpfreaks-eric-rosebrocks-phpmailer-tutorial.html#comment-82335</guid>
		<description>Thx for the tutorial helped me a lot.
Just a quick question, is there a way with phpMailer to capture the email in a SQL db.

I have a feedback/Q&amp;A form and want to capture the feedback mails people send me in a SQL so that i can make a page where people can see what the progress is on the feedback/Q&amp;A.

Thx for any help in advance.
Armitag3</description>
		<content:encoded><![CDATA[<p>Thx for the tutorial helped me a lot.<br />
Just a quick question, is there a way with phpMailer to capture the email in a SQL db.</p>
<p>I have a feedback/Q&#038;A form and want to capture the feedback mails people send me in a SQL so that i can make a page where people can see what the progress is on the feedback/Q&#038;A.</p>
<p>Thx for any help in advance.<br />
Armitag3</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamachi</title>
		<link>http://www.askapache.com/php/phpfreaks-eric-rosebrocks-phpmailer-tutorial.html#comment-80453</link>
		<dc:creator>Jamachi</dc:creator>
		<pubDate>Wed, 10 Jun 2009 21:43:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/php/phpfreaks-eric-rosebrocks-phpmailer-tutorial.html#comment-80453</guid>
		<description>Great tutorial, I only have one question, if I write one email address in the TO and i write 50 email address in BBC part, how many emails the server count that I have sent? 1? or 51 ?

Other question:
Is necessary this part =&gt;  &#039;First Person&#039; ?
&lt;code&gt;$mailer-&gt;AddAddress(&#039;recipient1@domain.com&#039;, &#039;First Person&#039;);&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Great tutorial, I only have one question, if I write one email address in the TO and i write 50 email address in BBC part, how many emails the server count that I have sent? 1? or 51 ?</p>
<p>Other question:<br />
Is necessary this part =>  &#8216;First Person&#8217; ?<br />
<code>$mailer-&gt;AddAddress(&#039;recipient1@domain.com&#039;, &#039;First Person&#039;);</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Json</title>
		<link>http://www.askapache.com/php/phpfreaks-eric-rosebrocks-phpmailer-tutorial.html#comment-69095</link>
		<dc:creator>Json</dc:creator>
		<pubDate>Wed, 18 Mar 2009 13:29:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/php/phpfreaks-eric-rosebrocks-phpmailer-tutorial.html#comment-69095</guid>
		<description>Try turning off error reporting...

&lt;pre&gt;// Turn off all error reporting
error_reporting(0);
&#160;
// Report simple running errors
error_reporting(E_ERROR &#124; E_WARNING &#124; E_PARSE);
&#160;
// Reporting E_NOTICE can be good too (to report uninitialized
// variables or catch variable name misspellings &#46;..)
error_reporting(E_ERROR &#124; E_WARNING &#124; E_PARSE &#124; E_NOTICE);
&#160;
// Report all errors except E_NOTICE
// This is the default value set in php.ini
error_reporting(E_ALL ^ E_NOTICE);
&#160;
// Report all PHP errors
error_reporting(E_ALL);
&#160;
// Same as error_reporting(E_ALL);
ini_set(&#039;error_reporting&#039;, E_ALL);&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Try turning off error reporting&#8230;</p>
<pre>// Turn off all error reporting
error_reporting(0);
&nbsp;
// Report simple running errors
error_reporting(E_ERROR | E_WARNING | E_PARSE);
&nbsp;
// Reporting E_NOTICE can be good too (to report uninitialized
// variables or catch variable name misspellings &#46;..)
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
&nbsp;
// Report all errors except E_NOTICE
// This is the default value set in php.ini
error_reporting(E_ALL ^ E_NOTICE);
&nbsp;
// Report all PHP errors
error_reporting(E_ALL);
&nbsp;
// Same as error_reporting(E_ALL);
ini_set(&#039;error_reporting&#039;, E_ALL);</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Json</title>
		<link>http://www.askapache.com/php/phpfreaks-eric-rosebrocks-phpmailer-tutorial.html#comment-69094</link>
		<dc:creator>Json</dc:creator>
		<pubDate>Wed, 18 Mar 2009 13:27:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/php/phpfreaks-eric-rosebrocks-phpmailer-tutorial.html#comment-69094</guid>
		<description>&lt;strong&gt;@Zendrej&lt;/strong&gt;: 
Depends on the phpMailer version(try upgrade), maybe try the script using a different server.

Cheers</description>
		<content:encoded><![CDATA[<p><strong>@Zendrej</strong>:<br />
Depends on the phpMailer version(try upgrade), maybe try the script using a different server.</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zendrej</title>
		<link>http://www.askapache.com/php/phpfreaks-eric-rosebrocks-phpmailer-tutorial.html#comment-69093</link>
		<dc:creator>Zendrej</dc:creator>
		<pubDate>Wed, 18 Mar 2009 13:15:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/php/phpfreaks-eric-rosebrocks-phpmailer-tutorial.html#comment-69093</guid>
		<description>Hi,

I have used phpMailer in many applications of mine.

Sometimes i get an error

Warning: fsockopen() [function.fsockopen]: unable to connect to :25 (A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. ) 

I am not sure how it happens. Now in the running project also i used phpMailer, this time the above warning is always there. 

If you have any idea on this please share.

Thanks
rej</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have used phpMailer in many applications of mine.</p>
<p>Sometimes i get an error</p>
<p>Warning: fsockopen() [function.fsockopen]: unable to connect to :25 (A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. ) </p>
<p>I am not sure how it happens. Now in the running project also i used phpMailer, this time the above warning is always there. </p>
<p>If you have any idea on this please share.</p>
<p>Thanks<br />
rej</p>
]]></content:encoded>
	</item>
</channel>
</rss>
