>백엔드 개발 >PHP 튜토리얼 >PHPmailer发送邮件失败 在线等!

PHPmailer发送邮件失败 在线等!

WBOY
WBOY원래의
2016-06-23 14:09:28837검색

发送错误提示:
SMTP Error: Could not connect to SMTP host. Mailer Error (9475@qq.com) SMTP Error: Could not connect to SMTP host.
本地测试正常  上传到服务器上就出错了  
当我把类中的函数
public function IsSMTP() 
{
    $this->Mailer = 'smtp';  //改成 $this->Mailer = 'SMTP'; 就可以发送 但是发送的邮件标题重复 并且被当做垃圾邮件处理 
}

怎么解决 ??  



回复讨论(解决方案)

CSDN 有没有老鸟...

更改phpmailer 的 class.stmp.php文件:

$this->smtp_conn = @fsockopen( $host,    // the host of the server
                                  $port,    // the port to use
                                  $errno,   // error number if any
                                  $errstr,  // error message if any
                                  $tval);   // give up after ? secs
改为
$this->smtp_conn = @stream_socket_client( $host.':'.$port,    // the host of the server
                        $errno,   // error number if any
                        $errstr,  // error message if any
                        $tval);   // give up after ? secs

貌似楼上的没用啊

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.