web-dev-qa-db-ja.com

muttを使用して2つのファイルを送信する

次の例では、カンマを使用して同じメッセージを2人の受信者に送信できます。しかし、2つのファイルを送信するためにコンマを使用することはできません。

echo "Here is the file you requested" | mutt -s "attaching file" -a one.txt -- [email protected],[email protected]

同じコマンドでsecond.txtファイルを送信するにはどうすればよいですか?

5
shantanuo
echo "Here is the file you requested" | mutt -s "attaching file" -a one.txt -a two.txt -- [email protected],[email protected]

動作するはずです。ただし、10〜20個のファイルではさらに多くの作業が必要です。

7
phwd

Muttマニュアル(バージョン1.5.21)で述べたように。

-ファイル[...] MIMEを使用してメッセージにファイルを添付します。単一または複数のファイルを添付する場合、ファイル名と受信者アドレスを「-」で区切ることは必須です。

mutt -a image.jpg -- addr1またはmutt -a img.jpg *.png -- addr1 addr2

-aオプションは、コマンドラインオプションの最後に配置する必要があります。

だからこれは大丈夫です:

echo "Here is the file you requested" | mutt -s "attaching file" -a one.txt second.txt -- [email protected],[email protected]
5
graphite