Php

從php發送郵件

  • March 30, 2021
<?php
   $to = "Istiakshovon011@gmail.com";
   $subject = "My subject";
   $txt = "Hello world!";
   $headers = "From: Istiakshovon011@gmail.com";

   mail($to,$subject,$txt,$headers);
   var_dump($mail);
?>

我試圖發送郵件。它不工作我不知道為什麼。我也沒有收到任何錯誤。我沒有收到任何郵件。我也嘗試了不同的電子郵件地址。我應該編輯lampp/xampp中的任何文件嗎?

var_dump總是回來bool(false)

我已經更改了一些程式碼php.ini

[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 = Istiakshovon011@gmail.com

; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
;sendmail_path =

; Force the addition of the specified parameters to be passed as extra parameters
; to the sendmail binary. These parameters will always replace the value of
; the 5th parameter to mail(), even in safe mode.
;mail.force_extra_parameters =

; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
mail.add_x_header=On

; Log all mail() calls including the full path of the script, line #, to address and headers
;mail.log =

雖然我有同樣的問題

為了使用 php 郵件功能,您需要一些後端工作,即正確配置的 SMTP 服務。您需要檢查 php.ini 中的相關配置

$$ mail function $$部分,並將其設置為能夠訪問上述正確配置的 SMTP 服務。 由於預設值是 localhost,如果您沒有在您的 localhost 上設置 SMTP,或者如果它沒有配置為將郵件轉發到 Internet,您的 PHP 郵件功能將無法工作。

引用自:https://unix.stackexchange.com/questions/642758