<?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: Send Mail with Zend Framework</title>
	<atom:link href="/2010/03/25/send-mail-with-zend-framework/feed/" rel="self" type="application/rss+xml" />
	<link>/2010/03/25/send-mail-with-zend-framework/</link>
	<description>on web development</description>
	<lastBuildDate>Fri, 26 Oct 2018 21:40:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.0.3</generator>
	<item>
		<title>By: Edy</title>
		<link>/2010/03/25/send-mail-with-zend-framework/comment-page-1/#comment-16560</link>
		<dc:creator><![CDATA[Edy]]></dc:creator>
		<pubDate>Mon, 10 Sep 2012 13:16:18 +0000</pubDate>
		<guid isPermaLink="false">/?p=1389#comment-16560</guid>
		<description><![CDATA[The first piece of code actually worked for me, but to be fair, I had my postfix configured to use an external SMTP provider, so if configured well, it will work :)]]></description>
		<content:encoded><![CDATA[<p>The first piece of code actually worked for me, but to be fair, I had my postfix configured to use an external SMTP provider, so if configured well, it will work 🙂</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arya</title>
		<link>/2010/03/25/send-mail-with-zend-framework/comment-page-1/#comment-15219</link>
		<dc:creator><![CDATA[Arya]]></dc:creator>
		<pubDate>Thu, 08 Mar 2012 04:52:10 +0000</pubDate>
		<guid isPermaLink="false">/?p=1389#comment-15219</guid>
		<description><![CDATA[Thanks.......]]></description>
		<content:encoded><![CDATA[<p>Thanks&#8230;&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stoimen</title>
		<link>/2010/03/25/send-mail-with-zend-framework/comment-page-1/#comment-12800</link>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
		<pubDate>Fri, 09 Apr 2010 06:06:53 +0000</pubDate>
		<guid isPermaLink="false">/?p=1389#comment-12800</guid>
		<description><![CDATA[Thanks for the nice example!]]></description>
		<content:encoded><![CDATA[<p>Thanks for the nice example!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy</title>
		<link>/2010/03/25/send-mail-with-zend-framework/comment-page-1/#comment-12796</link>
		<dc:creator><![CDATA[Jeremy]]></dc:creator>
		<pubDate>Fri, 09 Apr 2010 03:42:01 +0000</pubDate>
		<guid isPermaLink="false">/?p=1389#comment-12796</guid>
		<description><![CDATA[For local testing I use gmail as my outgoing smtp server

require_once &#039;Zend/Mail.php&#039;;
require_once &#039;Zend/Mail/Transport/Smtp.php&#039;;

try {

$configMail = array(
&#039;auth&#039; =&#062; &#039;login&#039;,
&#039;username&#039; =&#062; &#039;youremail@gmail.com&#039;,
&#039;password&#039; =&#062; &#039;password&#039;,
&#039;ssl&#039; =&#062; &#039;ssl&#039;,
&#039;port&#039; =&#062; 465
);
$mailTransport = new Zend_Mail_Transport_Smtp(&#039;smtp.gmail.com&#039;,$configMail) ;
Zend_Mail::setDefaultTransport($mailTransport);
// defines gmail smtp infrastructure as default for any email message originated by Zend_Mail.


$mail = new Zend_Mail();
$mail-&#062;setBodyText(&#039;testing gmail&#039;);
$mail-&#062;setFrom(&#039;youremail@domain.com&#039;, &#039;your name&#039;);
$mail-&#062;addTo(&#039;sendto@domain.com&#039;, &#039;Me&#039;);
$mail-&#062;setSubject(&#039;TestSubject-----&#039;);
$mail-&#062;send();


} catch (Zend_Exception $e) {
// Here you can log an Zend_Mail exceptions&lt;/strong&gt;
}]]></description>
		<content:encoded><![CDATA[<p>For local testing I use gmail as my outgoing smtp server</p>
<p>require_once &#8216;Zend/Mail.php&#8217;;<br />
require_once &#8216;Zend/Mail/Transport/Smtp.php&#8217;;</p>
<p>try {</p>
<p>$configMail = array(<br />
&#8216;auth&#8217; =&gt; &#8216;login&#8217;,<br />
&#8216;username&#8217; =&gt; &#8216;youremail@gmail.com&#8217;,<br />
&#8216;password&#8217; =&gt; &#8216;password&#8217;,<br />
&#8216;ssl&#8217; =&gt; &#8216;ssl&#8217;,<br />
&#8216;port&#8217; =&gt; 465<br />
);<br />
$mailTransport = new Zend_Mail_Transport_Smtp(&#8216;smtp.gmail.com&#8217;,$configMail) ;<br />
Zend_Mail::setDefaultTransport($mailTransport);<br />
// defines gmail smtp infrastructure as default for any email message originated by Zend_Mail.</p>
<p>$mail = new Zend_Mail();<br />
$mail-&gt;setBodyText(&#8216;testing gmail&#8217;);<br />
$mail-&gt;setFrom(&#8216;youremail@domain.com&#8217;, &#8216;your name&#8217;);<br />
$mail-&gt;addTo(&#8216;sendto@domain.com&#8217;, &#8216;Me&#8217;);<br />
$mail-&gt;setSubject(&#8216;TestSubject&#8212;&#8211;&#8216;);<br />
$mail-&gt;send();</p>
<p>} catch (Zend_Exception $e) {<br />
// Here you can log an Zend_Mail exceptions<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: farrah</title>
		<link>/2010/03/25/send-mail-with-zend-framework/comment-page-1/#comment-12720</link>
		<dc:creator><![CDATA[farrah]]></dc:creator>
		<pubDate>Sat, 27 Mar 2010 16:39:03 +0000</pubDate>
		<guid isPermaLink="false">/?p=1389#comment-12720</guid>
		<description><![CDATA[@bimbashi - check your mail client, dude]]></description>
		<content:encoded><![CDATA[<p>@bimbashi &#8211; check your mail client, dude</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bimbashi</title>
		<link>/2010/03/25/send-mail-with-zend-framework/comment-page-1/#comment-12711</link>
		<dc:creator><![CDATA[bimbashi]]></dc:creator>
		<pubDate>Fri, 26 Mar 2010 12:08:45 +0000</pubDate>
		<guid isPermaLink="false">/?p=1389#comment-12711</guid>
		<description><![CDATA[absolutely what i needed. how can i find my provider configs?]]></description>
		<content:encoded><![CDATA[<p>absolutely what i needed. how can i find my provider configs?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
