web-dev-qa-db-ja.com

Linuxコマンドラインからメールを送信する

Linuxターミナルから任意のGmailアカウントにメールを送信することは可能ですか?.

可能であれば、どのような構成が必要です。

Mailxとsendmailで試しましたが、機能しません。

私もこのようなmuttで試しました

echo "test" | mutt -s this-is-my-subjest [email protected]

しかし、役に立たない...

CentOS6.2を使用しています

1
max

SendEmailを使用することをお勧めします。

sendEmail-1.56 by Brandon Zehm <[email protected]>

Synopsis:  sendEmail -f ADDRESS [options]

  Required:
    -f ADDRESS                from (sender) email address
    * At least one recipient required via -t, -cc, or -bcc
    * Message body required via -m, STDIN, or -o message-file=FILE

  Common:
    -t ADDRESS [ADDR ...]     to email address(es)
    -u SUBJECT                message subject
    -m MESSAGE                message body
    -s SERVER[:PORT]          smtp mail relay, default is localhost:25

  Optional:
    -a   FILE [FILE ...]      file attachment(s)
    -cc  ADDRESS [ADDR ...]   cc  email address(es)
    -bcc ADDRESS [ADDR ...]   bcc email address(es)
    -xu  USERNAME             username for SMTP authentication
    -xp  PASSWORD             password for SMTP authentication

  Paranormal:
    -b BINDADDR[:PORT]        local Host bind address
    -l LOGFILE                log to the specified file
    -v                        verbosity, use multiple times for greater effect
    -q                        be quiet (i.e. no STDOUT output)
    -o NAME=VALUE             advanced options, for details try: --help misc
        -o message-content-type=<auto|text|html>
        -o message-file=FILE         -o message-format=raw
        -o message-header=HEADER     -o message-charset=CHARSET
        -o reply-to=ADDRESS          -o timeout=SECONDS
        -o username=USERNAME         -o password=PASSWORD
        -o tls=<auto|yes|no>         -o fqdn=FQDN


  Help:
    --help                    the helpful overview you're reading now
    --help addressing         explain addressing and related options
    --help message            explain message body input and related options
    --help networking         explain -s, -b, etc
    --help output             explain logging and other output options
    --help misc               explain -o options, TLS, SMTP auth, and more

それは私にとって非常にうまくいきます。 GmailでTLSを使用することを忘れないでください。これらのオプションを使用して電子メールを送信するサーバーの詳細を提供する必要があります。

    -s SERVER[:PORT]          smtp mail relay, default is localhost:25
    -xu  USERNAME             username for SMTP authentication
    -xp  PASSWORD             password for SMTP authentication

添付ファイルを追加でき、スクリプトに簡単に配置できるので、私にとっては最適です。

使用例:

sendEmail -f [email protected] -t [email protected] -s test -m messageBody -s smtp.gmail.com -xu [email protected] -xp xxxxxpass -o tls=auto
Aug 17 16:21:37 z sendEmail[22420]: Email was sent successfully!
4
mnmnc

mailターミナルプログラムでうまくいくはずです。これは通常、「箱から出してすぐに」機能し、ユーザー/プログラムがシステム内でローカルにメッセージを送信できるようにします。

タイプmail -s 'subject line' [email protected]そしてリターンを押します。次に、メッセージを入力し、Ctl-Dを使用して閉じ/送信します。

3
danielcraigie

通常、特定の構成を行う必要はありません。centosはデフォルトでメールサーバーを取得します。

コマンドがmailtoであることを思い出した場合は、情報(from、subjectなど)を入力してテキストを入力し、入力が終了したらctrl + Dと入力するとEOTが表示されます。

メールサーバーはユーザー情報を使用することに注意してください。そのようなものはfrom : user@pcnameしかし、今日はLinuxを使用していないので、確認できません。

これがお役に立てば幸いです。

編集:

o'reillyのmanページへのリンクがあります: そこに

0