Windows用XAMPP sendmail SMTP郵件寄信

1 月 14, 2020 | | 0 條留言

要用XAMPP來寄信步驟非常的簡單!

  1. 修改 php.ini 檔

    ; XAMPP: Comment out this if you want to work with fakemail for forwarding to your mailbox (sendmail.exe in the sendmail folder)
    sendmail_path = ""E:xamppsendmailsendmail.exe" -t"
    
    ; Log all mail() calls including the full path of the script, line #, to address and headers
    mail.log = "E:xamppapachelogsphp_mail.log"
  2. 修改 sendmail.ini 檔(xamppsendmail)

    smtp_server=mail.yourname.com
    
    smtp_port=25
    
    smtp_ssl=auto
    
    default_domain=yourname.com
    
    auth_username=xxx
    auth_password=xxx
    
    force_sender=smtp@yourname.com

修改完後,重新啟動 Apache 即可。

相關連結:
用XAMPP的sendmail寄信(windows)
如何使用Gmail SMTP寄件做為我的郵件服務器?