|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。7 d7 w" c9 N, m4 R7 K- B0 w; ?
首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。
4 ?0 ^4 i7 F; b# u5 i然后打开php.ini文件,找到下面这段代码+ |' X8 H9 c% O6 f: b6 e- }
- [mail function]
3 B O$ n6 _! x, c3 R# t+ Z, m& l: B - ; For Win32 only. ' P" H, q& t. H2 }8 P
- SMTP = localhost , V6 i* L) \* ~0 K' q4 q4 n
- smtp_port = 25
' ?; w, u, a# P - ; For Win32 only.
! S. i; }6 X+ N - ;sendmail_from = me@example.com
4 `9 T' l- S4 }; I& Q. T - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). + u# q7 c6 J/ `. ~
- ; sendmail_path = "" ( \/ U" K/ |' E+ g6 y2 m7 W) S) \
- ; Force the addition of the specified parameters to be passed as extra parameters
' S3 _: ]# A' p - ; to the sendmail binary. These parameters will always replace the value of
; c) @4 F% j0 {; J- w - ; the 5th parameter to mail(), even in safe mode. & }8 X# a" G* t4 M! z1 z3 n
- ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是 0 [9 j6 [' R4 x$ F, ]- H
- [mail function]
' \4 D" I) b* _ - ; For Win32 only. 3 {1 q' c# w, p) K0 j( B/ }. w
- ;SMTP = localhost 4 G3 `! P4 I9 E8 L0 @: W2 v) T! T
- ;smtp_port = 25
, @+ y% C: c7 U$ o - ; For Win32 only.
& b: v2 T: v/ J7 Q. \, N+ ?/ O! z - ;sendmail_from = me@example.com ( g- k# S! ~: T( V
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). 2 A* }# P( ?+ p) U
- sendmail_path = "d:\php\sendmail\sendmail.exe -t" 6 ^4 h+ A3 A/ }) i8 Z |
- ; Force the addition of the specified parameters to be passed as extra parameters
d. Q) ^ ~% u) X6 @' V - ; to the sendmail binary. These parameters will always replace the value of 1 _+ U! E0 j) e K3 a
- ; the 5th parameter to mail(), even in safe mode.
' c) w( b/ @ l+ [ - ;mail.force_extra_parameters =
复制代码 2 k, O) b7 ?! J J; W$ w7 [" A
注意以上只需要开启sendmail_path即可,然后保存 % q4 r D' ?( s
: l' h9 g n: X/ J' x- w
接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项 3 a( S$ j0 W* R" Z0 r
- smtp_server=smtp服务器地址(如 smtp.ym.163.com) 9 S, t6 R; w8 b" Y L1 z0 {. x
- auth_username=邮箱登录名(如 info@xxxx.com)
: Y; f. i2 M' s K/ N - auth_password=邮箱密码(如 xxxxxx) ; d8 U4 I& o; C- m( R- M6 X9 u
- force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项
! Q4 w+ M3 ^7 A8 b1 c) t: a* x$ e- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码
; d8 X6 h/ {! g4 Y( a2 @4 P把前面的";"删除,即开启SSL安全登录选项即可 ' l8 M# z1 X2 K( v, r& ^0 ?
% a- C& j$ l- _9 M* ~
以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。
0 r% u! s" \- s+ Q
1 @) L" i) i2 e* I" M# Z如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等
5 k0 K* v% V6 w+ M+ H5 P p( Y& }4 X+ g# [: w
|
|