|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。; w+ x" P; J& ~
首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。
$ }, p% d% Y4 Y9 h: a- s. {6 A然后打开php.ini文件,找到下面这段代码
) Q0 C8 M7 @# M) W- [mail function]
9 v; |# Q/ w/ F+ r, a - ; For Win32 only.
: D% b' E# A4 [ - SMTP = localhost
) u5 Q) _7 l' |+ p! v - smtp_port = 25
|9 T- |" j) }) X* s2 f5 {' c. \' L - ; For Win32 only. 4 V2 i( y/ y1 L- D
- ;sendmail_from = me@example.com
1 W3 v+ E: L% _0 |; d6 \ - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). , w1 y4 }+ T$ P* X( V
- ; sendmail_path = ""
4 \: I, y+ o( I' R+ w3 [ - ; Force the addition of the specified parameters to be passed as extra parameters
9 t& a1 L$ A8 R - ; to the sendmail binary. These parameters will always replace the value of ; \" q; P% M* v* w' g N" @
- ; the 5th parameter to mail(), even in safe mode. / ~% R9 |: I, W3 V
- ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是
3 ]$ g! F h; B% r- ]! M- [mail function]
. [8 ]. o }5 x0 \ - ; For Win32 only.
: I4 u& u6 z3 q/ @+ z* }, _ - ;SMTP = localhost + q* W: T6 I2 V' K7 Q* c
- ;smtp_port = 25 # d) ^) y8 k; d4 t8 v; K# [8 J
- ; For Win32 only. / M! P% ?9 X& y: n) |1 t, f- k
- ;sendmail_from = me@example.com
" T& l+ y0 L+ Z, u1 \2 o" t - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
# ?! h# `0 T+ l& G. o+ |/ b - sendmail_path = "d:\php\sendmail\sendmail.exe -t" ) F8 s5 I3 e4 ]- y9 ?
- ; Force the addition of the specified parameters to be passed as extra parameters 1 @) C8 Z. t2 B+ h8 d- d
- ; to the sendmail binary. These parameters will always replace the value of
7 P4 L- l) {% B/ V/ m - ; the 5th parameter to mail(), even in safe mode. , [1 w5 ~/ y; I4 J* @
- ;mail.force_extra_parameters =
复制代码
$ ?! U; g+ e0 f! b注意以上只需要开启sendmail_path即可,然后保存 7 R9 z' T% I/ } E$ f9 q/ u
. `8 S3 Z; I4 l5 J( l
接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项 : e1 j% \" N# A, u
- smtp_server=smtp服务器地址(如 smtp.ym.163.com) 5 k' P+ G) {5 k4 W% R: ]
- auth_username=邮箱登录名(如 info@xxxx.com)
* D5 E/ K7 Z$ x4 |' h: ?& } - auth_password=邮箱密码(如 xxxxxx) , q/ e) B; t5 T1 S7 ^/ e# Y5 x4 p
- force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项
; i& b1 \; t3 z I) h: L0 c& G- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码
) o. ]/ V7 i8 r' r: b9 x5 n把前面的";"删除,即开启SSL安全登录选项即可
: O9 X8 _% R3 t7 Q6 Q
+ }7 T6 Y; S& a& m以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。 . o9 f0 }5 U1 y3 u
( e) p3 G1 h& w& D) V2 O
如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等
% Z0 g, h- ]# u0 W" I( H8 u
( I# c- c) H ?) ^' t |
|