View Single Post
  #1 (permalink)  
Old 08-31-2007, 06:14 PM
syedsohail syedsohail is offline
Junior Member
 
Join Date: Aug 2007
Posts: 1
Talking simple mail script not working? (zendframework over SMTP)

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.

PHP Code:
PHP Code:
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 Code:
<?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);
Zend_Mail::setDefaultTransport($transport); 
$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();

?>
Reply With Quote