在linux下使用sendEmail发送邮件 |
不要和sendmail搞混掉了。用了sendEmail你将不会再用sendmail了. sendEmail是一个轻量级、命令行的SMTP邮件客户端。如果你需要使用命令行发送邮件,那么sendEmail是你最好的选择。 1,首先下载安装sendEmail wget http://caspian.dotconf.net/menu/Software/SendEmail/sendEmail-v1.56.tar.gz tar zxvf sendEmail-v1.56.tar.gz cd sendEmail-v1.56 mv sendEmail /usr/local/bin/ 调用/usr/local/bin/sendEmail就可以发送邮件了。 2,发送邮件 /usr/local/bin/sendEmail -f admin@21yunwei.com -t 705754153@qq.com -s mail.21yunwei.com -u "testsubject" -o message-content-type=html -o message-charset=utf8 -xu admin@21yunwei.com -xp xxxxx -m "test" 发送成功给以后会有以下提示: Jan 27 15:05:44 master sendEmail[5269]: Email was sent successfully! 如有发送失败,请根据提示进行查看,一般是落参数或者是写错了。 命令说明: /usr/local/bin/sendEmail 命令主程序 -f admin@21yunwei.com 发件人邮箱 -t 705754153@qq.com 收件人邮箱 -s mail.21yunwei.com 发件人邮箱smtp服务器 -u "testsubject" 邮件标题 -o message-content-type=html 邮件内容的格式 -o message-charset=utf8 邮件内容编码 -xu admin@21yunwei.com 发件人邮箱用户名 -xp xxxxxx 发件人邮箱密码 -m "我是邮件内容" 邮件具体内容 </span> 查看帮助请自行参考/usr/local/bin/sendEmail –help [root@Master sendEmail-v1.56]# /usr/local/bin/sendEmail --help sendEmail-1.56 by Brandon Zehm <caspian@dotconf.net> Synopsis: sendEmail -f ADDRESS [options] Required: -f ADDRESS from (sender) email address * At least one recipient required via -t, -cc, or -bcc * Message body required via -m, STDIN, or -o message-file=FILE Common: -t ADDRESS [ADDR ...] to email address(es) -u SUBJECT message subject -m MESSAGE message body -s SERVER[:PORT] smtp mail relay, default is localhost:25 Optional: -a FILE [FILE ...] file attachment(s) -cc ADDRESS [ADDR ...] cc email address(es) -bcc ADDRESS [ADDR ...] bcc email address(es) -xu USERNAME username for SMTP authentication -xp PASSWORD password for SMTP authentication Paranormal: -b BINDADDR[:PORT] local host bind address -l LOGFILE log to the specified file -v verbosity, use multiple times for greater effect -q be quiet (i.e. no STDOUT output) -o NAME=VALUE advanced options, for details try: --help misc -o message-content-type=<auto|text|html> -o message-file=FILE -o message-format=raw -o message-header=HEADER -o message-charset=CHARSET -o reply-to=ADDRESS -o timeout=SECONDS -o username=USERNAME -o password=PASSWORD -o tls=<auto|yes|no> -o fqdn=FQDN Help: --help the helpful overview you're reading now --help addressing explain addressing and related options --help message explain message body input and related options </span> |