Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sending HTML mails with mailx

Status
Not open for further replies.

adamf

Technical User
Mar 7, 2002
51
GB
People -

Is is possible to send HTML formatted emails using mailx?

ie. Will mailx only send mails in plain text format.

If mailx won't do the job, any suggestions would be great.

Thanks in advance.....! Adam F
Solaris System Administrator
 
Adam -- you can feed HTML to mailx or sendmail and they will deliver it for you Mike
"Experience is the comb that Nature gives us after we are bald."

Is that a haiku?
I never could get the hang
of writing those things.
 
Mike,

I have tried to send an HTML doc with mailx, but on receipt (thru MS EXchange) it comes through as plain text HTML code... I guess I need to put relevant headers on the mail so MS Exchange knows it should present the message in HTML format. Any ideas?? Adam F
Solaris System Administrator
 
Adam

You could try the following command :

uuencode file.html file.html > mailx -ms"subject" mailaddress

cheers
George
 
Looking at the source tab for an HTML email in Outlook Express, this is the source for an "Hello World" email.

<!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;>
<HTML><HEAD>
<META http-equiv=Content-Type content=&quot;text/html; charset=iso-8859-1&quot;>
<META content=&quot;MSHTML 6.00.2715.400&quot; name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Hello World</FONT></DIV></BODY></HTML>

Could you just copy MS's HTML email format?
Mike
&quot;Experience is the comb that Nature gives us after we are bald.&quot;

Is that a haiku?
I never could get the hang
of writing those things.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top