how to send an email via mailx with enclosed file

本秂侑毒 提交于 2019-11-30 12:17:22
Jeff

You can attach files to mailx using -a like so

echo "this is the body of the email" | mailx -s"Subject" -a attachment.jpg Someone@Domain.com

so long as your in the same directory as your attachment that should work fine. If not you can just state the directory like `

samachPicsFolder/samachpic.jpg

If your mailx doesn't support the -a option and you don't have access to mutt, and you don't want to turn to uuencode as a fallback from the 1980s, as a last resort you can piece together a small MIME wrapper yourself.

#!/bin/sh

# ... do some option processing here. The rest of the code
# assumes you have subject in $subject, file to be attached
# in $file, recipients in $recipients

boundary="${RANDOM}_${RANDOM}_${RANDOM}"

(
    cat <<____HERE
Subject: $subject
To: $recipients
Mime-Version: 1.0
Content-type: multipart/related; boundary="$boundary"

--$boundary
Content-type: text/plain
Content-transfer-encoding: 7bit

____HERE

    # Read message body from stdin
    # Maybe apply quoted-printable encoding if you anticipate
    # overlong lines and/or 8-bit character codes
    cat

    cat <<____HERE

--$boundary
Content-type: application/octet-stream; name="$file"
Content-disposition: attachment; filename="$file"
Content-transfer-encoding: base64

____HERE

    # If you don't have base64 you will have to reimplement that, too /-:
    base64 "$file"

    cat <<____HERE
--$boundary--
____HERE

) | sendmail -oi -t

The path to sendmail is often system-dependent. Try /usr/sbin/sendmail or /usr/lib/sendmail or ... a myriad other weird places if it's not in your PATH.

This is quick and dirty; for proper MIME compliance, you should do RFC2047 encoding of the subject if necessary, etc, and see also the notes in the comments in the code. But for your average US-centric 7-bit English-language cron job, it will do just fine.

Regarding mailx, you can find some inspiration here http://www.shelldorado.com/articles/mailattachments.html

I would recommend you to have a look at mutt http://www.mutt.org/

Ankit Singh

Try using this command in order to send an attachment using Mailx:

uuencode source_file encoded_filename |mailx -m -s  "Subject" something@something.com
ShiDoiSi

I'd recommend using mutt for it, which is light-weight enough to quickly install on any system.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!