echo "Here is the file you requested" | mutt -s "attaching file" -a one.txt -a two.txt -- [email protected],[email protected]
Deve funcionar. Muito mais trabalho para 10-20 arquivos embora.
No exemplo a seguir, posso usar vírgula para enviar a mesma mensagem para dois destinatários. Mas eu não posso usar vírgula para enviar 2 arquivos.
echo "Here is the file you requested" | mutt -s "attaching file" -a one.txt -- [email protected],[email protected]
Como envio o segundo arquivo.txt no mesmo comando?
echo "Here is the file you requested" | mutt -s "attaching file" -a one.txt -a two.txt -- [email protected],[email protected]
Deve funcionar. Muito mais trabalho para 10-20 arquivos embora.
Como dito no manual do mutt (versão 1.5.21).
-a file [...] Attach a file to your message using MIME. When attaching single or multiple files, separating filenames and recipient addresses with "--" is mandatory, e.g.
mutt -a image.jpg -- addr1
ou mutt -a img.jpg *.png -- addr1 addr2
The -a option must be placed at the end of command line options.
Então, tudo ficará bem:
echo "Here is the file you requested" | mutt -s "attaching file" -a one.txt second.txt -- [email protected],[email protected]