আমার প্রিয় ইমেল ( গিথুব ) ক্লায়েন্ট। এটি সত্যই সহজ, কোনও জটিল কনফিগারেশন প্রয়োজন নেই, নির্ভরতার প্রয়োজন নেই। এবং আপনি কমান্ড লাইনের মাধ্যমে smtp-server আর্গুমেন্ট নির্দিষ্ট করতে পারবেন, যার অর্থ এটি স্ক্রিপ্টিংয়ের জন্য আরও উপযুক্ত। কেবল দুঃখের বিষয়টি হল যে বেশিরভাগ লিনাক্স বিতরণে এই সরঞ্জামটি থাকে না, তাই আপনাকে এটি নিজেই সংকলন করা দরকার।
গিথুব এ ইমেল প্রজেট থেকে উদ্ধৃতি
প্রশ্ন: 'ইমেল' কী?
উত্তর: 'ইমেল' এমন একটি প্রোগ্রাম যা আমি ডিজাইন করেছি যা কমান্ড লাইনের মাধ্যমে দূরবর্তী এসএমটিপি সার্ভারগুলিতে ইমেল প্রেরণ করবে বা অভ্যন্তরীণভাবে 'সেন্ডমেল' ব্যবহার করবে এবং আপনার ই-মেইলগুলি এনক্রিপ্ট করতে এবং স্বাক্ষর করতে 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
নমুনা ব্যবহার
এসএমটিপি সার্ভার সহ সহজ মেল
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
এইচটিএমএল মেল
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