运维部落

首页 > Linux, 解决方案 > 在命令行中使用sendmail 发送邮件

在命令行中使用sendmail 发送邮件

2013年10月4日

在命令行中使用sendmail命令可以很好的测试是否服务器能正常发送邮件。

1
2
3
4
5
6
7
8
9
10
sendmail -t <<EOF
From: Mail testing <vps12com.test@gmail.com>            //从哪里发出
To: vps12com.test@gmail.com                                       //发给谁
Cc: vps12com.another@gmail.com                                     //抄送给谁
Bcc: vps12com.test.another@gmail.com                                   //暗送给谁
Subject: 邮件测试                                                  //标题
———————————-                                        //内容
测试邮件内容
———————————
EOF

注:-t 这个参数是一定要加的,否则发送不出去。

本文的评论功能被关闭了.