how to send smtp mail from localhost

前端 未结 2 1647
太阳男子
太阳男子 2021-01-12 06:10

I always get this message when trying to send email from my local host.

SMTP Error: Could not connect to SMTP host. Message could not be sent. Mailer Error: SMTP Er

2条回答
  •  一向
    一向 (楼主)
    2021-01-12 06:25

    You can add this line
    $mail->SMTPSecure = "ssl";

    after

    $mail->SMTPAuth = true;
    

提交回复
热议问题