dongzhu6900 2019-08-12 07:26
浏览 174
已采纳

smtp connect()使用phpmailer库在PHP中失败[关闭]

I have Found Error to send mail in PHP using phpmailer Library.any one can answer this Error. Thank you.

smtp connect() failed. https://github.com/phpmailer/phpmailer/wiki/troubleshooting

require_once APPPATH.'third_party/phpmailer/class.phpmailer.php';
require_once APPPATH.'third_party/phpmailer/class.smtp.php';

    $rtn = false;
    $mail = new PHPMailer();

    $mail->IsSMTP();
    $mail->SMTPDebug  = 0;
    $mail->SMTPAuth   = true;
    $mail->SMTPSecure = "tls";
    $mail->Host       = 'smtp.gmail.com';
    $mail->Port       = 587;
    $mail->Username   = 'myemail@gmail.com';
    $mail->Password   = 'mypassword';
    $mail->SMTPOptions = array(
        'ssl' => array(
            'verify_peer' => false,
            'verify_peer_name' => false,
            'allow_self_signed' => true
        )
    );
    $mail->AddAddress($email);
    $mail->SetFrom('myemail@gmail.com', 'Smart Saver Support');
    $mail->AddReplyTo('myemail@gmail.com', 'Smart Saver Support');
    $mail->IsHTML(true);
    $mail->Subject = $subject;
    $mail->MsgHTML($msg);

    $rtn = $mail->Send();
    return $rtn;
  • 写回答

2条回答 默认 最新

  • douchongzhang9267 2019-08-12 07:36
    关注

    Hey Do you Allow less secure apps to access your Gmail account ? if you not allow less secure apps enable and Run again and see the result.

    Here is the Example: https://devanswers.co/allow-less-secure-apps-access-gmail-account/

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥100 微信小程序跑脚本授权的问题
  • ¥100 房产抖音小程序苹果搜不到安卓可以付费悬赏
  • ¥15 STM32串口接收问题
  • ¥15 腾讯IOA系统怎么在文件夹里修改办公网络的连接
  • ¥15 filenotfounderror:文件是存在的,权限也给了,但还一直报错
  • ¥15 MATLAB和mosek的求解问题
  • ¥20 修改中兴光猫sn的时候提示失败
  • ¥15 java大作业爬取网页
  • ¥15 怎么获取欧易的btc永续合约和交割合约的5m级的历史数据用来回测套利策略?
  • ¥15 有没有办法利用libusb读取usb设备数据