Here is a little (working) code example of how easy it is to send emails via Zend_Mail class using your existing Google email account.
<?php
$emailSmtpConf = array(
'auth' => 'login',
'ssl' => 'tls',
'username' => 'email2@domain.com',
'password' => 'mypasshere'
);
$transport = new Zend_Mail_Transport_Smtp('smtp.gmail.com', $emailSmtpConf);
$mail = new...
I wrote a little TODO application in Zend Framework (1.8) and Doctrine ORM (1.1). I’m posting it more as a sample (practice) app for Zend and Doctrine newcomers. Entire process of adding, deleting and editing TODO’s is AJAX based. I used jQuery and Jeditable plugin for it. jQuery and Jeditable plugins are provided in this zip-ed archive. You should download Zend Framework and Doctrine ORM yourself, and...
Wrote a little article at Inchoo.net site. Here is direct link: Doctrine ORM and Zend Framework, sample project to get you started (with sample database).
Wrote a new article on Inchoo.net, you can read it here. Basically, I wrote a storage class for those of you who dislike using default Zend_Auth session storage.
You can see the class code below. For any extra info, please visit the Inchoo.net article (direct link) or visit the ZF Snippets site (direct link).
<?php
class AuthDbStorage implements Zend_Auth_Storage_Interface
{
private static $_session...
Welcome to ActiveCodeline, my blog site. My name is Branko Ajzele. I'm currently working full time as Project Manager / Senior Developer at Inchoo (in partnership with Surgeworks). My special interest and expertise evolve mainly around Zend Framework, Doctrine ORM, Magento eCommerce platform and few other related technologies.