|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。
# o* K% R |: O1 E: Y" u首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。$ y9 |" d! i. g! p" H
然后打开php.ini文件,找到下面这段代码
& G8 c: [/ ?$ d# I K2 H- [mail function]
- J" N; H1 I. y+ Q - ; For Win32 only. ' i5 f& V* P* }+ ?" H
- SMTP = localhost , O( a7 X, `* \* ?8 Q
- smtp_port = 25
9 h+ z3 \8 }2 p& @: x9 [ - ; For Win32 only. , o/ i5 [+ d0 [
- ;sendmail_from = me@example.com
: x0 x7 X. X; Z4 m - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
) D- M% j$ y6 f" S - ; sendmail_path = "" ) {4 G4 w( j5 C) a( ?: P! x6 ~
- ; Force the addition of the specified parameters to be passed as extra parameters 2 `* Q4 E; _* o8 q- x. |! P
- ; to the sendmail binary. These parameters will always replace the value of
* `. P9 J0 ^0 w; ~ - ; the 5th parameter to mail(), even in safe mode.
4 ^+ }4 s/ w+ j9 K$ e6 \, v. X) Z0 W - ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是 ( i. M& u1 } X- v g3 k. c) `# P4 X
- [mail function] % a# |/ x2 S. @* K
- ; For Win32 only. ' y* |& @9 q) W/ _# V' z7 R
- ;SMTP = localhost 3 R1 i: D9 K: e6 ?% h0 q0 B F
- ;smtp_port = 25
. a: \. s# U) k( i! J- `' p - ; For Win32 only. 0 |2 k* d2 N6 O2 i2 P: m
- ;sendmail_from = me@example.com
& Z# b/ Y8 r" ~3 U: q! y n - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). ( u- F2 r! s- b% M/ `0 ^
- sendmail_path = "d:\php\sendmail\sendmail.exe -t"
% f% R3 A2 ]4 r: W X3 u# [ - ; Force the addition of the specified parameters to be passed as extra parameters 5 H6 m. p* z% p g
- ; to the sendmail binary. These parameters will always replace the value of
" p4 i- O0 o2 P# K1 d& b& \ - ; the 5th parameter to mail(), even in safe mode. `- ~1 t* Y1 Z+ f. o' O) }
- ;mail.force_extra_parameters =
复制代码
1 F/ M9 d5 O |* f+ [; r* u9 x注意以上只需要开启sendmail_path即可,然后保存 " Y" _- J. N0 T+ D6 s# ]. R$ W4 F
3 X; C, Z+ ]6 {7 n, z- N
接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项 9 s4 F' K0 A* @$ i
- smtp_server=smtp服务器地址(如 smtp.ym.163.com)
8 f0 }3 }5 c" q! a% c* | - auth_username=邮箱登录名(如 info@xxxx.com) 8 n7 R* O4 P8 s- u# F" X
- auth_password=邮箱密码(如 xxxxxx) & g& D! T1 x6 B: k
- force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项
- Y- e9 j# a+ |4 _' X- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码
* @ `# ]& J9 p9 A' L: ^把前面的";"删除,即开启SSL安全登录选项即可
3 g q. J8 w5 J0 S. Q& i
0 U9 Z$ r% s' I4 c* i" f以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。
6 r$ U/ h3 g: }5 Q# M5 w+ Z& W& O2 g
如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等
" y; e @! B% h# W" b0 U
- Y4 w0 n0 E2 [8 y; L- K9 H |
|