web-dev-qa-db-ja.com

メール機能で送信者名を設定

シェルスクリプトでmailコマンドを使用して送信者名と電子メールアドレスを設定するにはどうすればよいですか。

6
Ankur

これを試して:

mail -s 'Some Subject' -r 'First Last <[email protected]>' [email protected]

これにより、両方のFrom:とエンベロープ送信者。

9
lcd047

オプション -aはヘッダーに値を入力します。

クイックコマンド:

mail -a FROM:[email protected] [email protected]

長いコマンド

mail --append="FROM:[email protected]" [email protected]

 Usage: mail [OPTION...] [address...]

  -a, --append=HEADER: VALUE     append given header to 
                                 the message being sent

  -A, --attach=FILE              attach FILE
      --content-type=TYPE        set content type for 
                                 subsequent --attach options

  -e, --exist                    return true if mail exists
      --encoding=NAME            set encoding for subsequent 
                                 --attach options

  -E, --exec=COMMAND             execute COMMAND

  -F, --byname                   save messages according to sender

  -H, --headers                  write a header summary and exit

  -i, --ignore                   ignore interrupts

  -n, --norc                     do not read the system mailrc file

  -N, --nosum                    do not display initial header summary

  -p, --print, --read            print all mail to standard output

  -q, --quit                     cause interrupts to terminate program

  -r, --return-address=ADDRESS   use address as the return address 
                                 when sending mail

  -s, --subject=SUBJ             send a message with the given SUBJECT

  -t, --to                       precede message by a list of addresses

  -u, --user=USER                operate on USER's mailbox

共通オプション

  --config-file=FILE, --rcfile=FILE
                         load this configuration file

  --config-help          show configuration file summary

  --config-lint, --rcfile-lint
                         check configuration file syntax and exit

  --config-verbose, --rcfile-verbose
                         verbosely log parsing of the configuration files

  --no-site-config, --no-site-rcfile
                         do not load site configuration file

  --no-user-config, --no-user-rcfile
                         do not load user configuration file

  --set=PARAM=VALUE      set configuration parameter

  --show-config-options  show compilation options

グローバルデバッグ設定

--debug-level=LEVEL    set Mailutils debugging level

--debug-line-info      show source info with debugging messages

-?, --help             give this help list
    --usage            give a short usage message

-V, --version          print program version

長いオプションへの必須またはオプションの引数も、対応する短いオプションでは必須またはオプションです。

10
Nolwennig

これは、使用しているメールクライアントによって異なります。一部のLinuxディストリビューションは、-r from-addrパラメータを使用できるmailxにリンクしています。

Muttがある場合は、mutt -e "set from='name <name@somewhere>'>を使用できるはずです。

mailコマンドを含む他のディストリビューションは、echo "test"|mail -s "subject" [email protected] -- -f from@addressを使用できるはずです。

4
Lambert