|
|
最近研究uchome,使用在线发邮件的功能,但是测试了"通过 PHP 函数的 sendmail 发送(推荐此方式)"怎么都没用,因为本人现在用的是iis+php环境,怎么调试都没有用,经过研究之后搞定,分享一下教大家在自己服务器上配置sendmail。很多php的网站例如Discuz的论坛和各种phpCMS的网站都用到。
! \3 C- K5 H% u6 ~0 H/ |$ e9 O首先你需要先到从http://glob.com.au/sendmail/下载sendmail.zip文件,点此可以直接下载噢,然后把它解压到如D:\php\sendmail\目录下。. A' m- ?2 G9 f0 k" G$ x
然后打开php.ini文件,找到下面这段代码
! s) B& l/ d& d5 A! K( @' v- [mail function]
" d7 k6 S& t' m- v+ Z1 a. w% [" G" ` - ; For Win32 only.
7 G- N+ q3 o+ D$ f& q7 o7 o - SMTP = localhost 0 f/ O- U4 i4 L! N1 Z
- smtp_port = 25 0 ^: M! j! X9 F" u
- ; For Win32 only.
( F6 g1 L1 _) H/ N( R - ;sendmail_from = me@example.com Z$ E1 W, ~" _! U& S$ g
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). 1 d! F( N! p3 B1 u) R% r+ Q M
- ; sendmail_path = "" # b9 a- ^# m, s2 ^
- ; Force the addition of the specified parameters to be passed as extra parameters
+ c0 f4 ~" B1 G. m% D& T - ; to the sendmail binary. These parameters will always replace the value of
+ e: [4 ~0 K# y+ V5 T! b- l - ; the 5th parameter to mail(), even in safe mode.
2 X) \2 T: L$ H! v - ;mail.force_extra_parameters =
复制代码 默认情况下是以本机做为邮件服务器,这里我们需要借用sendmail来发送邮件,用sendmail来配置如用qq、163的邮箱来发送(一般都是以这种方式)所以我们需要把所有的选项都注销,即把SMTP = localhost和smtp_port = 25前面加上";"然后把sendmai_path=""前面的";"删掉,改为sendmai_path="d:\php\sendmail\sendmail.exe -t",改完后的即是 ; k( B% M: p+ Z+ m; ~
- [mail function]
3 p) A( Y6 `9 ? - ; For Win32 only.
1 X5 c6 O( C1 \& r, Y - ;SMTP = localhost ( |3 T6 {4 K! g- X; h
- ;smtp_port = 25 ) n! x4 m+ E4 ~9 w8 v
- ; For Win32 only.
{$ ?5 r' f& z: r. i+ H - ;sendmail_from = me@example.com & e( i) b* l6 [/ }
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
. r K r- i( F* }9 U3 Q0 k+ ? - sendmail_path = "d:\php\sendmail\sendmail.exe -t" 3 j& D$ Y' c4 X% o- ]0 r
- ; Force the addition of the specified parameters to be passed as extra parameters
" Z5 _& z t9 W c' P: Q - ; to the sendmail binary. These parameters will always replace the value of
( v: h2 Q# c h0 c' c/ n6 v+ S - ; the 5th parameter to mail(), even in safe mode.
7 h- k% n! s! q1 R o0 R5 I( } - ;mail.force_extra_parameters =
复制代码
$ E$ e& R( [/ G7 i5 t注意以上只需要开启sendmail_path即可,然后保存
- e1 L( R# }& D9 | F' X- ]0 a6 `) ]% h# G
接着修改sendmail目录下的sendmail.ini文件,主要填的内容有以下几项 1 T. g) Z5 u4 a8 K# K, A) z
- smtp_server=smtp服务器地址(如 smtp.ym.163.com)
# M# j2 v( t8 J7 V. t: [) ~2 _ - auth_username=邮箱登录名(如 info@xxxx.com)
0 R: W7 s( Q0 k! D3 ^( N: z - auth_password=邮箱密码(如 xxxxxx)
2 X, N- w# q% e- E& u7 v - force_sender=发件人地址全写(如 info@xxxx.com)
复制代码 另外还有一项
$ A0 C7 `" @7 m9 c* l- ; auto = use SSL for port 465, otherwise try to use TLS
复制代码
0 B8 }7 S* H) q把前面的";"删除,即开启SSL安全登录选项即可
! q, a& v! O O1 V! ~) E
: n6 f1 e/ X) p% l( d以上四项正确填写修改完成后保存,然后重启IIS即可正常使用。 $ o8 V9 J) [9 H) t, q+ ~6 x
3 J; \$ Q) a _' v2 {
如果不能发送邮件,检查下端口是不是被屏蔽了,杀毒软件是不是设置了禁止发送邮件等
) h9 L6 k2 J) p8 |' q4 |+ l
. E% o- J8 L1 b0 x |
|