|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。
, p0 U n) i# @0 C% n/ n+ `首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。
8 k- f' _3 J5 c, k% o4 W! e然后打开php.ini文件,找到下面这段代码
( s9 v& i/ N! K9 m) {9 T$ H; z/ B- [mail function]
, A1 M- S& L; ]! G6 \ - ; For Win32 only.
5 [, j% Z, u4 ?. w! I0 z - SMTP = localhost # h. V4 ^: O" \- k' _* P7 p: p
- smtp_port = 25
# s" j6 ~. m# L; h7 g - ; For Win32 only. 8 X4 k, t9 p& E; |7 d& G) N5 `
- ;sendmail_from = me@example.com 6 x6 R W* z) T j% G: x
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). ' G) ~# h) f$ N# t9 z
- ; sendmail_path = "" 3 z1 I; `1 C% [) c; o
- ; Force the addition of the specified parameters to be passed as extra parameters
" t& b: I- ]) I2 i8 x/ L$ r1 R" ` - ; to the sendmail binary. These parameters will always replace the value of - V$ I; {7 D0 A% q: f
- ; the 5th parameter to mail(), even in safe mode.
3 z" c' l- E" I: a/ z% n& o - ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是 8 _" P( }, w0 r# i% w9 T; b; X
- [mail function]
2 }( x# s" {5 k( _ - ; For Win32 only.
' m9 @" z6 g& b. r e5 y& g0 _ - ;SMTP = localhost
" V& ~, `: ^5 Y4 N: p - ;smtp_port = 25 : u$ p& l! P4 p/ m, T% W- s3 \( i
- ; For Win32 only. 3 Q8 S, E1 e1 a5 [9 r9 C- y
- ;sendmail_from = me@example.com
0 o! O; w( e' g, S- S - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). P8 j% X: A% A4 ]* t
- sendmail_path = "d:\php\sendmail\sendmail.exe -t" Y' e, ~+ o ~8 E" }" `" ~
- ; Force the addition of the specified parameters to be passed as extra parameters ! A7 P8 W! `9 j+ y. c, z- m
- ; to the sendmail binary. These parameters will always replace the value of 1 c+ R) b4 Y w
- ; the 5th parameter to mail(), even in safe mode.
1 w; ^! q& l/ E' Q% J - ;mail.force_extra_parameters =
复制代码 2 b7 ^/ ?& f5 e
注意以上只需要开启sendmail_path即可,然后保存
; _; l0 j4 y: q5 ~! ~
) P1 j* p$ F7 G3 g3 Z1 L5 E' G接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项 4 Y0 q- ~9 Y- Q: o( D. Z" `7 Y
- smtp_server=smtp服务器地址(如 smtp.ym.163.com)
, }! V" I) u* w6 D b, H1 q - auth_username=邮箱登录名(如 info@xxxx.com) 0 I8 o2 B& v# U8 ]
- auth_password=邮箱密码(如 xxxxxx) 5 w) I# r% C" W" F" D
- force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项 ) }( z9 @- n9 P5 |
- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码
0 X# B* X! _9 R) Z0 y: S把前面的";"删除,即开启SSL安全登录选项即可
( T0 r( t; Q6 R& W6 C7 l8 O! ?( j) h
以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。 $ j; H2 H) z$ R7 U) g
, F$ t9 _9 _8 \. w' G* Y+ y
如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等 ( W" u1 j$ {7 D3 `
: N( d' m( S* h/ F; p4 `
|
|