usando o mutt para enviar 2 arquivos

5

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?

    
por shantanuo 14.03.2011 / 09:31

2 respostas

6
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.

    
por 14.03.2011 / 09:45
5

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]
    
por 14.03.2011 / 09:46

Tags