|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。! F4 `- j) V6 n; ], m( c' I
首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。
. b, I0 }! J; O. S然后打开php.ini文件,找到下面这段代码1 y" e4 G6 v8 a/ _1 t
- [mail function]
3 K& Y) {, k: D0 O0 C K8 [6 M - ; For Win32 only.
], G. K8 |- z$ R$ e" a! v4 e9 Z - SMTP = localhost
& K3 `- T8 ]& J; @" y$ d - smtp_port = 25
* h0 r. B& Q; `% s$ E" v - ; For Win32 only.
! K, h. a& m' o: a9 l4 s: x - ;sendmail_from = me@example.com
* B/ {7 ?% o- f; J3 r - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). ! K. t; D6 G" _6 P0 U6 \
- ; sendmail_path = ""
$ C5 E7 U# J3 }" u% r; n - ; Force the addition of the specified parameters to be passed as extra parameters 2 ~ ?5 E# W6 V- W) Y5 t
- ; to the sendmail binary. These parameters will always replace the value of , d7 e' }! }; G) e% E+ l8 _
- ; the 5th parameter to mail(), even in safe mode.
: Y9 o' ?9 `. V3 y3 W6 z - ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是
1 m! E& J. Z0 }( K# x- [mail function]
( z+ f: ^7 f: B% F1 h' a6 J" Z1 Q/ S - ; For Win32 only.
7 P* |6 o$ J( e- \& p& D- y - ;SMTP = localhost
& ?/ V! W+ i3 N( Z; l - ;smtp_port = 25
! N/ y/ a8 M- B/ |. v - ; For Win32 only.
8 q. l+ d8 T3 E3 H1 b' U2 s& I - ;sendmail_from = me@example.com
4 e6 w" W& ?; a: n+ X - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). % ]7 Y7 ?1 o& A y
- sendmail_path = "d:\php\sendmail\sendmail.exe -t"
: [) ^8 U: Y ?3 N* h" G7 J7 } - ; Force the addition of the specified parameters to be passed as extra parameters
) P* W3 P+ E2 ]2 O |, ^ - ; to the sendmail binary. These parameters will always replace the value of
6 r! d" }9 G& N! ]/ i( J M8 } - ; the 5th parameter to mail(), even in safe mode.
2 N* M+ p: k% X& x - ;mail.force_extra_parameters =
复制代码 + g1 y$ R: A) P- p
注意以上只需要开启sendmail_path即可,然后保存
' Y2 k4 A2 i5 y3 b& u" u3 t. M1 z* m- T, {) U. T
接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项 $ `5 F# Q8 ~1 n: j1 o
- smtp_server=smtp服务器地址(如 smtp.ym.163.com)
. [! ^ I, ?0 e: a - auth_username=邮箱登录名(如 info@xxxx.com)
G" h1 c( g; ?4 u% F: p5 h7 m" x - auth_password=邮箱密码(如 xxxxxx)
: T+ D# V! k9 E8 [9 a - force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项
+ O0 i. S+ A* S+ p9 o- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码
1 f+ }' G' i. m把前面的";"删除,即开启SSL安全登录选项即可
2 `3 U/ r+ \. m1 [" ?( I( v
) V7 `% w" x! `以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。
! O# }% \ B9 A) z) a
9 u8 N' s+ f1 p5 z$ a g0 W如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等
( {7 k& {) `4 s) q: H
0 l' l' t& R% V! X1 t0 K' o |
|