|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。; r: X/ W. J, e( J2 X1 S6 z1 E. c
首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。3 K7 F, _% \# [: e e
然后打开php.ini文件,找到下面这段代码
6 D9 p9 u% w7 |5 b. E. b" W- [mail function]
8 ?* \8 U1 p6 I - ; For Win32 only.
! G" b0 b2 u& t6 c3 R1 X& U! j - SMTP = localhost
3 y5 r$ X% [! P: Y& A - smtp_port = 25
$ N0 m4 z- \9 F9 N# F2 H) F/ X - ; For Win32 only.
4 G0 h3 ~# x5 k - ;sendmail_from = me@example.com 1 a& b1 ~$ n0 A2 J
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
7 p$ x- H1 g: [* t+ L& O1 ~ - ; sendmail_path = "" 0 i4 l$ V: {5 H; p# T5 l7 P
- ; Force the addition of the specified parameters to be passed as extra parameters
1 q* A/ Y0 |8 W+ p- e& c9 L - ; to the sendmail binary. These parameters will always replace the value of
9 M6 ?" W# j! L6 E4 S - ; the 5th parameter to mail(), even in safe mode.
7 Z D9 T" n7 N ~2 c( Q! A - ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是 {, z+ z# |/ O( A4 a) b0 u( H
- [mail function] 8 z. m1 |0 a$ h ~
- ; For Win32 only.
& F: m& [3 |6 e1 u4 n' }$ I3 { - ;SMTP = localhost 2 v, N+ s/ q: a" D) y! p" F) ~
- ;smtp_port = 25
$ O7 f9 A- e' q' G1 e - ; For Win32 only. 3 J" m( ]' E: ?2 {) y
- ;sendmail_from = me@example.com 7 v* B* o! T% V x# A5 P
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
0 ]( F6 t% o) h+ l/ f& G0 t5 U2 M* ? - sendmail_path = "d:\php\sendmail\sendmail.exe -t" 2 Q. t2 V3 ^$ j2 x' d) [
- ; Force the addition of the specified parameters to be passed as extra parameters 8 q; Q+ g e+ D7 E+ v# {7 I
- ; to the sendmail binary. These parameters will always replace the value of
/ f5 k$ `1 `/ i6 Y. }$ o/ x8 w: A - ; the 5th parameter to mail(), even in safe mode. 5 w' Z* u& |1 X7 m0 F" E
- ;mail.force_extra_parameters =
复制代码 " b# j; n. J) i( H
注意以上只需要开启sendmail_path即可,然后保存
- R, j& c2 s A2 v4 x) N% p0 q \& J$ {& G# ]
接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项 ! K% R% t1 k) z* ]5 ?/ u
- smtp_server=smtp服务器地址(如 smtp.ym.163.com)
0 q H4 r: Y. {5 I. ~ - auth_username=邮箱登录名(如 info@xxxx.com)
0 i+ W; R7 U* _4 C2 p - auth_password=邮箱密码(如 xxxxxx) $ f; ?) k( V" J7 H: |
- force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项 + R/ o" e% t: t# }5 o0 F1 r! c5 `
- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码 3 x5 W* C/ L( B* y" V
把前面的";"删除,即开启SSL安全登录选项即可 + |7 f2 P$ [$ V; H
. ?* X4 M& K% c$ ~0 w
以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。 4 y0 `$ g! b0 x! V! S
# H+ i1 S. ^* Z( |5 P( P7 N* G* |
如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等
* Z6 y% J$ t+ W! Q9 Z3 r% t- Y0 C, q5 z
/ _7 F/ s( \) F6 E |
|