BCCおよびCCとして複数の電子メールアドレスを追加する電子メールを送信するため、ドキュメントは私にはあまり明確ではありません
should I use -b email@ -b email2@
または
-b [email protected] [email protected]
またはカンマ区切り?
ドキュメント(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受信者のリストであり、スイッチは必要ありません。
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