The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
Google UNIX.COM


Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Send an attachment and html text both in the same mail stefan.yu Shell Programming and Scripting 4 10-26-2006 06:46 PM
sending mail with html content gmchoudary UNIX for Dummies Questions & Answers 2 11-28-2005 05:26 AM
Sending mail from Unix - For html output frustrated1 Shell Programming and Scripting 2 05-04-2005 01:07 PM
How do I tell mail (or pine, or whatever) that the piped in file is html? Boots High Level Programming 1 07-15-2002 11:40 PM
Using mail to send HTML emails dmennis UNIX for Dummies Questions & Answers 2 06-29-2001 08:42 AM

Reply
 
Submit Tools LinkBack Thread Tools Search this Thread Display Modes
  #1  
Old 09-09-2005
RishiPahuja's Avatar
Registered User
 

Join Date: Apr 2005
Location: Bangalore, India
Posts: 203
Talking mail: html content

hi guys,

am required to prepare a report and mail it, to make it more appealing i wish to have content of mail in rich text format i.e html type

with mailx how to specify the content type of mail body as html?

Thanks in advance!!!

rishi
Reply With Quote
Forum Sponsor
  #2  
Old 10-29-2005
lidoiwo's Avatar
Registered User
 

Join Date: Oct 2005
Location: Grove City, PA.
Posts: 2
Have you ever recceived a reply on this message - I would like to do the same thing.
Reply With Quote
  #3  
Old 10-30-2005
Ygor's Avatar
Moderator
 

Join Date: Oct 2003
Location: -31.96,115.84
Posts: 1,249
Can't use mailx to send html, use sendmail instead....
Code:
#!/usr/bin/ksh

export MAILTO="recipient@mail.com"
export CONTENT="/tmp/example.html"
export SUBJECT="Example Report"
(
 echo "Subject: $SUBJECT"
 echo "MIME-Version: 1.0"
 echo "Content-Type: text/html"
 echo "Content-Disposition: inline"
 cat $CONTENT
) | /usr/sbin/sendmail $MAILTO
Reply With Quote
Google The UNIX and Linux Forums
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes




All times are GMT -7. The time now is 05:26 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008. All Rights Reserved.Ad Management by RedTyger Visit The Complex Event Processing Blog

Content Relevant URLs by vBSEO 3.2.0