今天在使用phpmailer发送smtp邮件时提示 SMTP Error: Could not authenticate 错误,其中密码帐号都是正确的,邮箱也设置开启了SMTP功能。 上谷歌百度了一遍,有的说是服务器禁用了端口,有的说把class.phpmailer.php中的 代码如下 复制代码 functionIsSMTP(){$this->Mailer ='smtp'; }改为functionIsSMTP(){$this->M...
今天在使用phpmailer发送smtp邮件时提示 SMTP Error: Could not authenticate 错误,其中密码帐号都是正确的,邮箱也设置开启了SMTP功能。 上谷歌百度了一遍,有的说是服务器禁用了端口,有的说把class.phpmailer.php中的 代码如下 复制代码 function IsSMTP() { $this->Mailer = 'smtp'; }改为 function IsSMTP() ...
使用phpmailer发送smtp邮件时提示 SMTP Error: Could not authenticate 错误 这个错误是验证出现错误, $mail->Port = 25; //SMTP服务器的端口号 $mail->Host = "smtp.163.com"; ///SMTP服务器 $mail->Username = "123456@163.com"; //SMTP服务器用户名 $mail->Password = "123456"; //SMTP服务器密码...
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 方法1:将fsockopen函数替换成pfsockopen函数 首先,在php.ini中去掉下面的两个分号 ...
this is the part of the class.phpmailer.php that supposedly has an error. }if($this->SMTPAuth) {if(!$this->smtp->authenticate($this->Username,$this->Password,$this->AuthType,$this->Realm,$this->Workstation ) ) {thrownewphpmailerException($this->lang('authenticate')); ...
1.SMTP Error: Could not authenticate.这个是因为smtp验证没通过,就是smtp server 的用户名和密码不正确了$mail->Username = "smtp@chinastor.com"; // SMTP server usernamet;Password = "***";$mail->Username = "smtp@chinastor.com"; // SMTP server username $mail->Password = "***";2.Could ...
smtp.us-east-1.amazonaws.com'; $mail->Subject = 'Amazon SES test (SMTP interface accessed using PHP)'; $mail->Body = 'Email Test'; $mail->Port = 587; $mail->isHTML(true); $mail->AltBody = "Email Test\r\nThis email was sent through the Amazon SES SMTP interface using ...
35.png 点击关闭POP3/SMTP服务按钮然后再开启便可根据提示完成操作 问题3:SMTP授权问题 SMTP Error: Could not authenticate. 36.png 上谷歌百度了一遍,有的说是服务器禁用了端口,有的说把class.phpmailer.php中的代码修改一下:smtp-》SMTP 修改的地方一共有两处: ...
1.Could not authenticate 首先,如果你没有使用循环的话,基本上就是账号或者密码错了; 如果使用循环来群发,send()方法结束之后记得调用Smtpclose(),发一次关一次,否则就会出现只能发一封邮件,第二次就崩溃的情况。 2.Gmail 首先,开启php的ssl权限 php开启openssl的方法,大多数情况下openssl是没有开启的,要想启用需...
( 'authenticate' => 'SMTP Error: Could not authenticate.', 'connect_host' => 'SMTP Error: Could not connect to SMTP host.', 'data_not_accepted' => 'SMTP Error: Data not accepted.', 'empty_message' => 'Message body empty', 'encoding' => 'Unknown encoding: ', 'execute' => '...