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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Richtext/HTML in Outlook Mail

Status
Not open for further replies.

drkestrel

MIS
Sep 25, 2000
439
GB
I am trying to generate/send an email containing Rich Text OR HTML at the click of the button.

But how do I do the Rich Text with codes like
Code:
With OlMail
 .subject= the subject
 .body = What??
 with .Recipients.Add ("whaterver@wherever.com") 
    .Type=olTo
 end with
 .Send
End With

Many Thanks!! [sig][/sig]
 
With OlMail
.subject= the subject



.HTMLBody = &quot;<HTML> Text ..... </HTML>&quot;


with .Recipients.Add (&quot;whaterver@wherever.com&quot;)
.Type=olTo
end with
.Send
End With


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top