<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title>PHPDeveloper.org</title>
    <link>http://www.phpdeveloper.org</link>
    <description>Up-to-the Minute PHP News, views and community</description>
    <language>en-us</language>
    <pubDate>Sun, 12 Feb 2012 21:04:50 -0600</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[ZendCasts.com: Painless HTML Emails with Zend_Mail]]></title>
      <guid>http://www.phpdeveloper.org/news/14688</guid>
      <link>http://www.phpdeveloper.org/news/14688</link>
      <description><![CDATA[<p>
On the ZendCasts.com site today there's a <a href="http://www.zendcasts.com/painless-html-emails-with-zend_mail/2010/06/?">new screencast posted</a> looking at using the Zend_Mail component of the <a href="http://framework.zend.com">Zend Framework</a> to easy (and painlessly) send HTML emails.
</p>
<blockquote>
Here's a quick video explaining how quickly and easy it is to write designer-friendly HTML emails using Zend_View and Zend_Mail.
</blockquote>
<p>
You can watch the screencast via their <a href="http://www.zendcasts.com/painless-html-emails-with-zend_mail/2010/06/">in-page player</a> and grab a copy of <a href="http://zendcasts.googlecode.com/svn/trunk/zc56-painless-html-email-with-zend-mail/zc56-painless-html-email-with-zend-mail.zip">the project</a> to follow along.
</p>]]></description>
      <pubDate>Wed, 23 Jun 2010 08:45:59 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Web Development Blog: PHP Mail Scripts using SMTP transport, a guide for beginners]]></title>
      <guid>http://www.phpdeveloper.org/news/14333</guid>
      <link>http://www.phpdeveloper.org/news/14333</link>
      <description><![CDATA[<p>
From the Web Development Blog today there's a new tutorial showing you how to <a href="http://www.web-development-blog.com/archives/php-mail-scripts-using-smtp-transport-a-guide-for-beginners/">use STMP from PHP</a> via one of three different tools - the <a href="http://framework.zend.com">Zend_Mail</a> component of the Zend Framework, <a href="http://swiftmailer.org">SwiftMailer</a> and <a href="http://phpmailer.worxware.com">PHPMailer</a>.
</p>
<blockquote>
PHP has a <a href="http://www.finalwebsites.com/forums/topic/php-mail-script">very simple mail function</a> which is used very often for basic text mail messages. What if you need to attach files or if you need to send your e-mail messages via SMTP? Than it's time to use a more advanced script. This is because the standard mail function has only limited standard capabilities.
</blockquote>
<p>
Snippets of code are included for each of the three showing how to send a simple email with the usual "To", "From" and body contents. All of the tools have the ability to include attachments, but that's not included here.
</p>]]></description>
      <pubDate>Mon, 12 Apr 2010 10:47:47 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Adrian Schneider' Blog: Testing Zend_Mail]]></title>
      <guid>http://www.phpdeveloper.org/news/14027</guid>
      <link>http://www.phpdeveloper.org/news/14027</link>
      <description><![CDATA[<p>
In needing to test some mailing functionality in his application <i>Adrian Schneider</i> has come across two ways to handle it on a machine that may not have mail up and configured correctly - <a href="http://www.siradrian.com/blog/2010/02/testing-zend_mail/">mail a mail transport class or sent up a pseudo mail server</a>.
</p>
<blockquote>
I think a staging environment is more appropriate to actually have email being sent out. Nevertheless, it has made testing any email functionality a little cumbersome. I've done a little research, and have found two ways to tackle the problem. I've also included code samples and other resources to get you started.
</blockquote>
<p>
The first method - the transport class - uses the Zend_Mail_Transport component (and interfaces) to set the transport for the application and handle the routing from an extension of the Abstract class. The second method involves changes to system settings in the php.ini and adding in a simple script to force a forward to the right address. Windows users can also use <a href="http://www.lastcraft.com/fakemail.php">fakemail</a> to accomplish a similar thing.
</p>]]></description>
      <pubDate>Mon, 15 Feb 2010 11:09:56 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[ElectricToolBox.com: Method chaining with PHP]]></title>
      <guid>http://www.phpdeveloper.org/news/11611</guid>
      <link>http://www.phpdeveloper.org/news/11611</link>
      <description><![CDATA[<p>
On the ElectricToolBox.com blog there's <a href="http://www.electrictoolbox.com/php-method-chaining/">a quick post</a> looking at method chaining in a Zend Framework application:
</p>
<blockquote>
Having used the Zend Framework on a couple of projects and spent a lot of time reading the documentation I discovered the use of method chaining. This post looks at how to use method chaining in PHP.
</blockquote>
<p>
His examples include a comparison between a method-chained Zend_Mail example and a non-chained method with each line augmenting the same object over and over. He also includes the simple-as-pie method that lets you use chaining in your own applications - returning the object itself.
</p>]]></description>
      <pubDate>Mon, 22 Dec 2008 12:37:07 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Developer.com: Sending Email with PHP]]></title>
      <guid>http://www.phpdeveloper.org/news/11346</guid>
      <link>http://www.phpdeveloper.org/news/11346</link>
      <description><![CDATA[<p>
On the Developer.com website today, <i>Jason Gilmore</i> has <a href="http://www.developer.com/open/article.php/3782831">a new tutorial</a> covering a important feature of any based PHP install (unless disabled, of course) that is widely taken advantage of - sending emails.
</p>
<blockquote>
Email plays a crucial role in website development, whether you'd like to confirm a new registrant's email address, recover a lost password, or provide prospective clients with a convenient means to contact you. [...] In this tutorial, I'll introduce you to several solutions for sending email using PHP, including PHP's native mail() function, PEAR's Mail package, and the Zend Framework.
</blockquote>
<p>
He starts with some of the fundamentals of mail - the difference between POP3 and SMTP, Sendmail, etc - before moving on to an example of the <a href="http://www.php.net/mail">mail</a> function's usage. He does the same with the PEAR Mail package and the <a href="http://framework.zend.com/manual/en/zend.mail.html">Zend_Mail</a> component of the Zend Framework.
</p>]]></description>
      <pubDate>Wed, 05 Nov 2008 07:58:47 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Eran Galperin's Blog: Handling mail and mime in PHP using the Zend Framework]]></title>
      <guid>http://www.phpdeveloper.org/news/10633</guid>
      <link>http://www.phpdeveloper.org/news/10633</link>
      <description><![CDATA[<p>
On the Techfounder blog (from <i>Eran Galperin</i>) there's a <a href="http://www.techfounder.net/2008/07/18/handling-mail-and-mime-in-php-using-the-zend-framework/">quick tutorial</a> about using the Zend_Mail component of the Zend Framework to send both normal, plain-text emails and ones with MIME attachments.
</p>
<blockquote>
Using PHP's built in function (aptly named <a href="http://www.php.net/mail">mail()</a> ) is relatively straightforward - until you need slightly more advanced features, such as adding and encoding email headers or sending multiple mails efficiently. Fortunately, the Zend Framework comes with a very capable mail component called <a href="http://framework.zend.com/manual/en/zend.mail.html">Zend_Mail</a>.
</blockquote>
<p>
He <a href="http://www.techfounder.net/2008/07/18/handling-mail-and-mime-in-php-using-the-zend-framework/">shows</a> how to send a simple email, do something a bit more complex with a custom SMTP server, read messages from a remote POP3 email box and how to attach a binary file/message.
</p>]]></description>
      <pubDate>Fri, 18 Jul 2008 08:47:27 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[PHPImpact Blog: From Swift Mailer to Zend_Mail]]></title>
      <guid>http://www.phpdeveloper.org/news/10496</guid>
      <link>http://www.phpdeveloper.org/news/10496</link>
      <description><![CDATA[<p>
On the PHP::Impact blog, there's a <a href="http://phpimpact.wordpress.com/2008/06/27/from-swift-mailer-to-zend_mail/">new post</a> talking about his conversion from Swift Mailer over to the Zend_Mail component of the Zend Framework.
</p>
<blockquote>
I've recently switched from Swift Mailer to Zend_Mail and, to be honest, I'm loving it. Finally someone developed a lightweight, powerful and easy to use Mail component!
</blockquote>
<p>
He includes <a href="http://phpimpact.wordpress.com/2008/06/27/from-swift-mailer-to-zend_mail/">an example or two</a> showing a basic mailer script, one that uses a fluent interface, one sending an HTML email and two that show how to use a remote SMTP server.
</p>]]></description>
      <pubDate>Fri, 27 Jun 2008 07:55:48 -0500</pubDate>
    </item>
  </channel>
</rss>

