欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHPMailer发送邮件,出现无法连接host (Could not connect to SMTP host)

程序员文章站 2022-09-02 22:57:42
  php   PHPMailer发送邮件,出现无法连接host,这是因为fsockopen函数被禁用,PHPmailer发送Email依赖此函...

 


php   PHPMailer发送邮件,出现无法连接host,这是因为fsockopen函数被禁用,PHPmailer发送Email依赖此函数。

修改:


class.stmp.php


解决:

1:


118行:


  $this->smtp_conn = fsockopen($host,    // the host of the server

改为:

  $this->smtp_conn = pfsockopen($host,    // the host of the server

 


2:


文件:class.phpmailer.php

291行:

  public function IsSMTP() {
    $this->Mailer = 'smtp';
  }

改为:


  public function IsSMTP() {
    $this->Mailer = 'SMTP';
  }