|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。+ N5 z! l( U: v
首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。: _" t" Y; R" |' O
然后打开php.ini文件,找到下面这段代码* J( ~ S& r2 Q
- [mail function] 2 R$ J7 y. T, a1 F8 x. h% J
- ; For Win32 only.
3 i9 z3 [# c$ R- g: a - SMTP = localhost " C L z( w$ T1 q( Y. p# ^. D
- smtp_port = 25 ; `$ S) A) U6 k# j2 r7 j% F: z3 P2 `
- ; For Win32 only.
b" t$ S+ O9 z; H* ^( F - ;sendmail_from = me@example.com
& R# n' i/ R5 e( T - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). ( R, X. H8 w" _3 _# }' X
- ; sendmail_path = ""
$ o. Z; ^1 u6 V - ; Force the addition of the specified parameters to be passed as extra parameters
& A: o5 Q* x; N8 k) | - ; to the sendmail binary. These parameters will always replace the value of : B+ I0 ~: ]3 _
- ; the 5th parameter to mail(), even in safe mode. " m# R# q4 ^6 K* S2 q; D' L
- ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是 , h; k5 Y: W9 t
- [mail function] , l8 G9 c* R9 ^' k# P8 s
- ; For Win32 only.
0 _ J. q8 ?% j7 s G2 @9 ^ - ;SMTP = localhost ! M% g+ Y4 o+ W2 f% o; k
- ;smtp_port = 25 8 B0 S+ T# E+ q/ E H$ m8 E
- ; For Win32 only.
2 K# G( x: I6 ~# ]3 t - ;sendmail_from = me@example.com ) F* Q8 `" L+ R1 ~3 |. d
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
) N& ^ M, r/ O3 c: m- @" \7 G9 f - sendmail_path = "d:\php\sendmail\sendmail.exe -t" . D) W8 H3 Z& f0 Q5 U# u
- ; Force the addition of the specified parameters to be passed as extra parameters ' m$ {% J. s* Z: j+ j
- ; to the sendmail binary. These parameters will always replace the value of 7 S# ^+ W! z q+ J0 _
- ; the 5th parameter to mail(), even in safe mode.
; G1 U* J: D F - ;mail.force_extra_parameters =
复制代码
0 }; `: K/ s7 S$ _& a. }注意以上只需要开启sendmail_path即可,然后保存
$ {5 _# j6 f* e$ {$ N" ], P# E* v/ o7 H" U% E
接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项 2 x# }9 E$ M( _! ~' [1 E% W0 S7 _
- smtp_server=smtp服务器地址(如 smtp.ym.163.com) 9 p4 i+ V0 d5 `1 T4 z% T8 R
- auth_username=邮箱登录名(如 info@xxxx.com) ! k A; I2 M2 o0 H( o) ]8 G7 V P
- auth_password=邮箱密码(如 xxxxxx)
7 C+ V; i% L) U' c5 U8 j7 ~& g* C - force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项
/ [; b5 ?/ G( w: z5 t1 j' ?1 @- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码 ( |* I* l, g F4 @( [7 I
把前面的";"删除,即开启SSL安全登录选项即可 0 u3 y$ s: P9 I& m7 e
2 L, [5 j3 B: G3 s8 P4 ~8 B0 C
以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。 , \( O: Q1 g) |4 t( V
0 l% `% x- U% y! G+ C0 S
如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等
* t U' Q: j: o) g! B0 y7 a6 O
# `( @$ V# X9 P) P |
|