|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。3 Z) f0 f; H% C2 `+ W, O. w6 g6 ?
首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。4 M0 [) l, Q% ?
然后打开php.ini文件,找到下面这段代码8 k7 V: h: t, A, q" `3 G( ?
- [mail function]
. ?; x; M& C+ {0 G8 P% ? - ; For Win32 only.
' h! W% c9 ]+ _5 I" A5 I - SMTP = localhost & a" \& D4 f5 p6 k3 @( x
- smtp_port = 25
) C3 ^6 p, k# R: R- P+ d! G - ; For Win32 only.
! n V) B1 U0 g. w+ f! z3 R+ ^1 v% M - ;sendmail_from = me@example.com
3 u% a$ ]/ d3 V) {3 {0 G7 S - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
4 |0 r' m* O* m: K0 o6 K) E3 h4 Z9 o6 y - ; sendmail_path = ""
1 y6 m u0 Q1 y: C* U8 y p; P9 | - ; Force the addition of the specified parameters to be passed as extra parameters
% O6 |( Y: |# F1 c - ; to the sendmail binary. These parameters will always replace the value of
s8 b q- [& `1 g/ I8 q - ; the 5th parameter to mail(), even in safe mode.
E! O3 R9 T: U( v& ^ - ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是
' u z4 {/ y; e! E- [mail function]
+ r2 E: e* Y6 [ i - ; For Win32 only. / Z) B7 X0 i7 O8 I( u6 l
- ;SMTP = localhost
# L0 W3 k9 w9 X) m3 N x - ;smtp_port = 25
. T, }1 C$ F; ~+ m) o7 @" U - ; For Win32 only. ) m' l, O( x0 {- @/ s% S
- ;sendmail_from = me@example.com
( C: V: _9 Q* { - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
4 m6 a, Y) S6 c2 d7 a - sendmail_path = "d:\php\sendmail\sendmail.exe -t" . x" j8 R1 x9 _7 V5 K: E1 M
- ; Force the addition of the specified parameters to be passed as extra parameters
' w |3 I% y! Y - ; to the sendmail binary. These parameters will always replace the value of
: }5 p. Z- r4 J9 O5 K5 _5 l - ; the 5th parameter to mail(), even in safe mode.
! o- C r# z/ j% M - ;mail.force_extra_parameters =
复制代码 , ~, I( T3 z4 }, v! w( x
注意以上只需要开启sendmail_path即可,然后保存 5 m! u9 R- S/ e) g
9 O9 h' M2 D r3 |' D+ f& r接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项 0 u& O4 z) f1 e6 V8 h; @
- smtp_server=smtp服务器地址(如 smtp.ym.163.com) : S1 b& q9 b. L, q# p
- auth_username=邮箱登录名(如 info@xxxx.com) & S2 ]& f3 x' g1 P
- auth_password=邮箱密码(如 xxxxxx)
1 M0 l" B% L! }% g$ r - force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项
$ s u; R% \0 s5 y, O% p- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码 , a3 r2 l! g O) t7 B+ E/ ]
把前面的";"删除,即开启SSL安全登录选项即可 / p- D$ y6 E* } G
, C3 A/ k( V6 i
以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。
4 V! c, B. d3 w9 W* [3 ~0 x, S0 t' s9 n& V4 l' I8 Q
如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等
5 P6 P% _. ~! ]+ I. w( E7 D' i" ^
|
|