I have one domain with some emails and use with this domain google apps , in this case i want use the smtp of gmail for send without problems somes emails to my customers
Tha case the script no working for me , i put the case
date_default_timezone_set('Europe/Paris');
require_once("class.phpmailer.php");
require_once("class.smtp.php");
$mail             = new PHPMailer();
$body             = "gdssdh";
//$body             = eregi_replace("[\]",'',$body);
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host       = "ssl://smtp.gmail.com"; // SMTP server
$mail->SMTPDebug  = 1;                     // enables SMTP debug information (for testing)
                                           // 1 = errors and messages
                                           // 2 = messages only
$mail->SMTPAuth   = true;                  // enable SMTP authentication
$mail->SMTPSecure = "ssl";                 // sets the prefix to the servier
$mail->Host       = "smtp.gmail.com";      // sets GMAIL as the SMTP server
$mail->Port       = 465;                   // set the SMTP port for the GMAIL server
$mail->Username   = "user@gmail.com";  // GMAIL username
$mail->Password   = "123456789";            // GMAIL password
$mail->SetFrom('accountemail@mydomain.com', 'PRSPS');
//$mail->AddReplyTo("user2@gmail.com', 'First Last");
$mail->Subject    = "Hello it´s a test";
//$mail->AltBody    = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->MsgHTML($body);
 
     
    