|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。
! O2 w* e; a) ?6 F; a2 c; |首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。 C% ]6 a0 w1 {2 b6 w6 U
然后打开php.ini文件,找到下面这段代码
, T7 t! x, O) w7 _- [mail function] * j( j o% o- o* o7 g: Z! Y X
- ; For Win32 only.
- {/ L B- W6 H - SMTP = localhost
) r2 `: q! h; }6 w/ m - smtp_port = 25
' C! ^4 k9 i6 h% ` - ; For Win32 only.
0 R. V/ t% c) r" D2 j - ;sendmail_from = me@example.com 0 {. m4 ~* A% P3 W
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
, O. N* s" |8 B9 b* X' Z& K - ; sendmail_path = "" 2 R7 K; X, Y2 n. b U0 ]/ r
- ; Force the addition of the specified parameters to be passed as extra parameters
0 g4 E5 F* H) _) Q6 g0 Z% @$ P! r - ; to the sendmail binary. These parameters will always replace the value of - ?- ~ n* U5 g
- ; the 5th parameter to mail(), even in safe mode.
7 `) R4 ], Q, a% F' c0 P - ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是 - C: o# n1 L6 m
- [mail function]
& H* j. q6 M2 S. H - ; For Win32 only. , q2 E4 T8 i/ j) Q9 E' h
- ;SMTP = localhost
9 J/ l3 g3 _: s* k$ j6 M8 y6 w; D - ;smtp_port = 25
8 I# W+ l' I a4 h7 N9 u* K: m& k - ; For Win32 only. & y' p5 H& m5 s& q" T' \- @8 @
- ;sendmail_from = me@example.com
: P3 x0 p" _& G4 f - ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
j [/ F- e! Z! o9 E7 Y - sendmail_path = "d:\php\sendmail\sendmail.exe -t" + `; A$ @/ M1 D! x' l
- ; Force the addition of the specified parameters to be passed as extra parameters ' Y \4 Q6 k( r9 I
- ; to the sendmail binary. These parameters will always replace the value of 1 E1 u6 a) t4 E' ]
- ; the 5th parameter to mail(), even in safe mode.
8 O6 p- w% g- B3 ^+ E8 A/ t5 B - ;mail.force_extra_parameters =
复制代码 # S6 f, `& M' q9 T. z1 |1 j
注意以上只需要开启sendmail_path即可,然后保存
$ S# M) h) z8 ]' J. P
# T& O1 K' U$ u# o& r接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项
, o5 l/ B7 T' r# X' F- smtp_server=smtp服务器地址(如 smtp.ym.163.com) % T) {. \0 o! x& ~* }
- auth_username=邮箱登录名(如 info@xxxx.com) ; q* g; P2 B# m+ ]' v$ Q
- auth_password=邮箱密码(如 xxxxxx)
1 ?* { H" ?, U1 ^ - force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项 ) k, @# R; V. H a$ X
- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码
: N+ R% {0 d2 b" S3 I把前面的";"删除,即开启SSL安全登录选项即可
9 j# X$ a# f7 N6 C d* z/ ]% d7 v$ m8 Q0 e
以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。 ) F( Z% O. q( n
& }6 Y$ f& p ?: \) w& B: s- e如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等
- q" G0 H/ p0 Y. v4 S& Q2 |7 a3 X
8 J+ `/ n) V7 g2 Q4 v$ x% P |
|