linux sendEmail工具的安裝使用
1、sendEmail的主頁http://caspian.dotconf.net/menu/Software/SendEmail/
下載地址wget http://caspian.dotconf.net/menu/Software/SendEmail/sendEmail-v1.56.tar.gz
2、安裝:
#tar -zxvf sendEmail-v1.56.tar.gz
#cd sendEmail-v1.56
#cp sendEmail /usr/local/bin
3、然後給確認確實它具有執行權限
ll /usr/local/bin/sendEmail
-rwxr-xr-x 1 root root 77882 11-03 14:23 /usr/local/bin/sendEmail
這樣程序就裝好了,使用也很簡單.直接運行sendEmail就會顯示詳細的用法
4、主要參數:
-f 表示from,發件人地址
-t 表示to,收件人地址
-s mail服務器域名
-u 主題
-xu 用戶名(@之前的)
-xp 用戶密碼
-m 純文本信息
-o message-file=/root/.. 發送文件中的內容
-a 發送附件 (-m,-o,-a可以同時使用)
5、實例:
sendEmail -u test -f $mail_fm -t $mail_list -s $mail_smtp -xu $mail_user -xp $mail_pwd -o $mail_type message-charset=utf-8 message-file=${tmpfile}
變量參考如下:
export mail_list='
[email protected],
[email protected],
[email protected],
[email protected],
[email protected]'
export mail_fm='
[email protected]'
export mail_smtp='smtp.139.com'
export mail_user='zhoh'
export mail_pwd='iandse@139com'
export mail_type='message-content-type=html'