繁体   English   中英

PHP mail()在Windows(IIS)上不起作用

[英]PHP mail() NOT working on Windows (IIS)

以下是我使用PHP邮件功能的源代码

$to = "you@domain.com";
$subject = "This is the subject line
$message = "This is the message"
$headers = 'From: no-reply@domain.com' . "\r\n" .
           'Reply-To: admin@domain.com' . "\r\n" .
           'X-Mailer: PHP/' . phpversion();
$result = mail($to , $subject , $message, $headers )

下面是我的PHP配置,该配置在Windows IIS上运行

[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 = me@example.com

要发送邮件,您应该配置smtp IIS是它的唯一Web服务器。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM