![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| mailx, uuencode problem | prash184u | Shell Programming and Scripting | 2 | 05-26-2009 01:54 PM |
| uuencode and mailx problem | zeekstern | SUN Solaris | 2 | 10-22-2008 12:52 PM |
| uuencode/mailx | ocelot | Shell Programming and Scripting | 1 | 01-11-2008 08:28 AM |
| Using mailx to send email to multiple users. | priyaksingh | Shell Programming and Scripting | 4 | 02-21-2006 01:37 AM |
| mailx and uuencode question | ssmiths001 | Shell Programming and Scripting | 1 | 10-21-2005 06:43 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
uuencode mailx - send multiple emails
The following is an extract from one of my Shell Scripts which uses uuencode and mailx to send an email with multiple attachements:
uuencode $LOG_REPORT $(basename $LOG_REPORT) uuencode $HTML_FILE $(basename $HTML_FILE ) ) | if [ $ENV = 1 ] then mailx -b "$COPY_TO" -s "$SUBJECT" -r "$MAIL_FROM" "$MAIL_TO" else mailx -s "$SUBJECT" -r "$MAIL_FROM" "$MAIL_TO_TEST" fi However I need to send another (separate) email from within the same shell script also using uuencode and mailx. Does anyone know if this is possible? If I duplicate the above syntax it still only sends one email ... |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|