|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。- D- t2 }! c* K7 X: w* C: U
首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。
% ]# v% H0 Y" N- i$ w' ^. Q+ M然后打开php.ini文件,找到下面这段代码
, U) S/ z) s+ C- [mail function] - l! m7 i4 ], y2 h6 n
- ; For Win32 only. 6 Q% `- s; z4 f4 a
- SMTP = localhost
: s7 o! s4 b/ x4 ^( o - smtp_port = 25
( b8 Q# V# j0 F - ; For Win32 only. 3 [, n" a- T4 ^6 q2 p" l( r
- ;sendmail_from = me@example.com - W2 e- \1 ^' H' x1 x1 [3 w) J7 H/ b
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). , n) q) s# \0 J5 l
- ; sendmail_path = ""
5 c% }1 f; A4 k1 h - ; Force the addition of the specified parameters to be passed as extra parameters
( g) H) r% _3 O - ; to the sendmail binary. These parameters will always replace the value of
?$ e% f1 O( A) Z. u - ; the 5th parameter to mail(), even in safe mode.
$ B2 J3 M q ?- M# m& h - ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是
' C- _7 K$ Z, s+ b: `% g5 H Y- [mail function] " [% S3 k8 L z) C
- ; For Win32 only. 6 v7 `' d2 ?" R1 d/ s
- ;SMTP = localhost
, t3 f% u! L' e" Y$ i5 } - ;smtp_port = 25
* A- ~3 [. I* `7 a( M8 R: s" P: F - ; For Win32 only. . @: ]& b: L- J) y
- ;sendmail_from = me@example.com
! u5 K5 R9 Z3 O! n6 j6 k) N, y( @ - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). u' F6 ?1 m1 T Q
- sendmail_path = "d:\php\sendmail\sendmail.exe -t"
- T% q2 C1 r+ W: ^7 j" D0 Y7 g - ; Force the addition of the specified parameters to be passed as extra parameters 7 k. n! N$ @# |5 {
- ; to the sendmail binary. These parameters will always replace the value of 4 u Q8 i5 D0 g
- ; the 5th parameter to mail(), even in safe mode. . b, t6 y2 R& X7 b
- ;mail.force_extra_parameters =
复制代码
t4 v5 z3 F. d; T- S9 C5 R& i注意以上只需要开启sendmail_path即可,然后保存
" J; r7 G2 G- `8 j. V
1 d1 l0 @! p& M( @! x4 e接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项 ) |5 {: O' L6 Z* N
- smtp_server=smtp服务器地址(如 smtp.ym.163.com) * E$ y5 O/ z$ y% V7 U2 ]! B% r& K
- auth_username=邮箱登录名(如 info@xxxx.com) * f' @/ O$ N& L! f; M
- auth_password=邮箱密码(如 xxxxxx) / v N" Z/ S" R
- force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项
( @/ _& k" `( v p m( V3 Y- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码 # v$ q+ j4 e* v. O5 S
把前面的";"删除,即开启SSL安全登录选项即可
. g5 U5 S9 c* u3 j% J& Z8 S6 H( I! [5 J
以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。 & l+ e% L7 e# N. F3 D0 s' d; k3 l2 b
4 ]* U3 _. h0 Z8 g2 Y如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等
, _0 t$ K+ P# X$ f- U, h N
/ |" D" Z/ T. R, W# g |
|