今天的文章里我們會講到一些使用Linux命令行工具來發(fā)送帶附件的電子郵件的方法。它有很多用處,比如在應(yīng)用程序所在服務(wù)器上,使用電子郵件發(fā)送一個文件過來,或者你可以在腳本中使用這些命令來做一些自動化操作。在本文的例子中,我們會使用foo.tar.gz文件作為附件。
有不同的命令行工具可以發(fā)送郵件,這里我分享幾個多數(shù)用戶會使用的工具,如mailx、mutt和swaks。
我們即將呈現(xiàn)的這些工具都是非常有名的,并且存在于多數(shù)Linux發(fā)行版默認(rèn)的軟件倉庫中,你可以使用如下命令安裝:
在 Debian / Ubuntu 系統(tǒng)
apt-get install mutt
apt-get install swaks
apt-get install mailx
apt-get install sharutils
在基于Red Hat的系統(tǒng),如 CentOS 或者 Fedora
yum install mutt
yum install swaks
yum install mailx
yum install sharutils
1) 使用 mail / mailx
mailx工具在多數(shù)Linux發(fā)行版中是默認(rèn)的郵件程序,現(xiàn)在已經(jīng)支持發(fā)送附件了。如果它不在你的系統(tǒng)中,你可以使用上邊的命令安裝。有一點(diǎn)需要注意,老版本的mailx可能不支持發(fā)送附件,運(yùn)行如下命令查看是否支持。
$ man mail
第一行看起來是這樣的:
mailx [-BDdEFintv~] [-s subject] [-a attachment ] [-c cc-addr] [-b bcc-addr] [-r from-addr] [-h hops] [-A account] [-S variable[=value]] to-addr . . .
如果你看到它支持-a的選項(-a 文件名,將文件作為附件添加到郵件)和-s選項(-s 主題,指定郵件的主題),那就是支持的??梢允褂萌缦碌膸讉€例子發(fā)送郵件。
a) 簡單的郵件
運(yùn)行mail命令,然后mailx會等待你輸入郵件內(nèi)容。你可以按回車來換行。當(dāng)輸入完成后,按Ctrl + D,mailx會顯示EOT表示結(jié)束。
然后mailx會自動將郵件發(fā)送給收件人。
$ mail user@example.com
HI,
Good Morning
How are you
EOT
b) 發(fā)送有主題的郵件
$ echo "Email text" | mail -s "Test Subject" user@example.com
-s的用處是指定郵件的主題。
c) 從文件中讀取郵件內(nèi)容并發(fā)送
$ mail -s "message send from file" user@example.com /path/to/file
d) 將從管道獲取到的echo命令輸出作為郵件內(nèi)容發(fā)送
$ echo "This is message body" | mail -s "This is Subject" user@example.com
e) 發(fā)送帶附件的郵件
$ echo “Body with attachment "| mail -a foo.tar.gz -s "attached file" user@example.com
-a選項用于指定附件。
2) mutt
Mutt是類Unix系統(tǒng)上的一個文本界面郵件客戶端。它有20多年的歷史,在Linux歷史中也是一個很重要的部分,它是最早支持進(jìn)程打分和多線程處理的客戶端程序之一。按照如下的例子來發(fā)送郵件。
a) 帶有主題,從文件中讀取郵件的正文,并發(fā)送
$ mutt -s "Testing from mutt" user@example.com /tmp/message.txt
b) 通過管道獲取echo命令輸出作為郵件內(nèi)容發(fā)送
$ echo "This is the body" | mutt -s "Testing mutt" user@example.com
c) 發(fā)送帶附件的郵件
$ echo "This is the body" | mutt -s "Testing mutt" user@example.com -a /tmp/foo.tar.gz
d) 發(fā)送帶有多個附件的郵件
$ echo "This is the body" | mutt -s "Testing" user@example.com -a foo.tar.gz –a bar.tar.gz
3) swaks
Swaks(Swiss Army Knife,瑞士軍刀)是SMTP服務(wù)上的瑞士軍刀,它是一個功能強(qiáng)大、靈活、可編程、面向事務(wù)的SMTP測試工具,由John Jetmore開發(fā)和維護(hù)。你可以使用如下語法發(fā)送帶附件的郵件:
$ swaks -t "foo@bar.com" --header "Subject: Subject" --body "Email Text" --attach foo.tar.gz
關(guān)于Swaks一個重要的地方是,它會為你顯示整個郵件發(fā)送過程,所以如果你想調(diào)試郵件發(fā)送過程,它是一個非常有用的工具。
它會給你提供了郵件發(fā)送過程的所有細(xì)節(jié),包括郵件接收服務(wù)器的功能支持、兩個服務(wù)器之間的每一步交互。
(LCTT 譯注:原文此處少了 sharutils 的相關(guān)介紹,而多了 uuencode 的介紹。)
4) uuencode
郵件傳輸系統(tǒng)最初是被設(shè)計來傳送7位編碼(類似ASCII)的內(nèi)容的。這就意味這它是用來發(fā)送文本內(nèi)容,而不能發(fā)會使用8位的二進(jìn)制內(nèi)容(如程序文件或者圖片)。uuencode(“UNIX to UNIX encoding”,UNIX之間使用的編碼方式)程序用來解決這個限制。使用uuencode,發(fā)送端將二進(jìn)制格式的轉(zhuǎn)換成文本格式來傳輸,接收端再轉(zhuǎn)換回去。
我們可以簡單地使用uuencode和mailx或者mutt配合,來發(fā)送二進(jìn)制內(nèi)容,類似這樣:
$ uuencode example.jpeg example.jpeg | mail user@example.com
Shell腳本:解釋如何發(fā)送郵件
#!/bin/bash
FROM=""
SUBJECT=""
ATTACHMENTS=""
TO=""
BODY=""
# 檢查文件名對應(yīng)的文件是否存在
function check_files()
{
output_files=""
for file in $1
do
if [ -s $file ]
then
output_files="${output_files}${file} "
fi
done
echo $output_files
}
echo "*********************"
echo "E-mail sending script."
echo "*********************"
echo
# 讀取用戶輸入的郵件地址
while [ 1 ]
do
if [ ! $FROM ]
then
echo -n -e "Enter the e-mail address you wish to send mail from:\n[Enter] "
else
echo -n -e "The address you provided is not valid:\n[Enter] "
fi
read FROM
echo $FROM | grep -E '^.+@.+$' > /dev/null
if [ $? -eq 0 ]
then
break
fi
done
echo
# 讀取用戶輸入的收件人地址
while [ 1 ]
do
if [ ! $TO ]
then
echo -n -e "Enter the e-mail address you wish to send mail to:\n[Enter] "
else
echo -n -e "The address you provided is not valid:\n[Enter] "
fi
read TO
echo $TO | grep -E '^.+@.+$' > /dev/null
if [ $? -eq 0 ]
then
break
fi
done
echo
# 讀取用戶輸入的郵件主題
echo -n -e "Enter e-mail subject:\n[Enter] "
read SUBJECT
echo
if [ "$SUBJECT" == "" ]
then
echo "Proceeding without the subject..."
fi
# 讀取作為附件的文件名
echo -e "Provide the list of attachments. Separate names by space.
If there are spaces in file name, quote file name with \"."
read att
echo
# 確保文件名指向真實(shí)文件
attachments=$(check_files "$att")
echo "Attachments: $attachments"
for attachment in $attachments
do
ATTACHMENTS="$ATTACHMENTS-a $attachment "
done
echo
# 讀取完整的郵件正文
echo "Enter message. To mark the end of message type ;; in new line."
read line
while [ "$line" != ";;" ]
do
BODY="$BODY$line\n"
read line
done
SENDMAILCMD="mutt -e \"set from=$FROM\" -s \"$SUBJECT\" \
$ATTACHMENTS -- \"$TO\" \"$BODY\""
echo $SENDMAILCMD
mutt -e "set from=$FROM" -s "$SUBJECT" $ATTACHMENTS -- $TO $BODY
** 腳本輸出 **
$ bash send_mail.sh
*********************
E-mail sending script.
*********************
Enter the e-mail address you wish to send mail from:
[Enter] test@gmail.com
Enter the e-mail address you wish to send mail to:
[Enter] test@gmail.com
Enter e-mail subject:
[Enter] Message subject
Provide the list of attachments. Separate names by space.
If there are spaces in file name, quote file name with ".
send_mail.sh
Attachments: send_mail.sh
Enter message. To mark the end of message type ;; in new line.
This is a message
text
;;
總結(jié)
有很多方法可以使用命令行/Shell腳本來發(fā)送郵件,這里我們只分享了其中4個類Unix系統(tǒng)可用的工具。希望你喜歡我們的文章,并且提供您的寶貴意見,讓我們知道您想了解哪些新工具。