使用文档:http://www.selfcai.com.cn/2012/08/1743.html
RESTful SMTP mod_sendmail 是老外在apache 上开发的.一个发邮件模块 使用方法简单介绍一下: 流程如下: 为了安装方便.我对spec 做了一些修改.下载地址如下 mod_sendmail-1.0.0-1.src.rpm 安装后.修改一下apache 的配置文件 httpd.conf [php] # protect against open relay Order Deny,Allow Deny from all Allow from 127.0.0.1 # simple configuration SetHandler sendmail SendmailName /usr/sbin/sendmail SendmailArguments -t -i [/php] 还有一点.加载动态库 [php] LoadModule sendmail_module modules/mod_sendmail.so [/php] 然后重启Apache 接着配置sendmail. 为了让sendmail 不反向查域名.要修改一下配置 # vim /etc/mail/sendmail.cf 找到 #O ResolverOptions=+AAONLY 这一行信息,并把它的注释去掉。 # /etc/init.d/sendmail restart 重启sendmail以后即可成功发送邮件。 测试使用mod_sendmail (本例中使用curl 发送post 请求) [php] curl -X POST -d "Apache mod_sendmail" -H "Content-Type: text/plain" -H "To: [email protected]" -H "From: [email protected]" -H "Subject: Apache mod_sendmail Usage Test" http://localhost/sendmail [/php] 查看一下邮件吧