GNU Mailutils attach file

emailgnu

Is it possible to attach a file to an email from the CLi using mail?

I am having trouble finding this feature on the manpage.

Best Answer

The best way to do this is generally to use mutt instead:

$ mutt -s "test subject" -a test.jpg user@example.com < test.txt

mutt is available on most unix-like platforms these days and usually comes installed in the base OS.

Your other option is to uuencode the file and send it through mail:

    $ uuencode test.jpg test.jpg | mail user@example.com

as explained here.

Related Topic