Manoj Alex wrote:
> This may seems to be very simple. How can I attach a Microsoft word document(
> test.doc) along with an e-mail and sent it to everybody.
> Thanx in advance.

#!/bin/bash
#
# Script: sendfile
#
# Purpose: Send the specified file via email as a MIME 
#          attachment to the specified address.
#
# Author: Anthony E. Greene <[EMAIL PROTECTED]>
#
# Note: This script does not include any error checking, so
#       it should only be called from within other scripts.
#       The correct syntax for using this script is:
#
# sendfile user@domain filename | /path/to/sendmail -t
#

# First we set up some global variables.
# Some code should be added to verify the commandline arguments.
[EMAIL PROTECTED]
recipient=$1
filename=$2
basefile=`/bin/basename $filename`

echo From: $sender
echo To: $recipient
echo Subject: File $basefile
echo MIME-Version: 1.0
echo "Content-Type: multipart/mixed;
Boundary=\"sendfile-attachment-boundary\""
echo
echo --sendfile-attachment-boundary
echo 'Content-Type: text/plain; charset=us-ascii'
echo
echo This is a MIME encoded message. If your mail software
echo cannot properly handle the attached file, you may need
echo to get a MIME-aware mailer.
echo
echo --sendfile-attachment-boundary
echo "Content-Type: application/octet-stream; name=\"$basefile\""
echo Content-Transfer-Encoding: base64
echo "Content-Disposition: attachment; filename=\"$basefile\""
echo
/usr/bin/mimencode $filename
echo --sendfile-attachment-boundary--



-- 
 Anthony E. Greene <[EMAIL PROTECTED]>
 Homepage & PGP Key <http://www.pobox.com/~agreene/>
 Linux: The choice of a GNU Generation.


-- 
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.

Reply via email to