I have been using mutt to send emails from inside another application &
it works fine. I have to send html files and currently I have to send
them as attachments. So I use
mutt -s "hi" -a attach.html …
My requirement is to attach all the .csv files in a folder and send them in a single mail.
Here is what have tried,
mutt -s "subject" -a *.csv -- [email protected] < subject.txt
The above command is …