Sponsored Content
Full Discussion: Sending multiple attachments
Top Forums Shell Programming and Scripting Sending multiple attachments Post 302156352 by awk on Tuesday 8th of January 2008 12:12:08 AM
Old 01-08-2008
I am not at a UNIX box, so try this modification

Quote:
Originally Posted by deo2k8
Hi people, I am new to this forums. I have a quick question I hope one of you could help me with. I am writing a script to send attachments via email. However I am having trouble when trying to send multiple attachments. Here is the code I am using:

Code:
send_mail()
{
uuencode $TMP $TMP1 > $TMP1
uuencode $TMP $TMP3 > $TMP3

cat $MAILGROUP | while read RECIPIENT
        do
           cat $TMP1 $TMP2 | mailx -s "$BROKER" $RECIPIENT		 
           STATUS=$?
           if [ $STATUS -ne 0 ]
              then
              exit 1
           fi
        done
}

$TMP, $TMP1 and $TMP3 have already been declared and the code works fine for sending emails and attachments, but this code only sends the $TMP3 file as an attachment and does not send $TMP1. I need the script to send both attached files in the same email. Can anyone help me with this?

Your responses are much appreciated.
 

10 More Discussions You Might Find Interesting

1. How do I send email?

sending files as attachments

How do I send a file as an attachment on a Unix system (9 Replies)
Discussion started by: SmartJuniorUnix
9 Replies

2. UNIX for Dummies Questions & Answers

sending files as attachments

How do I send a file as an attachment on a Unix system (9 Replies)
Discussion started by: SmartJuniorUnix
9 Replies

3. UNIX for Advanced & Expert Users

sending attachments via unix

Hi, I need to send a mail attachment from the UNIX commandline. I'm using Tru64 and the mail client thats supposed receive the attached file (an excel sheet) is Lotus Notes. Can anybody help me out? (6 Replies)
Discussion started by: Abhishek Ghose
6 Replies

4. UNIX for Dummies Questions & Answers

sending attachments in mail

Hi , i have tried the following command to send an email with an attachment its working fine but i am getting mail with the embeded content inside the mail that too truncated. i wanted it as an attachment. /usr/lib/sendmail -F "MAC SIA" address "rajendra@abc.com.sg" -t <... (6 Replies)
Discussion started by: rajendragora
6 Replies

5. Shell Programming and Scripting

Sending text files as attachments

Hi, I have used the following command to send a text file "archiver.log" as attachment. (cat mail.log; uuencode archiver.log archiver.log; ) | mailx -s "Failure" asd@a.com : But in the mail i am not getting new lines in the text file.New Lines are getting replaced with some weird... (2 Replies)
Discussion started by: radhika03
2 Replies

6. UNIX for Dummies Questions & Answers

Sending email attachments

Hello, I've search the forum, but I cannot find an answer to my specific question. I'm trying to send some files to my professor. Upon his request, I used the following: tar -cvf vh.tar vh_part1.c vh_part2.c vh_part3.c vh_part4.c vh_sample_run15.txt uuencode vh.tar vh.tar > proj1 mail... (2 Replies)
Discussion started by: venush
2 Replies

7. HP-UX

Sending Unix files as attachments in an email

Hi, I am executing the following command in order to send a file as an attachment: mailx -s "Subject" emailID@xyz.com < Testfile.txt Instead of attaching the file Testfile.txt, it is writing the contents of the file in the email message body. Please advise on how I can send the file as an... (7 Replies)
Discussion started by: sangharsh
7 Replies

8. Shell Programming and Scripting

Sending Multiple Attachments using MAILX

I have created a shell scripts and wanted to email users multiple attachments using mailx. I noticed that when I do a man on mailx I see and -a option for attachments. When I run a: mailx -s "test attachments" -a include_file -a exclude_file testuser@mydomain.com (Interrupt -- one more to... (1 Reply)
Discussion started by: metallica1973
1 Replies

9. UNIX for Dummies Questions & Answers

Sending attachments via unix

OS Linux....Just curious as to why this is not working... uuencode test.txt "test.xls"|mailx -r xxx@server.com -s "validation report" emailrecipient1,emailrecipient2 Please help....Any other options do we need to use?? (3 Replies)
Discussion started by: saggiboy10
3 Replies

10. Shell Programming and Scripting

Sending an email with a body and attachments using uuencode

Hi, Im having a bit of an issue with using the uuencode command and sending out an email. My aim is to send an email out which has a body and also have attachments. Currently I can either get one or the other and not both on the same email. uuencode... (4 Replies)
Discussion started by: 02JayJay02
4 Replies
GRAB-ATTACHMENTS(1)					      General Commands Manual					       GRAB-ATTACHMENTS(1)

NAME
grab-attachments - downloads attachments from a Launchpad bug SYNOPSIS
grab-attachments [options] bug-number... grab-attachments -h DESCRIPTION
grab-attachments is a script to download all attachments from a Launchpad bug report or bug reports with a source package task into a directory named after the bug e.g. bug-1. OPTIONS
Listed below are the command line options for grab-attachments: bug-number Specifies the Launchpad bug number that the script should download attachments from. -h, --help Display a help message and exit. -l INSTANCE, --lpinstance=INSTANCE Use the specified instance of Launchpad (e.g. "staging"), instead of the default of "production". --no-conf Do not read any configuration files, or configuration from environment variables. -d, --duplicates Download attachments from duplicates too. -p SRCPACKAGE, --package=SRCPACKAGE Download attachments from all bugs with a task for this source package. AUTHOR
lp-grab-attachments was written by Daniel Holbach and this manual page was written by Jonathan Patrick Davies. Both are released under the GNU General Public License, version 3. lptools 10 August 2008 GRAB-ATTACHMENTS(1)
All times are GMT -4. The time now is 06:43 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy