无法从Linux发送邮件,与Windows完美配合

时间:2013-12-06 07:29:26

标签: php linux email

我使用以下代码发送联系表单的邮件。使用带xampp的Windows服务器设置时邮件工作正常,但在Linux服务器RHEL 5中失败 我收到“SMTP错误:无法连接到SMTP主机”。我尝试从终端telnet主机。它正在连接

public function smtpmailer($to,$cc, $from, $from_name, $subject, $body) {
    global $error;
    $mail = new PHPMailer();  // create a new object
    $mail->IsSMTP(); // enable SMTP
    $mail->IsHTML();
    $mail->SMTPDebug = 1;  // 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 = 'XXX@gmail.com';
    $mail->Password = 'XXXXXXXX';
    $mail->SetFrom($from, $from_name);
    $mail->Subject = $subject;
    $mail->Body = $body;
    $mail->AddAddress($to);
        $mail->AddCC($cc);
    if(!$mail->Send()) {
        $error = 'Mail error: '.$mail->ErrorInfo;
        return false;
    } else {
        $error = 'Message sent!';
        return true;
    }

当Debugging设置为1时,我收到以下错误

  

SMTP - >错误:无法连接到服务器:php_network_getaddresses:getaddrinfo failed:名称或服务未知(0)
  SMTP错误:无法连接到SMTP主机。

1 个答案:

答案 0 :(得分:0)

好像名称解析不起作用。检查/etc/resolv.conf,它应该包含这样一行:

nameserver 8.8.8.8

8.8.8.8替换为所需名称服务器的IP。