|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。
4 R1 v! d6 t; z9 a首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。
/ o2 M4 p" z8 Z# I4 F3 p$ o然后打开php.ini文件,找到下面这段代码9 Q# H& {* h3 c. q
- [mail function] * g! Z* z7 R- ]6 B* @/ J
- ; For Win32 only.
7 z" z+ l* e7 C+ Z$ g3 j$ x - SMTP = localhost
0 t/ M6 C7 m- S/ @ U - smtp_port = 25
$ w" T! }) s2 c% |( D) g - ; For Win32 only.
1 [$ h5 Y8 o d5 i9 m- Q - ;sendmail_from = me@example.com + _* J# A' c$ H0 A
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
2 e* Y* J9 h3 C+ D' [/ U - ; sendmail_path = ""
. r/ ~& j& V+ Q! o$ h o1 r - ; Force the addition of the specified parameters to be passed as extra parameters ) @/ A2 P2 y" `. d c' X
- ; to the sendmail binary. These parameters will always replace the value of ! G% H. \6 H5 x, Q- Y# G
- ; the 5th parameter to mail(), even in safe mode. 4 Z) a( |9 q {; x
- ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是 + q& I+ t0 w a, A' _/ K
- [mail function]
+ e0 p2 r& f5 h1 q% e - ; For Win32 only.
: ~% `( n! Y7 u6 o. w - ;SMTP = localhost
3 B, @5 _& S& M v - ;smtp_port = 25
$ c2 ? k" \1 B9 S, [; g* Y - ; For Win32 only. 6 l+ b8 c0 p. A& w# P
- ;sendmail_from = me@example.com " N* F% }1 c; B* u& a
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). % w, T8 C! [ Y- B$ q: P; U8 t
- sendmail_path = "d:\php\sendmail\sendmail.exe -t" ) y) l$ W, h, V) x' B/ p
- ; Force the addition of the specified parameters to be passed as extra parameters
I, ^8 D3 y! J7 Y - ; to the sendmail binary. These parameters will always replace the value of ) V9 F% j% |8 R, ?# Y
- ; the 5th parameter to mail(), even in safe mode. 2 j3 M1 b1 W: ~6 O: _! x/ z
- ;mail.force_extra_parameters =
复制代码 4 J& n/ W1 u8 P* P
注意以上只需要开启sendmail_path即可,然后保存
9 I) D$ h" E# X% s( p( E1 L# `3 W- V. @. }) w, l4 t* k- z
接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项 7 r8 r k4 p' z- M |% ?! ?; B
- smtp_server=smtp服务器地址(如 smtp.ym.163.com) - U, m9 C v4 z+ ^) [0 l; x, a7 ?
- auth_username=邮箱登录名(如 info@xxxx.com)
) L6 F3 p5 @1 M0 u5 l$ s" B" H - auth_password=邮箱密码(如 xxxxxx)
f: ]$ A0 a) f2 I# L- a9 B - force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项 / Z/ c2 s* K) x, R# r: Y# R4 ^
- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码
! v3 ], V2 p4 Y) K! e' {把前面的";"删除,即开启SSL安全登录选项即可
* h! I* E2 Q J& |# p* b- _) D6 {' N. i7 R% \
以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。
! w6 X: C: `, i/ V& n; E8 }3 G' m* Q% Y) Q$ \) u
如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等 q, N, Z% m( F" o/ A
& I [3 v% N8 u, Z4 g
|
|