无效地址:SMTP错误:无法连接到SMTP主机

时间:2013-02-01 11:22:46

标签: php smtp

我正在尝试使用gmail smtp服务器从php表单通过php邮件发送电子邮件。我已经从Windows防火墙打开了465端口,但当我输入

时,端口没有出现在cmd输出中
  

netstat -an

命令.php页面中出现的错误是: 无效的地址:SMTP错误:无法连接到SMTP主机。 在我的搜索结果中,我的问题没有确切的解决方案。我的代码是:

<?php
 require_once('PHPMailer_v5.1/class.phpmailer.php');
 define('GUSER', 'from@gmail.com'); // GMail username
define('GPWD', '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;
    }}
    if(smtpmailer('from@gmail.com', 'to@gmail.com', 'name', 'test mail message', 'Hello World!')){
        echo "sent";
    if (!empty($error)) echo $error;}

  ?>

注意:我使用localhost作为我的网站

1 个答案:

答案 0 :(得分:0)

尝试使用端口25或587,同时检查您的apache日志。