首頁 > 軟體

4個可以傳送完整電子郵件的命令列工具

2020-06-16 17:59:42

今天的文章裡我們會講到一些使用Linux命令列工具來傳送帶附件的電子郵件的方法。它有很多用處,比如在應用程式所在伺服器上,使用電子郵件傳送一個檔案過來,或者你可以在指令碼中使用這些命令來做一些自動化操作。在本文的例子中,我們會使用foo.tar.gz檔案作為附件。

有不同的命令列工具可以傳送郵件,這裡我分享幾個多數使用者會使用的工具,如mailxmuttswaks

我們即將呈現的這些工具都是非常有名的,並且存在於多數Linux發行版預設的軟體倉庫中,你可以使用如下命令安裝:

Debian / Ubuntu 系統

  1. apt-get install mutt
  2. apt-get install swaks
  3. apt-get install mailx
  4. apt-get install sharutils

在基於Red Hat的系統,如 CentOS 或者 Fedora

  1. yum install mutt
  2. yum install swaks
  3. yum install mailx
  4. yum install sharutils

 

1) 使用 mail / mailx

mailx工具在多數Linux發行版中是預設的郵件程式,現在已經支援傳送附件了。如果它不在你的系統中,你可以使用上邊的命令安裝。有一點需要注意,老版本的mailx可能不支援傳送附件,執行如下命令檢視是否支援。

  1. $ man mail

第一行看起來是這樣的:

  1. 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會自動將郵件傳送給收件人。

  1. $ mail user@example.com
  2. HI,
  3. GoodMorning
  4. How are you
  5. EOT

b) 傳送有主題的郵件

  1. $ echo "Email text"| mail -s "Test Subject" user@example.com

-s的用處是指定郵件的主題。

c) 從檔案中讀取郵件內容並行送

  1. $ mail -s "message send from file" user@example.com </path/to/file

d) 將從管道獲取到的echo命令輸出作為郵件內容傳送

  1. $ echo "This is message body"| mail -s "This is Subject" user@example.com

e) 傳送帶附件的郵件

  1. $ echo Bodywith attachment "| mail -a foo.tar.gz -s "attached file" user@example.com

-a選項用於指定附件。

 

2) mutt

Mutt是類Unix系統上的一個文字介面郵件用戶端。它有20多年的歷史,在Linux歷史中也是一個很重要的部分,它是最早支援進程打分和多執行緒處理的用戶端程式之一。按照如下的例子來傳送郵件。

a) 帶有主題,從檔案中讀取郵件的正文,並行送

  1. $ mutt -s "Testing from mutt" user@example.com </tmp/message.txt

b) 通過管道獲取echo命令輸出作為郵件內容傳送

  1. $ echo "This is the body"| mutt -s "Testing mutt" user@example.com

c) 傳送帶附件的郵件

  1. $ echo "This is the body"| mutt -s "Testing mutt" user@example.com -a /tmp/foo.tar.gz

d) 傳送帶有多個附件的郵件

  1. $ 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開發和維護。你可以使用如下語法傳送帶附件的郵件:

  1. $ 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,傳送端將二進位制格式的轉換成文字格式來傳輸,接收端再轉換回去。

我們可以簡單地使用uuencodemailx或者mutt配合,來傳送二進位制內容,類似這樣:

  1. $ uuencode example.jpeg example.jpeg | mail user@example.com

 

Shell指令碼:解釋如何傳送郵件

  1. #!/bin/bash
  2. FROM=""
  3. SUBJECT=""
  4. ATTACHMENTS=""
  5. TO=""
  6. BODY=""
  7. # 檢查檔名對應的檔案是否存在
  8. function check_files()
  9. {
  10. output_files=""
  11. for file in $1
  12. do
  13. if[-s $file ]
  14. then
  15. output_files="${output_files}${file} "
  16. fi
  17. done
  18. echo $output_files
  19. }
  20. echo "*********************"
  21. echo "E-mail sending script."
  22. echo "*********************"
  23. echo
  24. # 讀取使用者輸入的郵件地址
  25. while[1]
  26. do
  27. if[! $FROM ]
  28. then
  29. echo -n -e "Enter the e-mail address you wish to send mail from:n[Enter] "
  30. else
  31. echo -n -e "The address you provided is not valid:n[Enter] "
  32. fi
  33. read FROM
  34. echo $FROM | grep -E '^.+@.+$'>/dev/null
  35. if[ $?-eq 0]
  36. then
  37. break
  38. fi
  39. done
  40. echo
  41. # 讀取使用者輸入的收件人地址
  42. while[1]
  43. do
  44. if[! $TO ]
  45. then
  46. echo -n -e "Enter the e-mail address you wish to send mail to:n[Enter] "
  47. else
  48. echo -n -e "The address you provided is not valid:n[Enter] "
  49. fi
  50. read TO
  51. echo $TO | grep -E '^.+@.+$'>/dev/null
  52. if[ $?-eq 0]
  53. then
  54. break
  55. fi
  56. done
  57. echo
  58. # 讀取使用者輸入的郵件主題
  59. echo -n -e "Enter e-mail subject:n[Enter] "
  60. read SUBJECT
  61. echo
  62. if["$SUBJECT"==""]
  63. then
  64. echo "Proceeding without the subject..."
  65. fi
  66. # 讀取作為附件的檔名
  67. echo -e "Provide the list of attachments. Separate names by space.
  68. If there are spaces in file name, quote file name with "."
  69. read att
  70. echo
  71. # 確保檔名指向真實檔案
  72. attachments=$(check_files "$att")
  73. echo "Attachments: $attachments"
  74. for attachment in $attachments
  75. do
  76. ATTACHMENTS="$ATTACHMENTS-a $attachment "
  77. done
  78. echo
  79. # 讀取完整的郵件正文
  80. echo "Enter message. To mark the end of message type ;; in new line."
  81. read line
  82. while["$line"!=";;"]
  83. do
  84. BODY="$BODY$linen"
  85. read line
  86. done
  87. SENDMAILCMD="mutt -e "set from=$FROM" -s "$SUBJECT"
  88. $ATTACHMENTS -- "$TO" <<< "$BODY""
  89. echo $SENDMAILCMD
  90. mutt -e "set from=$FROM"-s "$SUBJECT" $ATTACHMENTS -- $TO <<< $BODY

** 指令碼輸出 **

  1. $ bash send_mail.sh
  2. *********************
  3. E-mail sending script.
  4. *********************
  5. Enter the e-mail address you wish to send mail from:
  6. [Enter] test@gmail.com
  7. Enter the e-mail address you wish to send mail to:
  8. [Enter] test@gmail.com
  9. Enter e-mail subject:
  10. [Enter]Message subject
  11. Provide the list of attachments.Separate names by space.
  12. If there are spaces in file name, quote file name with".
  13. send_mail.sh
  14. Attachments: send_mail.sh
  15. Enter message. To mark the end of message type ;; in new line.
  16. This is a message
  17. text
  18. ;;

 

總結

有很多方法可以使用命令列/Shell指令碼來傳送郵件,這裡我們只分享了其中4個類Unix系統可用的工具。希望你喜歡我們的文章,並且提供您的寶貴意見,讓我們知道您想了解哪些新工具。


via: http://linoxide.com/linux-shell-script/send-email-subject-body-attachment-linux/

作者:Bobbin Zachariah 譯者:goreliu 校對:wxy

本文由 LCTT 原創翻譯,Linux中國 榮譽推出

來源:http://linux.cn/article-5502-1.html

本文永久更新連結地址http://www.linuxidc.com/Linux/2015-05/117959.htm


IT145.com E-mail:sddin#qq.com