![]() |
|
|
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 |
| unable to sent mail in html format by mailx command. | p_prathaban | UNIX for Advanced & Expert Users | 17 | 11-07-2007 03:03 AM |
| format output | Tornado | Shell Programming and Scripting | 7 | 11-19-2006 06:17 AM |
| Unable to send eMail from a UNIX-Host ( using mailx ) to a Outlook-email-addres(Win) | Vetrivela | UNIX for Advanced & Expert Users | 2 | 02-15-2005 10:43 AM |
| using mailx to send a log file to my outlook e-mail account | simt | UNIX for Dummies Questions & Answers | 6 | 09-01-2004 12:25 PM |
| ls output format | tonyt | UNIX for Dummies Questions & Answers | 6 | 11-23-2001 11:31 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
mailx output format in outlook
We have a deamon monitoring script on Solaris 10 - uname -a gives:
SunOS be2900 5.10 Generic_118833-33 sun4u sparc SUNW,Netra-T12 Thes script is: #!/usr/bin/ksh if [ ! -z "$(ps -efZ | grep global | grep urouter | grep appname)" ] then # Create message body echo "To:a.nother@company.co.uk\n" > /tmp/appmon.$$ echo "Subject: The APP UROUTER has gone down!\n" >> /tmp/appmon.$$ echo "`date`\n" >> /tmp/appmon.$$ echo "check the system and restart it.\n" >> /tmp/appmon.$$ echo " \n" >> /tmp/appmon.$$ echo "Log in as root\n" >> /tmp/appmon.$$ echo " \n" >> /tmp/appmon.$$ echo "urctrl -start\n" >> /tmp/appmon.$$ echo "trservice appname PE START $APP_HOME\n" >> /tmp/appmon.$$ echo "trservice appname WF START $APP_HOME\n" >> /tmp/appmon.$$ echo "trservice appname BP START $APP_HOME\n" >> /tmp/appmon.$$ (echo `cat /tmp/appmon.$$`)|/usr/bin/mailx -s "Warning - please ignore this is a test" "a.nother@company.co.uk" # Delete temp file for message body # cat /tmp/appmon.$$ rm /tmp/appmon.$$ > /dev/null fi #EOF The script sends the email correctly, but the body of the email, the result of all the echo commands appears in ms outlook as a single line. How can I format the output of mailx so that output when viewed in ms outlook is correct? TIA, Jabberwocky |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|