sendEmail是一個輕量級的MTA,有了它可直接用shell腳原本發郵件,可用於crontab任務、zabbix報警各類場合,沒必要搭建繁瑣的郵件服務。html
# wget http://caspian.dotconf.net/menu/Software/SendEmail/sendEmail-v1.56.tar.gz
# tar -xzvf sendEmail-v1.56.tar.gz
# mv sendEmail /usr/local/bin/shell
發送郵件服務器
# /usr/local/bin/sendEmail -f himail@163.com -t 123456789@qq.com \
-s smtp.163.com -u "郵件主題" -o message-content-type=html \
-o message-charset=utf8 -xu himail@163.com -xp 123456 -m "郵件內容"編碼
# /usr/local/bin/sendEmail -f himail@163.com -t 123456789@qq.com \
-s smtp.163.com -u "郵件主題" -o message-content-type=html \
-o message-charset=utf8 -xu himail@163.com -xp 123456 -m "郵件內容".net
命令說明:htm
/usr/local/bin/sendEmail 命令主程序
-f ttlsafrom@163.com 發件人郵箱
-s smtp.163.com 發件人郵箱的smtp服務器
-u "郵件主題" 郵件的標題
-o message-content-type=html 郵件內容的格式,html表示它是html格式
-o message-charset=utf8 郵件內容編碼
-xu ttlsafrom@163.com 發件人郵箱的用戶名
-xp 123456 發件人郵箱密碼
-m "郵件內容" 郵件的具體內容crontab
/usr/local/bin/sendEmail 命令主程序
-f ttlsafrom@163.com 發件人郵箱
-s smtp.163.com 發件人郵箱的smtp服務器
-u "郵件主題" 郵件的標題
-o message-content-type=html 郵件內容的格式,html表示它是html格式
-o message-charset=utf8 郵件內容編碼
-xu ttlsafrom@163.com 發件人郵箱的用戶名
-xp 123456 發件人郵箱密碼
-m "郵件內容" 郵件的具體內容get