gpt4 book ai didi

php 从本地主机发送邮件

转载 作者:IT王子 更新时间:2023-10-28 23:55:12 26 4
gpt4 key购买 nike

我是 php 新手。我试图使用此代码从 php 发送邮件。

<?php

$to = 'sohil@gmail.com';
$subject = 'The subject';
$message = 'hello';
$headers = 'From: sohil@yahoo.in' . "\r\n" .
'Reply-To: receiver@yahoo.in' . "\r\n" .
'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);

?>

我在 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 = sohil@gmail.com

& 在 sendmail.ini 中

# A freemail service example
account Gmail
tls on
tls_certcheck off
host smtp.gmail.com
from sohil@gmail.com
auth on
user sohil@gmail.com
password xxxxxxxxx

# Set a default account
account default : Gmail

现在代码运行成功,但我没有收到任何邮件。

最佳答案

您必须更改 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 = you@yourdomain

如果设置了 localhost,它将无法工作,因此请更改您的邮件服务器。

关于php 从本地主机发送邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18288007/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com