sendEmail是一個輕量級、命令行的SMTP郵件客戶端。如果你需要使用命令行發送郵件,那么sendEmail是非常完美的選擇。使用簡單並且功能強大.這個被設計用在php、bash、perl和web站點使用。
以上是sendEmail的簡單介紹,千萬不要和sendmail搞混掉了。用了sendEmail你將不在喜歡sendmail了.
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 root@yunwei.com -t 123@qq.com -s mail.yunwei.com -u "testsubject" -o message-content-type=html -o message-charset=utf8 -xu root@yunwei.com -xp root -m "test"
發送成功給以后會有以下提示:
Jan 27 15:05:44 master sendEmail[5269]: Email was sent successfully!
如有發送失敗,請根據提示進行查看,一般是落參數或者是寫錯了。
命令說明:
- /usr/local/bin/sendEmail 命令主程序
- -f root@yunwei.com 發件人郵箱
- -t 123@qq.com 收件人郵箱
- -s mail.yunwei.com 發件人郵箱smtp服務器
- -u "testsubject" 郵件標題
- -o message-content-type=html 郵件內容的格式
- -o message-charset=utf8 郵件內容編碼
- -xu admin@yunwei.com 發件人郵箱用戶名
- -xp root 發件人郵箱密碼
- -m "test" 郵件具體內容
查看幫助請自行參考/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>