vote up 3 vote down star
1

I'm on a server running a Linux shell. I need to mail a simple file to a recipient. How to do this, prefereably using only the mail command?

UPDATE: got a good solution, using mutt instead:

$ echo | mutt -a syslogs.tar.gz admin@domain.org
flag

4 Answers

vote up 2 vote down check

Example using uuencode:

uuencode surfing.jpeg surfing.jpeg | mail sylvia@home.com

and reference article:

http://www.shelldorado.com/articles/mailattachments.html

link|flag
Commentary on archives.neohapsis.com/archives/postfix/… ? – chaos May 23 at 22:12
Is uuencode a "default" GNU tool? My box doesn't seem to have it. – Seiti May 23 at 22:36
The reference article was really useful! Thanks! – Seiti May 23 at 22:42
vote up 0 vote down
$ echo | mutt -a syslogs.tar.gz admin@domain.org

But it uses mutt, not mail (or mailx).

link|flag
vote up 2 vote down

mailx might help as well. From the mailx man page:

-a file
     Attach the given file to the message.

Pretty easy, right?

link|flag
vote up 0 vote down

My answer needs base64 in addition to mail, but some uuencode versions can also do base64 with -m, or you can forget about mime and use the plain uuencode output...

   FROM=me@mydomain.com
   TO=someone@mydomain.com
   SUBJECT="Auto emailed"
   MIME="application/x-gzip"  # Adjust this to the proper mime-type of file
   FILE=somefile.tar.gz
   ENCODING=base64  
   boundary="---my-unlikely-text-for-mime-boundary---$$--" 

   (cat <<EOF
    From: $FROM
    To: $REPORT_DEST
    Subject: $SUBJECT
    Date: $(date +"%a, %e %Y %T %z")
    Mime-Version: 1.0
    Content-Type: multipart/mixed; boundary="$boundary"
    Content-Disposition: inline

    --$boundary
    Content-Type: text/plain; charset=us-ascii
    Content-Disposition: inline

    This email has attached the file

    --$boundary
    Content-Type: $MIME;name="$attachment"
    Content-Disposition: attachment;filename="$attachment"
    Content-Transfer-Encoding: $ENCODING

    EOF
    base64 $attachment
    echo ""
    echo "--$boundary--" ) | mail
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.