|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。( Q1 t/ X9 U! L% x4 S
首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。( F8 v4 Q% M7 `, v9 g# a: p x+ U
然后打开php.ini文件,找到下面这段代码
1 {1 M* t. M; H6 V2 Z5 c2 Z- [mail function] 7 v% t" B4 a! c4 [0 f5 T1 r5 R
- ; For Win32 only.
4 ~$ e' x# [& `) y( d - SMTP = localhost
( @' m) f/ `- v# l( l% w$ Q - smtp_port = 25
$ F$ D4 e1 u: } {: M; ? - ; For Win32 only.
. u& i8 ^5 N# Y - ;sendmail_from = me@example.com ; e7 H2 z0 O: U! U9 k
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). * b+ D/ \) L6 c5 U h6 o
- ; sendmail_path = ""
* R6 P- T/ C/ h8 p- t# o! l0 ~- U - ; Force the addition of the specified parameters to be passed as extra parameters . _0 a# ]7 f$ o' ~8 a
- ; to the sendmail binary. These parameters will always replace the value of
- X o' A! p$ M' J, `- y5 I - ; the 5th parameter to mail(), even in safe mode. 8 A9 m0 M9 M7 k- C
- ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是 9 M6 Q- Q' g: ~! q! [) s6 U# W) V
- [mail function]
4 } g% `: O- h" w: k - ; For Win32 only.
0 y9 i; U$ l$ H. A - ;SMTP = localhost
. F- L' K; \4 L - ;smtp_port = 25
. R; c9 F& @2 H, u* X5 R E9 j - ; For Win32 only. ' f, c2 A$ W% H- Z6 f
- ;sendmail_from = me@example.com # Y+ O0 z1 g1 P2 W2 D+ h/ h
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
! A" Q5 M! D3 H+ [7 T - sendmail_path = "d:\php\sendmail\sendmail.exe -t" 4 ? _1 P6 o8 \. s9 \( v; y% l
- ; Force the addition of the specified parameters to be passed as extra parameters
I: t( r6 \; \/ D* |' k - ; to the sendmail binary. These parameters will always replace the value of
" }7 L7 j- f: N( {5 h9 c4 k - ; the 5th parameter to mail(), even in safe mode. 7 h7 _4 ?. k @" X+ I5 L
- ;mail.force_extra_parameters =
复制代码
! w0 c0 E! m1 T+ |$ D1 {+ R注意以上只需要开启sendmail_path即可,然后保存
r8 Y' L: j: \# g n
$ i0 O: T4 S2 @0 J Y+ w2 T- V接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项 ; d1 j; E' A4 M% o1 p+ E( x
- smtp_server=smtp服务器地址(如 smtp.ym.163.com) $ A1 D$ |/ I% R/ M) e+ Y
- auth_username=邮箱登录名(如 info@xxxx.com)
) F! N* n+ D2 ~% V. l- ~ - auth_password=邮箱密码(如 xxxxxx)
3 |$ V% s: e+ o - force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项 : U3 D7 a7 r6 ~, l) u
- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码 & }& _/ ^9 P' K& }% \3 J: ~
把前面的";"删除,即开启SSL安全登录选项即可
0 D- ~; v& c" S2 d5 ]
% b/ t: N0 ~% z. T- G以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。 . v4 n2 u/ y* e
: J9 r) g& o) ?
如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等
Q' J0 D; Y, F7 z% |: a' G$ \# I d) U0 o9 F$ _4 p3 d2 S' d
|
|