मेरा पसंदीदा ईमेल ( github ) क्लाइंट है। यह वास्तव में सरल है, किसी जटिल विन्यास की आवश्यकता नहीं है, किसी भी निर्भरता की आवश्यकता नहीं है। और आप कमांड लाइन के माध्यम से smtp-server तर्क निर्दिष्ट कर सकते हैं, जिसका अर्थ है कि यह स्क्रिप्टिंग के लिए अधिक उपयुक्त है। केवल अफ़सोस की बात है कि अधिकांश लिनक्स वितरण में यह उपकरण नहीं है, इसलिए आपको इसे स्वयं संकलित करने की आवश्यकता है।
जीथब पर ईमेल प्रोजेट के उद्धरण
प्रश्न: 'ईमेल' क्या है?
A: 'ईमेल' एक ऐसा प्रोग्राम है जिसे मैंने डिज़ाइन किया है जो कमांड लाइन के माध्यम से रिमोट smtp सर्वर को ईमेल भेजेगा या आंतरिक रूप से 'सेंडमेल' का उपयोग करेगा, और अपने ई-मेल को एन्क्रिप्ट करने और हस्ताक्षर करने के लिए GNUPG के साथ पूरी तरह से बातचीत करेगा, इसलिए आप ऐसा करने का निर्णय लेते हैं। .. आप यहाँ पर GNUPG प्राप्त कर सकते हैं: http://www.gnupg.org
मुझे इस उपयोगी ईमेल क्लाइंट के बारे में बताने के लिए सागविन का धन्यवाद करें।
संकलित करें और स्थापित करें
./configure
make
./install.sh --version 3.1.3 --prefix /usr --mandir /usr/share/man --sysconfdir /etc
ईमेल के कमांड लाइन विकल्प
$ email --help
Options information is as follows
email [options] recipient1,recipient2,...
-h, -help module Print this message or specify one of the below options
-V, -verbose Display mailing progress.
-f, -from-addr Senders mail address
-n, -from-name Senders name
-b, -blank-mail Allows you to send a blank email
-e, -encrypt Encrypt the e-mail for first recipient before sending
-s, -subject subject Subject of message
-r, -smtp-server server Specify a temporary SMTP server for sending
-p, -smtp-port port Specify the SMTP port to connect to
-a, -attach file Attach file and base64 encode
-c, -conf-file file Path to non-default configuration file
-t, -check-config Simply parse the email.conf file for errors
-x, -timeout Set socket timeout.
-cc email,email,... Copy recipients
-bcc email,email,... Blind Copy recipients
-sign Sign the email with GPG
-html Send message in HTML format ( Make your own HTML! )
-tls Use TLS/SSL
-m, -smtp-auth type Set the SMTP AUTH type (plain or login)
-u, -smtp-user username Specify your username for SMTP AUTH
-i, -smtp-pass password Specify your password for SMTP AUTH
-g, -gpg-pass Specify your password for GPG
-H, -header string Add header (can be used multiple times)
-high-priority Send the email with high priority
-no-encoding Don't use UTF-8 encoding
नमूना उपयोग
निर्दिष्ट SMTP सर्वर के साथ सरल मेल
echo "mail body" | email -subject "unix.stackexchange.com Q36982" -from-name LiuYan刘研 -from-addr liuyan@domain.com -smtp-server smtp.domain.com -smtp-port 25 cwd@your-domain.com your-friends@his-domain.com
HTML मेल
echo "<h1>header</h1><p>paragraph</p>" | email -html -subject "unix.stackexchange.com Q36982 HTML mail" cwd@your-domain.com
अनुलग्नक (रों)
echo "see the attachment(s)" | email -subject "This is my email.conf file" -attach /etc/email/email.conf -attach cwd@your-domain.com