搜索
查看: 18189|回复: 1

[网站] iis下php 通过 PHP 函数的 sendmail 发送的配置方法

[复制链接]
发表于 2012-9-2 08:29:24 | 显示全部楼层 |阅读模式
  最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。
+ ]! ]* @( u$ w2 O# ?2 o首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。
/ c3 k8 ?8 ]: h  c! p4 G* y0 \8 Q然后打开php.ini文件,找到下面这段代码8 Y( P( Z6 A. R) Q, ?
  1. [mail function] ! y3 v) q2 @8 E# A- S
  2. ; For Win32 only. % r/ U6 Z9 p/ S9 a3 d
  3. SMTP = localhost 2 V) x7 Q' }/ W  o. r; X
  4. smtp_port = 25 - z" g7 H* V1 R7 }! B  c7 s% W
  5. ; For Win32 only.
    ( j( u4 z- q8 M+ A6 q
  6. ;sendmail_from = me@example.com ! l+ g$ ^, b; C$ C; I
  7. ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
    # f  j$ s- B: [7 {
  8. ; sendmail_path = ""
    4 I  A+ e- {$ R' H2 L  E, e7 _
  9. ; Force the addition of the specified parameters to be passed as extra parameters
    & F# B' i" {# q( s
  10. ; to the sendmail binary. These parameters will always replace the value of . }& V7 \0 G" J$ T; k3 C3 Z
  11. ; the 5th parameter to mail(), even in safe mode.
    ) Y# x2 f6 X5 J1 s5 H, |( o
  12. ;mail.force_extra_parameters =
复制代码
默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是 $ ^( ?7 N) {$ [8 a/ ]" [
  1. [mail function]
    ( g) w) ^! ]9 r8 F3 b
  2. ; For Win32 only. 5 i# W# Y/ N& Y. x* D' n
  3. ;SMTP = localhost
    ( M) f( U5 z3 _, N% x! q0 p
  4. ;smtp_port = 25
    " {4 K0 e- b, Y# J2 F  i( R
  5. ; For Win32 only.
    2 e0 \" k* E) j6 [! N/ Y) k
  6. ;sendmail_from = me@example.com : O4 w8 w# O' j& K4 A' j
  7. ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
    ' G( F3 ^8 }& t- i8 V
  8. sendmail_path = "d:\php\sendmail\sendmail.exe -t"
    ( B, V, e  S- N% L8 X( L! l
  9. ; Force the addition of the specified parameters to be passed as extra parameters 7 ^3 w+ L* }7 U* s# e
  10. ; to the sendmail binary. These parameters will always replace the value of , ?2 R. l  @: `
  11. ; the 5th parameter to mail(), even in safe mode. / f+ z( M" i$ I+ Z, o3 h6 X
  12. ;mail.force_extra_parameters =
复制代码

- U+ V7 Y. ^/ _# ^7 V注意以上只需要开启sendmail_path即可,然后保存 ; h6 O- s, C! n* |) Q# |1 g5 l: D
2 u" \4 |, m0 l! C! T! ?: {5 ?
接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项
; @3 d* B7 i0 H  w- w
  1. smtp_server=smtp服务器地址(如 smtp.ym.163.com) 3 m9 l. h" p! T" z6 ~# j' _" C
  2. auth_username=邮箱登录名(如 info@xxxx.com)
    1 v2 l9 ~7 q# I9 ?; r( @# p
  3. auth_password=邮箱密码(如 xxxxxx)
    0 v3 ?9 d* b1 g; H* b: _
  4. force_sender=发件人地址全写(如 info@xxxx.com)
复制代码
另外还有一项 , a+ e% n. Q0 `( L
  1. ; auto = use SSL for port 465, otherwise try to use TLS
复制代码
$ w8 z: g3 e+ ?1 o
把前面的";"删除,即开启SSL安全登录选项即可 $ O% A% c: x1 u" [  T4 Y3 m8 A

: y  q; Y" F( H& D$ S( G以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。
% a# e( J6 b; p; r" A* X: i0 E0 @& z4 V0 o! z7 ~
如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等  4 N; F' @$ l+ A& D/ Y" w" n

# c/ Z9 o2 K& b, J/ H
回复

使用道具 举报

 楼主| 发表于 2012-9-2 10:24:28 | 显示全部楼层
http://www.phpmarker.com/1.html " ?' o$ A3 S* _# s
这个是另外一种方法,但是两种方法测试过,貌似都不管用
您需要登录后才可以回帖 登录 | 注册帐号

本版积分规则

热议作品
精华帖子排行
精彩推荐

虾皮社区,成立十年了!

站长自己也搞不懂想做个什么,反正就是一直在努力的做!

Copyright © 2007-2019 xp6.org Powered by Discuz

QQ|Archiver|手机版|小黑屋|虾皮社区 鲁公网安备 37021102000261号 |网站地图
返回顶部 返回列表