I\'m trying to send an e-mail with ZendMail ( this simple script sums it up )
se
Another great thing on Zend_Mail is that's chainable, so you can do this:
$mail = new Zend_Mail();
$mail->setBodyText('My Nice Test Text')
->setBodyHtml('My Nice Test Text')
->setFrom('test@example.com', 'Mr Example')
->addTo('contact@mypage.com', 'Mr Test')
->setSubject('TestSubject')
->send();
Don't know for sure if 'chainable' is the right word, but I hope you got the point. This is just a free tip. The answer is given (right) by Benjamin