|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。1 A. e, h9 w; d
首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。7 ^# q6 l# p) k0 {: E4 P" @) P
然后打开php.ini文件,找到下面这段代码
. A! P7 X) W+ V- [mail function]
, E* v; R! D1 {# M' c - ; For Win32 only.
0 S3 ^- K5 N1 H8 ~4 b. U - SMTP = localhost
: N% r! F0 U$ d/ a; O - smtp_port = 25
: p: }0 o4 s6 n* p - ; For Win32 only.
( b: |5 v, T, @/ o0 j* Z& |( q7 j: Q - ;sendmail_from = me@example.com ; o' ]' E. ?! A; t6 O
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). . ]8 K) I' _2 x
- ; sendmail_path = "" ; \2 K0 ^, V- ]! R) C8 I) g
- ; Force the addition of the specified parameters to be passed as extra parameters
$ q( \; l& Q4 a' l6 @ - ; to the sendmail binary. These parameters will always replace the value of , J& L6 {& o& w3 P/ \, q8 h
- ; the 5th parameter to mail(), even in safe mode. ; q A* \# A2 b! G. k' _
- ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是
8 r# ? s7 M/ P2 n7 g' \3 u- [mail function] + x6 c" `( _$ s ~; I
- ; For Win32 only.
' n( z! r; H* w0 R - ;SMTP = localhost [0 K5 Y" o" p# b% E) g
- ;smtp_port = 25
& B+ n8 z) v& Z! R0 L4 l N I - ; For Win32 only. ! B* C& |. S1 ]! G W+ O
- ;sendmail_from = me@example.com
) S9 A u+ n& }2 Q4 {* k, r% _" `+ { - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). ) \3 r! \8 T+ m8 I6 r
- sendmail_path = "d:\php\sendmail\sendmail.exe -t" . h, L: r2 p" P$ I6 F9 r$ k
- ; Force the addition of the specified parameters to be passed as extra parameters
6 b- A/ y* B8 i3 v1 X) K- H - ; to the sendmail binary. These parameters will always replace the value of
8 b8 l: S* R$ @) l5 r* v - ; the 5th parameter to mail(), even in safe mode. _1 ~0 v( y$ f
- ;mail.force_extra_parameters =
复制代码
7 S5 C; L0 c% z8 E; z3 S: Z$ c注意以上只需要开启sendmail_path即可,然后保存
, i& B' M3 v& [. _& Y- T" g6 h* H% W. u% W2 O- r2 x7 X L
接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项 ( m$ A9 J# P8 n
- smtp_server=smtp服务器地址(如 smtp.ym.163.com)
6 Z# u5 ?0 N. P - auth_username=邮箱登录名(如 info@xxxx.com) 1 A U: K1 N. H4 A; i
- auth_password=邮箱密码(如 xxxxxx)
. {$ S) O* o: c5 F+ `& e) [ - force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项 ! k+ ], v/ E3 I- h. A
- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码
8 j+ F+ E* N8 `0 n把前面的";"删除,即开启SSL安全登录选项即可
6 Z7 k& `: [! s. C
" R+ Z9 X" H/ w3 K以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。 ' h: x: u$ [) d E# o8 v
" h2 r0 Q7 E* @9 \! n
如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等
& u' t# Q$ b0 \2 B$ g g5 |& y2 _/ ?3 n3 V E8 x' z
|
|