|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。# u; _4 B! G: L0 f4 ~& } Y" ~
首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。
- _; ?' _9 }% F4 I x( j然后打开php.ini文件,找到下面这段代码0 A$ Z7 l5 a1 x& `" _! k
- [mail function] ' o2 e, m4 P3 h4 g" q( O. G) D
- ; For Win32 only. $ J( a( g. Z$ m8 B8 m8 E
- SMTP = localhost 9 G+ g: D( h$ i9 g+ e9 W
- smtp_port = 25 6 ~. I: K' W$ E6 e* X
- ; For Win32 only. 4 l3 w7 N' R$ `! O- Y; l8 j
- ;sendmail_from = me@example.com
1 g- n% @) N" A1 ^ - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). % B T# |7 s% z0 t, z1 w" h# X& y( E
- ; sendmail_path = ""
; w! c# i0 b; N3 I6 d2 V - ; Force the addition of the specified parameters to be passed as extra parameters # m0 a: N9 W8 t2 n' M
- ; to the sendmail binary. These parameters will always replace the value of
9 @- x6 o( k3 G+ Q+ E# F - ; the 5th parameter to mail(), even in safe mode. - D6 b m5 _3 `* w
- ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是
1 Q' v6 e/ a3 [- [mail function] : k# \$ k3 F( P/ ^3 l
- ; For Win32 only. Q5 B- O: Y! q
- ;SMTP = localhost 2 F: h0 H9 U+ `3 H( ]
- ;smtp_port = 25
6 R1 H9 I. K+ e, | - ; For Win32 only. 1 O1 z( g& q) z- T: Y+ d$ C
- ;sendmail_from = me@example.com ' n8 @# A5 m9 u" M3 [1 q
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
; x5 D7 \# p; ]9 d+ B3 _2 f2 K6 k4 G - sendmail_path = "d:\php\sendmail\sendmail.exe -t" ; A( W8 ~ g0 `; v6 S$ Z3 J0 A
- ; Force the addition of the specified parameters to be passed as extra parameters
; |' U! ~" L2 P, j1 m4 V4 y - ; to the sendmail binary. These parameters will always replace the value of 1 o* Q7 T; E! o
- ; the 5th parameter to mail(), even in safe mode. 2 l. P: o) n. e" X: J% k
- ;mail.force_extra_parameters =
复制代码
) v8 i8 R7 t4 p6 V% `0 J/ a5 v注意以上只需要开启sendmail_path即可,然后保存 ) f, g8 z9 `! j* _$ [) I7 K) }% W
- x5 P$ D _4 n# Z接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项
' [) Q3 Q' X9 W1 D: S0 j4 U- smtp_server=smtp服务器地址(如 smtp.ym.163.com)
. f9 }/ y# T8 G, l1 n+ G - auth_username=邮箱登录名(如 info@xxxx.com)
9 m0 j/ e( [$ F j! W( U# W - auth_password=邮箱密码(如 xxxxxx) . s4 Q' J: D+ v3 n
- force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项
7 I' s# E1 E5 c- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码
?/ D8 i6 `4 Y w# u把前面的";"删除,即开启SSL安全登录选项即可
# X4 o0 ?3 @. e- j% i
. {, k! m' |7 q- \- ~以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。 * ?7 _2 C" Z6 k! K3 x# `+ Z" o
) H- m; w" D7 u0 }2 ?, h+ f3 D如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等
* ^( l2 N3 n- ]4 k6 n1 T: `0 H6 I: R$ ~
|
|