PHP mail()不适用于Windows(IIS)

时间:2014-04-09 18:47:49

标签: php windows email 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

1 个答案:

答案 0 :(得分:0)

要发送邮件,您应该configure smtp。 IIS只是它的Web服务器。