如何使用HP-UX shell脚本将简单文本文件作为附件发送?

时间:2011-06-08 04:50:00

标签: email shell unix mailx

我需要在HP-UX中使用shell脚本发送带有文本文件作为附件的电子邮件;我没有安装mutt。

我正在使用以下命令,但是它将文件内容发送到电子邮件正文中,我希望它作为附件。

mailx -s "Report" name@example.com < file.txt

4 个答案:

答案 0 :(得分:4)

几年前我写了这个ksh函数

# usage: email_attachment to cc subject body attachment_filename
email_attachment() {
    to="$1"
    cc="$2"
    subject="$3"
    body="$4"
    filename="${5:-''}"
    boundary="_====_blah_====_$(date +%Y%m%d%H%M%S)_====_"
    {
        print -- "To: $to"
        print -- "Cc: $cc"
        print -- "Subject: $subject"
        print -- "Content-Type: multipart/mixed; boundary=\"$boundary\""
        print -- "Mime-Version: 1.0"
        print -- ""
        print -- "This is a multi-part message in MIME format."
        print -- ""
        print -- "--$boundary"
        print -- "Content-Type: text/plain; charset=ISO-8859-1"
        print -- ""
        print -- "$body"
        print -- ""
        if [[ -n "$filename" && -f "$filename" && -r "$filename" ]]; then
            print -- "--$boundary"
            print -- "Content-Transfer-Encoding: base64"
            print -- "Content-Type: application/octet-stream; name=$filename"
            print -- "Content-Disposition: attachment; filename=$filename"
            print -- ""
            print -- "$(perl -MMIME::Base64 -e 'undef $/; open $fh, shift; print MIME::Base64::encode(<$fh>); close $fh; ' $filename)"
            print -- ""
        fi
        print -- "--${boundary}--"
    } | /usr/lib/sendmail -oi -t
}

答案 1 :(得分:3)

uuencode是你的朋友。

这是一个经过测试的例子:

(uuencode .vimrc vimrc.txt; uuencode .zshrc zshrc.txt; echo Here are your attachments) | mailx -s 'Mail with attachments' email_address

答案 2 :(得分:1)

我遇到了同样的问题,即uuencode的输出作为邮件正文的一部分而不是作为附件发送(至少在使用Outlook 2010查看已发送的邮件时)。我在这个帖子http://www.unix.com/hp-ux/41306-sending-attachments-through-mailx.html

中找到了答案

添加-m会导致mailx在发送电子邮件时不添加MIME标题行。 OP的命令将被改变为:

mailx -m -s "Report" name@example.com < file.txt

答案 3 :(得分:1)

几个月前我也遇到过同样的问题 我需要的命令是ux2dos

( cat message_content_file; ux2dos file.txt | uuencode file.txt file.txt ) | mailx -m -s "subject" -r mail@sender mail@recipient

我希望它可以提供帮助! 此致