Author Topic: simple mail script not working? (zendframework over SMTP)  (Read 1714 times)

0 Members and 1 Guest are viewing this topic.

Offline sayedsohailTopic starter

  • Enthusiast
  • Posts: 468
    • View Profile
simple mail script not working? (zendframework over SMTP)
« on: August 31, 2007, 01:24:06 PM »
Here is the script, which suppose to send email using smtp over googlemail, but its not working for me don't know why?

In my PHP.ini I have got include path directing zend folder which is under the library folder.

include_path ".;C:\Program Files\Apache2.2\htdocs\library"



Here is the php script for sending a simple email. real names/emails are used in place of xxx.

<?php
require_once("Zend/Mail.php");
require_once(
"Zend/Mail/Transport/Smtp.php");

$config = array('auth' => 'login',
                
'username' => 'xxx@googlemail.com',
                
'password' => 'xxx','ssl' =>);

$transport = new Zend_Mail_Transport_Smtp('smtp.gmail.com'$config);

$mail = new Zend_Mail();

$mail->setBodyText('My Nice Test Text');
$mail->setBodyHtml('My Nice <b>Test</b> Text');
$mail->setFrom('xxx@googlemail.com''Islogged);
$mail->addTo('
xxx@yahoo.com', 'david');
$mail->addCc('
xxx@hotmail.co.uk', 'cameroon');
$mail->setSubject('
TestSubject');
$mail->Send();

?>