|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。! F2 E9 C7 W# R9 g% t1 _
首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。6 T4 r2 L5 [; q8 c. w/ O
然后打开php.ini文件,找到下面这段代码# y6 G+ M x$ [, F$ I: J
- [mail function]
( D+ k; X8 r1 H; r/ q - ; For Win32 only.
+ z3 B6 b1 ~1 M) I - SMTP = localhost : N3 e8 ?! ]9 u$ i* V7 h
- smtp_port = 25 8 J0 Z) I7 w) m
- ; For Win32 only.
. S' [! @6 Y8 g - ;sendmail_from = me@example.com 0 z9 i, x; g0 S. f/ f# x) u
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). 4 Q" [+ \5 ]# j$ Y; S5 m% e5 e. j
- ; sendmail_path = ""
4 d# [- h$ |; l0 C, `- U' V - ; Force the addition of the specified parameters to be passed as extra parameters * v+ \8 l8 e- {* H# K9 }
- ; to the sendmail binary. These parameters will always replace the value of
4 z- x! u8 s; K; s0 ^2 O: O0 [! i6 L - ; the 5th parameter to mail(), even in safe mode.
# g0 B0 [. f [! Y - ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是 6 E: r1 T5 L" X( C9 f5 U ]
- [mail function] . J- q/ Y0 n% s+ Z) s! _
- ; For Win32 only. , h2 s& |0 ?/ i2 B+ K
- ;SMTP = localhost
3 c7 X/ C8 }( T- G. \8 j* u - ;smtp_port = 25
7 d3 q4 ~4 C# z. Q - ; For Win32 only.
. t! I) u% E' I+ l6 a" \# M/ e0 ` - ;sendmail_from = me@example.com / i" h9 Z- [- ?3 ?' I
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
! j d1 q% J! g; C. G% q( M: a - sendmail_path = "d:\php\sendmail\sendmail.exe -t"
' W0 b+ K8 g* ~) L/ _. I - ; Force the addition of the specified parameters to be passed as extra parameters 4 l' V% g' Y: [6 R- n `) m
- ; to the sendmail binary. These parameters will always replace the value of 6 b! Q0 g1 ~ I) u
- ; the 5th parameter to mail(), even in safe mode.
3 g& m# ?; a" d9 E - ;mail.force_extra_parameters =
复制代码 ' N6 Z5 N6 y- [- _. K* P
注意以上只需要开启sendmail_path即可,然后保存
. Y- m3 k. b3 Q/ O7 L) r% l: J( [5 O7 L! }! v+ N
接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项
2 Y, O1 z2 P8 ?7 ?' ]- smtp_server=smtp服务器地址(如 smtp.ym.163.com)
2 n9 ]/ T: m% E |+ q - auth_username=邮箱登录名(如 info@xxxx.com) : R4 v2 R3 H/ y
- auth_password=邮箱密码(如 xxxxxx) 3 ?: z+ \4 |+ f. M6 k4 j
- force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项 ; {& W3 }4 F8 s S
- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码
" R" t+ D( v5 t! B$ O! v3 c把前面的";"删除,即开启SSL安全登录选项即可
+ h, {% r& _' y1 `2 X6 K" p+ l9 I n0 L" }
以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。 $ q2 Y& C% b i8 s E6 I1 `+ e
" T3 j9 F, U; L如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等
/ t; \/ K5 A. l) n0 a; y3 u
+ V a7 z2 `+ [- S, V! [ |
|