|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。( F1 o/ l E- b& \) z. W
首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。0 ~4 @% t) c, Z* Y: I( l6 { ~, J
然后打开php.ini文件,找到下面这段代码: a# O% c* _1 x. D
- [mail function] 9 r3 _8 W# m# \1 O6 k7 d3 @; v: m
- ; For Win32 only.
6 D, f. x! ]& j8 z - SMTP = localhost 7 k' n4 o+ H: J$ W0 ?
- smtp_port = 25
( n- [+ @# w6 x4 P+ W, }2 W! A5 k - ; For Win32 only.
/ V# v$ |) q. C& Z! g* y* l - ;sendmail_from = me@example.com % W( v/ C) c9 _" o4 m+ _) v
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). & w1 X* C& c+ z
- ; sendmail_path = ""
. E2 _% Y) Y1 O6 I: r( W6 u - ; Force the addition of the specified parameters to be passed as extra parameters
7 v$ o) r& _; }! _6 f - ; to the sendmail binary. These parameters will always replace the value of
8 R3 X7 T2 x& w) S( c - ; the 5th parameter to mail(), even in safe mode. 0 y1 u ?/ D; O, X, C; `( U) J2 g
- ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是
0 E2 G1 r5 B; D2 z- [mail function] 9 S' f" }+ b9 r: r! ~
- ; For Win32 only.
& ]9 k0 O3 B! O1 Y9 z7 V - ;SMTP = localhost
* Y% p" K9 y9 Z }6 R3 Y# r8 h' ]6 F - ;smtp_port = 25
* \8 t9 m4 K( J. Y. ? - ; For Win32 only. % g0 v" M* }1 h* f. B
- ;sendmail_from = me@example.com
+ P9 r# p) t" ~ - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). ; O3 `7 {0 q& Q) Z$ C! `* h3 N
- sendmail_path = "d:\php\sendmail\sendmail.exe -t" $ @3 T9 a" m) Q
- ; Force the addition of the specified parameters to be passed as extra parameters * f# ]: C5 I# Q
- ; to the sendmail binary. These parameters will always replace the value of
* C2 g: u7 `) g& o1 k5 m" C - ; the 5th parameter to mail(), even in safe mode.
3 H6 }7 U! \& q+ O- A - ;mail.force_extra_parameters =
复制代码
' m8 H% [6 s! g% s注意以上只需要开启sendmail_path即可,然后保存
; I( i% E+ z, m* U# n% e5 ]0 C& }- u( e- g/ o& L: J# g, s: a3 i
接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项
% |# A V- ~+ i1 k& z- smtp_server=smtp服务器地址(如 smtp.ym.163.com)
" _8 X5 P5 n) ~4 T; w# x4 O1 ^9 A - auth_username=邮箱登录名(如 info@xxxx.com) : E9 ?- A- w& s7 u" d8 {- z
- auth_password=邮箱密码(如 xxxxxx)
; f2 m: t( c" X, T2 C4 U: r. @ - force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项
3 N! e" Z+ k; T0 D5 g! z- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码 ! W# }7 y) W0 ~8 U
把前面的";"删除,即开启SSL安全登录选项即可 + Y3 j# a( P3 d3 C h5 X1 k0 q
* x: W/ L; O8 |3 s
以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。
3 A. j& Z0 q9 Q! R9 w& [5 w: C- d+ [* o7 f3 y. [! z$ l3 X3 m
如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等 ' o/ A! O% p6 ]$ y) Q' G! d/ F
% [/ ] d# S, r7 D( t
|
|