When PHPMailer sends an email, the host cannot be connected (CouldnotconnecttoSMTPhost ). PhpPHPMailer sends an Email and cannot connect to the host. this is because the fsockopen function is disabled. PHPmailer sends an Email based on this function. Modify: class. stmp. php solution: line 1: 118: php PHPMailer sends an Email and the host cannot be connected. this is because the fsockopen function is disabled and PHPmailer sends an Email based on this function.
Modify:
Class. stmp. php
Solution:
1:
Row 3:
$ This-> smtp_conn = fsockopen ($ host, // the host of the server
Changed:
$ This-> smtp_conn = pfsockopen ($ host, // the host of the server
2:
File: class. phpmailer. php
Row 3:
Public function IsSMTP (){
$ This-> Mailer = 'smtp ';
}
Changed:
Public function IsSMTP (){
$ This-> Mailer = 'smtp ';
}
The http://www.bkjia.com/PHPjc/477185.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/477185.htmlTechArticlephp PHPMailer sends an Email and the host cannot be connected because the fsockopen function is disabled and PHPmailer sends an Email depending on this function. Modify: class. stmp. php solution: 1: 118 rows :...