PHPMailer smtp error

Hi, I cannot figure out for the life of me if wrong with this code, it returns an error every time!

<?php require_once('phpmailer/class.phpmailer.php'); define('GUSER', '[email protected]'); // Gmail username define('GPWD', '(my password)'); // Gmail password function smtpmailer($to, $from, $from_name, $subject, $body) { global $error; $mail = new PHPMailer(); // create a new object $mail->IsSMTP(); // enable SMTP $mail->SMTPDebug = 0; // debugging: 1 = errors and messages, 2 = messages only $mail->SMTPAuth = true; // authentication enabled $mail->SMTPSecure = 'ssl'; // secure transfer enabled REQUIRED for Gmail $mail->Host = 'smtp.gmail.com'; $mail->Port = 465; $mail->Username = GUSER; $mail->Password = GPWD; $mail->SetFrom($from, $from_name); $mail->Subject = $subject; $mail->Body = $body; $mail->AddAddress($to); if(!$mail->Send()) { $error = 'Mail error: '.$mail->ErrorInfo; return false; } else { $error = 'Message sent!'; return true; } } smtpmailer("$_POST[email]", "[email protected]", "Tommy Smith", "The Subject", "The sent message.") ?>

Anybody know what I am doing wrong? I have the phpmailer folder ready…

This is my new code

Mailing with Gmail <?php require_once('lib/phpmailer/class.phpmailer.php'); $mail = new PHPMailer(); $mail->IsSMTP(); $mail->SMTPAuth = true; $mail->SMTPDebug = 1; $mail->SMTPSecure = 'ssl'; $mail->Host = 'smtp.gmail.com'; $mail->Port = 465; $mail->Username = "my [email protected]"; $mail->Password = "my password"; $mail->From = "my [email protected]"; $mail->FromName = "Tommy Smith"; $mail->AddAddress("[email protected]","Tommy Smith"); $mail->AddReplyTo("[email protected]","Tommy Smith"); $mail->Subject = "This is the subject"; $mail->Body = "Hi, This is the BODY"; if($mail->Send()) { echo "Message has been sent"; } else { echo "Mailer Error: " . $mail->ErrorInfo; } ?>

I have been searching for a solution and changing around my code but it still times out.
Port 465 is open.
PHP OpenSSL extension is added.
I have enabled POP and IMAP on Gmail.
What am I doing wrong??

Sponsor our Newsletter | Privacy Policy | Terms of Service