傳送電子郵件的4個Linux命令列工具
今天的文章裡我們會講到一些使用Linux命令列工具來傳送帶附件的電子郵件的方法。它有很多用處,比如在應用程式所在伺服器上,使用電子郵件傳送一個檔案過來,或者你可以在指令碼中使用這些命令來做一些自動化操作。在本文的例子中,我們會使用foo.tar.gz檔案作為附件。
有不同的命令列工具可以傳送郵件,這裡我分享幾個多數使用者會使用的工具,如mailx、mutt和swaks。
我們即將呈現的這些工具都是非常有名的,並且存在於多數Linux發行版預設的軟體倉庫中,你可以使用如下命令安裝:
在 Debian / Ubuntu 系統
apt-get install mutt apt-get install swaks apt-get install mailx apt-get install sharutils
在基於Red Hat的系統,如 CentOS 或者 Fedora
yum install mutt yum install swaks yum install mailx yum install sharutils
1) 使用 mail / mailx
mailx工具在多數Linux發行版中是預設的郵件程式,現在已經支援傳送附件了。如果它不在你的系統中,你可以使用上邊的命令安裝。有一點需要注意,老版本的mailx可能不支援傳送附件,執行如下命令檢視是否支援。
$ 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 主題,指定郵件的主題),那就是支援的。可以使用如下的幾個例子傳送郵件。
a) 簡單的郵件
執行mail命令,然後mailx會等待你輸入郵件內容。你可以按回車來換行。當輸入完成後,按Ctrl + D,mailx會顯示EOT表示結束。
然後mailx會自動將郵件傳送給收件人。
$ mail user@example.com HI, Good Morning How are you EOT
b) 傳送有主題的郵件
$ echo "Email text" | mail -s "Test Subject" user@example.com
-s的用處是指定郵件的主題。
c) 從檔案中讀取郵件內容併傳送
$ mail -s "message send from file" user@example.com < /path/to/file
d) 將從管道獲取到的echo命令輸出作為郵件內容傳送
$ echo "This is message body" | mail -s "This is Subject" user@example.com
e) 傳送帶附件的郵件
$ echo “Body with attachment "| mail -a foo.tar.gz -s "attached file" user@example.com
-a選項用於指定附件。
2) mutt
Mutt是類Unix系統上的一個文字介面郵件客戶端。它有20多年的歷史,在Linux歷史中也是一個很重要的部分,它是最早支援程式打分和多執行緒處理的客戶端程式之一。按照如下的例子來傳送郵件。
a) 帶有主題,從檔案中讀取郵件的正文,併傳送
$ mutt -s "Testing from mutt" user@example.com < /tmp/message.txt
b) 通過管道獲取echo命令輸出作為郵件內容傳送
$ echo "This is the body" | mutt -s "Testing mutt" user@example.com
c) 傳送帶附件的郵件
$ echo "This is the body" | mutt -s "Testing mutt" user@example.com -a /tmp/foo.tar.gz
d) 傳送帶有多個附件的郵件
$ 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服務上的瑞士軍刀,它是一個功能強大、靈活、可程式設計、面向事務的SMTP測試工具,由John Jetmore開發和維護。你可以使用如下語法傳送帶附件的郵件:
$ swaks -t "foo@bar.com" --header "Subject: Subject" --body "Email Text" --attach foo.tar.gz
關於Swaks一個重要的地方是,它會為你顯示整個郵件傳送過程,所以如果你想除錯郵件傳送過程,它是一個非常有用的工具。
它會給你提供了郵件傳送過程的所有細節,包括郵件接收伺服器的功能支援、兩個伺服器之間的每一步互動。
(LCTT 譯註:原文此處少了 sharutils 的相關介紹,而多了 uuencode 的介紹。)
4) uuencode
郵件傳輸系統最初是被設計來傳送7位編碼(類似ASCII)的內容的。這就意味這它是用來傳送文字內容,而不能發會使用8位的二進位制內容(如程式檔案或者圖片)。uuencode(“UNIX to UNIX encoding”,UNIX之間使用的編碼方式)程式用來解決這個限制。使用uuencode,傳送端將二進位制格式的轉換成文字格式來傳輸,接收端再轉換回去。
我們可以簡單地使用uuencode和mailx或者mutt配合,來傳送二進位制內容,類似這樣:
$ uuencode example.jpeg example.jpeg | mail user@example.com
Shell指令碼:解釋如何傳送郵件
#!/bin/bash FROM="" SUBJECT="" ATTACHMENTS="" TO="" BODY="" # 檢查檔名對應的檔案是否存在 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 # 確保檔名指向真實檔案 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 ;;
總結
有很多方法可以使用命令列/Shell指令碼來傳送郵件,這裡我們只分享了其中4個類Unix系統可用的工具。希望你喜歡我們的文章,並且提供您的寶貴意見,讓我們知道您想了解哪些新工具。
相關文章
- 4個可以傳送完整電子郵件的命令列工具命令列
- 在Linux命令列傳送電子郵件Linux命令列
- 命令列郵件傳送工具命令列
- 在Linux命令列傳送電子郵件附件的兩種方法Linux命令列
- 如何傳送電子郵件到別人郵箱?電子郵件傳送的方法
- 用oracle傳送電子郵件Oracle
- Linux 命令列傳送郵件的 5 種方法Linux命令列
- 在 Linux 命令列傳送郵件的 5 種方法Linux命令列
- 使用Linux命令傳送郵件Linux
- 電子郵件協議及GO傳送QQ郵件協議Go
- 如何用 Linux 命令列發電子郵件Linux命令列
- 電子郵件哪個好用?口碑不錯的郵件傳送平臺推薦!
- SpringBoot實現傳送電子郵件Spring Boot
- C# 傳送電子郵件原始碼片段C#原始碼
- 在VC中呼叫預設的電子郵件程式傳送郵件 (轉)
- Linux基礎命令---sendmail傳送郵件LinuxAI
- Laravel 佇列傳送郵件Laravel佇列
- SpringBoot傳送電子郵件(附原始碼)Spring Boot原始碼
- 從Oracle9i中傳送電子郵件Oracle
- 利用SQL Server 2005資料庫郵件傳送電子郵件SQLServer資料庫
- 使用linux的mail命令傳送html格式的郵件LinuxAIHTML
- [linux]linux傳送郵件Linux
- 怎麼傳送電子郵件營銷?關鍵在於這4點!
- .net類庫中傳送電子郵件的方法總結
- 【陳晨】ASP.NET 2.0中傳送電子郵件ASP.NET
- 在.NET框架應用程式中傳送電子郵件框架
- Java實現QQ郵件傳送郵件工具類Java
- 郵件的傳送
- 如何使用ABAP傳送帶有PDF格式附件的電子郵件
- 在ASP.NET中傳送電子郵件的例項教程ASP.NET
- ASP.NET 2.0傳送電子郵件中存在的問題ASP.NET
- 郵件傳送
- 傳送郵件
- linux formail 傳送html郵件LinuxORMAIHTML
- Spring Boot 參考指南(驗證&傳送電子郵件)Spring Boot
- ASP.NET2.0傳送電子郵件示例程式碼ASP.NET
- SQL Server 2000怎樣配置傳送電子郵件SQLServer
- ASP.NET 2.0中傳送電子郵件剖析之一ASP.NET