|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。& N# P9 ?9 J+ v, }8 C4 H* P
首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。
5 m- D9 R8 J) R# F然后打开php.ini文件,找到下面这段代码
" `" j+ Y' _+ R8 c0 G- [mail function]
& Q( w6 q- ^; G - ; For Win32 only. 3 N- _: y+ @( |. {5 l/ W; N
- SMTP = localhost & W( d$ p# t* m. E5 }
- smtp_port = 25
3 z1 g# S2 z6 V - ; For Win32 only.
& n$ z( M" o3 ?% q: b" a - ;sendmail_from = me@example.com
! L0 U1 U1 Q# _, [, C/ V" {; d - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
/ S0 |& M" k% y8 }1 U! t - ; sendmail_path = ""
$ ` h2 S7 K( M6 S+ I - ; Force the addition of the specified parameters to be passed as extra parameters " S1 F1 _7 H8 @" |6 v
- ; to the sendmail binary. These parameters will always replace the value of
0 ~* o9 h p2 Z& {* Z1 S9 |' \+ M - ; the 5th parameter to mail(), even in safe mode.
, H: G. b( |8 O% _3 p1 c - ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是
9 @2 A5 V3 H/ C& U- [mail function] 0 F; ^9 f4 O; E7 F
- ; For Win32 only. * \0 R: C" r% O! @4 s# H% n
- ;SMTP = localhost
- G$ U4 j# G2 [+ Q' W - ;smtp_port = 25 1 g% H6 @ o7 y
- ; For Win32 only. % Y0 f1 M9 [# ?5 B8 a! O! u. ]
- ;sendmail_from = me@example.com
/ E$ L) B0 k) K( j: ` - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). ( W& ^9 T; p$ p5 F
- sendmail_path = "d:\php\sendmail\sendmail.exe -t" / k7 I* ^: M: ~2 C; a( w
- ; Force the addition of the specified parameters to be passed as extra parameters 3 Z* s6 f3 ]0 T9 w8 V) Y& s
- ; to the sendmail binary. These parameters will always replace the value of
* W1 m( O3 J. J* y3 Z8 @ - ; the 5th parameter to mail(), even in safe mode. 0 N$ O& D: F' a; n) Z' C7 Z
- ;mail.force_extra_parameters =
复制代码
0 {% X7 a6 Q4 v4 T& r X3 J: R0 @% L注意以上只需要开启sendmail_path即可,然后保存
2 s; F* G' b5 p
$ E4 K! Q' y1 d: P) S接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项 4 Q: G8 u0 o. ?$ H3 k
- smtp_server=smtp服务器地址(如 smtp.ym.163.com) a) z5 ^) _0 W6 d2 H
- auth_username=邮箱登录名(如 info@xxxx.com)
# n" B( e% Q' h0 W0 V0 s$ U - auth_password=邮箱密码(如 xxxxxx) / E7 U# z: g0 c
- force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项 7 w* k, b* k7 a; q, h
- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码 , l/ U, {& f; Y3 ~& d" l& C
把前面的";"删除,即开启SSL安全登录选项即可
4 [1 x: c* {8 t) H. v0 y% X% `* g" c: v% T: v" @* T
以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。
+ w6 v8 S q8 }3 j y
2 ~5 a, B- l' ^如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等
1 d1 D; O9 P1 ]+ X) t* h/ n9 V4 f7 x# ~; \4 D$ `
|
|