|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。* K! ~5 q/ n% k" {! k
首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。% ]9 u" H9 [3 x! X
然后打开php.ini文件,找到下面这段代码
, E k6 Q; E0 g$ F h' T4 y- [mail function]
: l9 @6 ~" j1 {; ^- \ - ; For Win32 only. ! F( T! {* o* g, Y5 B' U
- SMTP = localhost
& J- ?" Z1 L) G# e" g7 v g2 D - smtp_port = 25
6 @! [0 X2 \( B8 z' U6 ] - ; For Win32 only.
# G1 X* r9 h1 ~" g9 k - ;sendmail_from = me@example.com
) }, p; ]7 ?- e" K6 O - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
, H- {9 M2 k V, H2 D) R( W - ; sendmail_path = "" 2 J/ p8 T, ^* L8 R
- ; Force the addition of the specified parameters to be passed as extra parameters
$ b/ Q& n1 t P5 x - ; to the sendmail binary. These parameters will always replace the value of
. R" }7 C% B5 r1 y$ @ - ; the 5th parameter to mail(), even in safe mode.
8 D2 g2 [( }4 V, Z0 Y& D( c0 } - ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是 ; Y! S' B5 i2 E# E$ V! X/ L# s0 U
- [mail function]
2 v& g4 b/ @# O1 t: U* t - ; For Win32 only. " O) ?# n2 E, `3 U( @6 a6 h
- ;SMTP = localhost
8 r4 G6 D% ]; E" u& T4 j - ;smtp_port = 25 2 u5 n8 H4 Q6 ?1 E
- ; For Win32 only. 9 W8 g' [& Y8 ^% O% v
- ;sendmail_from = me@example.com
$ V" D4 e1 j6 E' W* K- j - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). 3 p$ W( E, h+ O, U( H
- sendmail_path = "d:\php\sendmail\sendmail.exe -t"
% Y! N. P1 l. \1 w+ D( @/ n; { - ; Force the addition of the specified parameters to be passed as extra parameters 5 r% T5 V8 B f: f# M$ c* w
- ; to the sendmail binary. These parameters will always replace the value of
* \4 H- q) p& p: F+ E - ; the 5th parameter to mail(), even in safe mode. # E% V7 M( s! O
- ;mail.force_extra_parameters =
复制代码
( @, Z8 W+ R4 g# x# O& T注意以上只需要开启sendmail_path即可,然后保存
7 E, m; H9 _4 q4 T5 g$ Q/ A4 y W$ Y
接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项
3 V3 N6 d' u0 L: B) U( H2 D- f- smtp_server=smtp服务器地址(如 smtp.ym.163.com)
% U* e4 b/ |3 P. |0 A - auth_username=邮箱登录名(如 info@xxxx.com)
0 D) W8 H+ W! M$ b+ ] - auth_password=邮箱密码(如 xxxxxx) 8 V6 i) m* D, G o/ Q; A
- force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项
" Q8 Y0 z+ t# p6 A( _4 A- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码
, h) n! a; G4 Y9 F7 k! e7 t把前面的";"删除,即开启SSL安全登录选项即可
% G9 A, E& M6 ]$ L( B( i L
* S, m- H: n* d2 Y以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。 0 N- M/ e5 r% H! \7 R- W* q
3 ]# K+ c) F- w. t如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等
+ d1 V- R# T. t: o. x9 y, B) S' Z) ~% w3 E, G1 \( o. B! [% y
|
|