|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。6 c6 v- ~ Y; e
首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。: l) N$ j8 q A& a X6 X
然后打开php.ini文件,找到下面这段代码
; W" i: L. Q4 j- U- [mail function]
9 I- g; J H# B; U9 O+ s - ; For Win32 only.
& w/ q% x% U/ e1 E8 B9 L - SMTP = localhost
# r: i& g- b' L% O - smtp_port = 25 # |: T3 P& t- D+ e6 V( ^+ Q
- ; For Win32 only. 3 o/ c9 ?0 d( K. @* V) R$ [+ _- t
- ;sendmail_from = me@example.com
( g( ^: y2 e9 {" z% z+ x - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). : ?9 ^/ m7 m! k
- ; sendmail_path = "" 6 W7 s6 e+ `! P: x" R
- ; Force the addition of the specified parameters to be passed as extra parameters 3 w" [+ r2 b9 t/ {' ^
- ; to the sendmail binary. These parameters will always replace the value of
2 T" H5 p. Z3 v8 `7 c. y- c5 L - ; the 5th parameter to mail(), even in safe mode. ' s4 t* u2 s5 P- G2 n
- ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是 6 w. r9 u9 x, k! i* e7 c
- [mail function]
5 ?/ p2 c: `% k- P- O - ; For Win32 only. ( O3 r" {) ]# Y( J9 C
- ;SMTP = localhost
g7 c2 i; x! A$ H9 y# p - ;smtp_port = 25 ) w8 d% I0 R$ C1 D7 z% o$ I8 y9 E
- ; For Win32 only.
3 F: [( w. `0 C0 O& x/ m - ;sendmail_from = me@example.com
2 a8 `( t- \& q+ _4 z8 A - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). 3 ~9 f0 X) V; i6 T1 \9 Q: d
- sendmail_path = "d:\php\sendmail\sendmail.exe -t" 5 g1 s" J( K- r! q. U6 z
- ; Force the addition of the specified parameters to be passed as extra parameters
2 \4 J7 {0 r7 G1 Q7 g( c - ; to the sendmail binary. These parameters will always replace the value of ! o0 i8 O% a0 c2 X: q
- ; the 5th parameter to mail(), even in safe mode.
! L) L4 O: c. {- f% ] - ;mail.force_extra_parameters =
复制代码 ; B0 E0 D8 H. q3 _5 ]* @
注意以上只需要开启sendmail_path即可,然后保存
% ~" E& H/ Z# E5 k$ }
8 \- |/ N q2 D$ C% T+ l接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项 , x6 ^/ W. k7 O9 k
- smtp_server=smtp服务器地址(如 smtp.ym.163.com)
, { ^& L- O, F - auth_username=邮箱登录名(如 info@xxxx.com) , o$ `- W1 ?% b" M- c- G
- auth_password=邮箱密码(如 xxxxxx) ) a' v( m( Q8 j0 p; h4 z& w4 P
- force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项 2 [: X9 @2 F0 Y" `! \
- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码 ! r; P3 Q+ n5 o9 I) O R' c
把前面的";"删除,即开启SSL安全登录选项即可 * W$ X3 k. B2 D6 t1 V- _ N
+ t) c& z! h/ h. p- a以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。
- v% t. k+ n. V( ~5 N; @
& n& Y% a+ S; u! z如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等 1 h1 V1 j9 m3 V! u) H3 ?# z9 I
/ a+ K# W/ E1 D, m0 m0 P f
|
|