如何配置ini文件以使用php

时间:2019-06-06 17:29:11

标签: php wamp sendmail wampserver

我正在使用wampp服务器,并且尝试使用php脚本发送邮件。但是我遇到了错误。

我以不同的方式配置了php.ini文件,而wamp服务器没有sendmail文件。

那么如何设置呢?

[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP = localhost


; http://php.net/smtp-port
smtp_port = 25

; For Win32 only.
; http://php.net/sendmail-from
;sendmail_from =myMail1@gmail.com

   <?php


    $from = "myMail1@gmail.com";
    $to = "test_one@outlook.com";
    $subject = "Checking PHP mail";
    $message = "PHP mail works just fine";
    $headers = "From:" . $from;
    mail($to,$subject,$message, $headers);


?>
  

警告:mail():无法连接到位于以下位置的邮件服务器   “本地主机”端口25,验证您的“ SMTP”并   php.ini中的“ smtp_port”设置,或使用ini_set()   第9行的C:\ wamp64 \ www \ sendMail \ index.php

我要消除此错误。我几次重新启动服务器。

1 个答案:

答案 0 :(得分:0)

您正尝试将自己的服务器用作smpt服务器(对吗?)请尝试通过端口587与smtp.gmail.com

https://support.google.com/a/answer/176600