|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。# Z ~; Y5 W5 u7 f! b
首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。0 \/ O% G1 r& Y% Q
然后打开php.ini文件,找到下面这段代码
; K& `3 N' \$ U- D- `0 R/ A- [mail function] 5 H' `+ @% A, D. H- F& p
- ; For Win32 only.
! _) N& D b% ~ - SMTP = localhost . ?# t. a! S c0 b- I- S+ g
- smtp_port = 25 % }7 i1 t" R, g @/ o! p9 D0 p5 T5 l% Y
- ; For Win32 only.
- m3 C {( |4 b5 E. [' W3 \& ?. A v - ;sendmail_from = me@example.com ! r; C$ h) {/ [5 x
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). # j. @ X! l! M1 c; \0 ^9 d/ a ~1 A
- ; sendmail_path = "" 6 s- g7 F6 n2 y1 e" d3 q
- ; Force the addition of the specified parameters to be passed as extra parameters
f3 H5 ?6 |- S2 J; `9 e% Q% C - ; to the sendmail binary. These parameters will always replace the value of
2 c2 J# d: B' T7 `9 D, }! }2 l - ; the 5th parameter to mail(), even in safe mode.
' p( F: s/ C% w4 n - ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是 # Q7 ]. m# f3 e3 S# c) v$ z% `
- [mail function] ) n; m1 g3 R1 x" Y. u
- ; For Win32 only. ) t% ]! a- m' _/ |6 A$ g8 ?
- ;SMTP = localhost $ v# N! p( y) }# v
- ;smtp_port = 25
# y4 x9 o9 Q% B9 }' x, B+ M2 h - ; For Win32 only. 8 U9 U q' `2 d# s* m& j" i
- ;sendmail_from = me@example.com
7 N/ `- N$ u1 i& h; Z1 A - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
# H7 g0 W ~& V* \( E0 \. a& F/ a - sendmail_path = "d:\php\sendmail\sendmail.exe -t"
. W3 V3 |' g0 B# w - ; Force the addition of the specified parameters to be passed as extra parameters 2 J: j6 f& M$ G: p
- ; to the sendmail binary. These parameters will always replace the value of ; i& D2 D! Z$ @, o/ `( B. k
- ; the 5th parameter to mail(), even in safe mode.
! a0 ~2 W% S/ I; v; ^, b" T - ;mail.force_extra_parameters =
复制代码
/ o& n4 W8 q- k: F ^注意以上只需要开启sendmail_path即可,然后保存
# \: H- m$ b! `' e$ [8 E1 g. x0 _% _+ X' c3 q% P! B
接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项
; _# k$ A4 n; ]5 ]7 I- smtp_server=smtp服务器地址(如 smtp.ym.163.com)
* S4 [' G2 ^/ {" o) o' `5 J7 i - auth_username=邮箱登录名(如 info@xxxx.com) 6 d. o$ C/ B' e! j6 q0 V
- auth_password=邮箱密码(如 xxxxxx) 5 j/ O/ _5 y2 e7 }" ~9 q9 i7 r
- force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项
1 g2 n3 R% W+ I% h6 Y' H9 A- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码 , c$ y7 x- q+ y) F0 L. E
把前面的";"删除,即开启SSL安全登录选项即可
# Y/ W) y* w" n5 Q$ j( T3 V1 |2 Z! p) t' |
以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。
" ~ S' ]7 h# S4 N( j/ B ]3 V" T- g' h6 H4 l0 Y
如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等
( J; s. U3 e4 d( G- a0 I, ?( p
) [& {' F @: d7 j8 I8 I- { |
|