從linux命令列發送郵件

從linux命令列發送郵件

是否可以從Linux終端機發送郵件到任何gmail帳號。

如果可以的話需要什麼配置。

我嘗試使用 mailx 和 sendmail 但它不起作用。

我也嘗試過這樣的 mutt

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

但沒有用...

我使用的是CentOS 6.2

答案1

我建議使用 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!

答案2

終端程式mail應該可以解決這個問題。它通常“直接開箱即用”,允許用戶/程式在系統內部本地發送訊息。

鍵入並按下回車鍵。然後輸入您的訊息並使用 Ctl-D 關閉/發送。mail -s 'subject line' [email protected]

答案3

通常你不需要任何特定的配置,centos預設有一個郵件伺服器。

如果我記得命令是mailto然後鍵入訊息(來自,主題等,...)並鍵入文本,當你完成鍵入 ctrl+D 時,你將得到 EOT。

請注意,您的郵件伺服器將使用您的用戶訊息,類似的訊息,from : user@pcname但我今天不在我的 Linux 上,所以我無法檢查它。

希望這會有所幫助。

編輯 :

這裡有 O'reilly 手冊頁的連結:那裡

相關內容