Jump to content

simple mail script not working? (zendframework over SMTP)


sayedsohail

Recommended Posts

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' => '[email protected]',
                '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('[email protected]', 'Islogged);
$mail->addTo('[email protected]', 'david');
$mail->addCc('[email protected]', 'cameroon');
$mail->setSubject('TestSubject');
$mail->Send();

?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.