|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。. B+ d: p2 ]' \) L" S" S
首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。
) |0 x1 B- A' K) @然后打开php.ini文件,找到下面这段代码% D+ k8 {2 \9 t- T
- [mail function]
( H; N% X* a3 x, w1 ] - ; For Win32 only.
- a& J! e& i3 G0 J" G. J$ l _ - SMTP = localhost
% E G E5 v" q' U - smtp_port = 25 5 i, W( j, U% V$ d1 D
- ; For Win32 only.
( \$ X* R% \ x* q - ;sendmail_from = me@example.com
% ?1 V3 R; D3 E- {- C* d) h - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). 8 L% j! o. Z: |( r6 }5 c7 e
- ; sendmail_path = ""
; J( X i: P: b; [$ P, Q. h - ; Force the addition of the specified parameters to be passed as extra parameters * e0 Z/ z: d8 |8 ~! Y; Z6 V1 [( ?
- ; to the sendmail binary. These parameters will always replace the value of
2 ~- k2 J C% k( L - ; the 5th parameter to mail(), even in safe mode. ; K" A& G! k* I' b
- ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是 0 y! i2 O" m3 A: M
- [mail function]
- t" ~7 L+ Y% b9 C" s8 V3 I1 s$ B - ; For Win32 only. 9 h$ w' q! o; a, E! H
- ;SMTP = localhost
. F! s0 y# p; U% p+ Z - ;smtp_port = 25
0 r5 S' z/ a0 w - ; For Win32 only.
$ L6 R0 ^* q, P, L# A - ;sendmail_from = me@example.com 5 p% o1 j( \9 q [
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). 7 t. w9 n( l, O! S& C# d4 J* W% G
- sendmail_path = "d:\php\sendmail\sendmail.exe -t"
! {; l5 J9 R0 i3 B: N' p" d - ; Force the addition of the specified parameters to be passed as extra parameters J7 b( p; \/ T( W: `8 a" k+ T) r
- ; to the sendmail binary. These parameters will always replace the value of 5 {; o& \5 D4 b; `5 v, E, ? L
- ; the 5th parameter to mail(), even in safe mode.
5 |- O$ u8 ~2 e$ H; V - ;mail.force_extra_parameters =
复制代码 5 B6 P) G" P/ D' h% h/ N) u! l
注意以上只需要开启sendmail_path即可,然后保存
' Z: f2 H8 s3 g, ^4 \ ^9 H
) y' m. r* ~& s' T接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项
* i* E5 i6 h' C- smtp_server=smtp服务器地址(如 smtp.ym.163.com)
3 x9 r; o. t# ^7 M7 |0 _ u) @3 N+ R: P - auth_username=邮箱登录名(如 info@xxxx.com)
7 A6 Z9 ]& `- X2 S - auth_password=邮箱密码(如 xxxxxx) , L& k: Y& J& e8 z# k" ^8 F( u
- force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项
1 O N1 E4 R4 x/ S- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码 , j2 o3 w5 ^9 @: c8 b/ ~
把前面的";"删除,即开启SSL安全登录选项即可
0 M2 c% K2 _; X/ C$ C; |! [. {/ |/ R& U" R
以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。 0 Q D6 j* t( j( ~) k9 l
" t' W8 x# P7 |* \! C5 V
如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等
) H! H2 {. t2 z9 M& P; t9 ~+ ^1 g; J; M& r7 U. @% s! |5 x" S
|
|