web-dev-qa-db-ja.com

MUTTに複数のアドレスCCとBCCを追加する方法

BCCおよびCCとして複数の電子メールアドレスを追加する電子メールを送信するため、ドキュメントは私にはあまり明確ではありません

should I use -b email@ -b email2@ 

または

-b [email protected] [email protected]

またはカンマ区切り?

4
Pat R Ellery

ドキュメント(manページ)は言う:

mutt [-nx] [-e cmd] [-F file] [-H file] [-i file] [-s subj] [-b addr] [-c addr] [-a file [...] --] addr|mailto_url [...]

これは、完全な-c addr切り替えは、受信者ごとに繰り返す必要がありますCc受信者、および-b addr for each Bcc受信者。

例外は、コマンド呼び出しの最後にあるTo受信者のリストであり、スイッチは必要ありません。

6
Juancho

muttのオプション:

mutt [-nx] [-e cmd] [-F file] [-H file] [-i file] [-s subj] [-b addr] [-c addr] [-a file [...] --]

以下に複数の引数がある場合は、引用符"とコンマ,を使用して、同じグループ内の個々のコマンドを区切ることができます。例えば

-e "set content_type=text/html, realname='John Citizen'"

-b "[email protected], [email protected]"

フルコマンド:

mutt -e "set content_type=text/html, realname='John Citizen'" -s "This is some subject" -- "this_is_the_email_you_want_to_send_to@recipients_email_address.com, [email protected], [email protected]" < /home/dir/some_directory/the_HTML_file_you_want_to_send.html

0
3kstc