내가 가장 좋아하는 것은 이메일 ( github ) 클라이언트입니다. 정말 간단하고 복잡한 구성이 필요 없으며 종속성이 필요하지 않습니다. 또한 명령 줄을 통해 smtp-server 인수를 지정할 수 있으므로 스크립팅에 더 적합합니다. 유감스럽게도 대부분의 Linux 배포판에는이 도구가 포함되어 있지 않으므로 직접 컴파일해야합니다.
github의 이메일 projet에서 인용
Q : '이메일'이란 무엇입니까?
A : 'email'은 명령 줄을 통해 원격 smtp 서버로 전자 메일을 보내거나 내부적으로 'sendmail'을 사용하고 GNUPG와 완전히 상호 작용하여 전자 메일을 암호화하고 서명하도록 설계된 프로그램입니다. .. 다음 사이트 에서 GNUPG를 얻을 수 있습니다 : http://www.gnupg.org
이 유용한 이메일 클라이언트 를 알려 주신 cygwin 에게 감사드립니다 .
컴파일 및 설치
./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