Babiker, you don't say how you're sending your mail... that leaves us a
lot to guess at!!

If you're using CDONTS then you can set a property in the CDO object:

If intHTMLWanted Then
  objCDOMailer.BodyFormat = 0 ' cdoBodyFormatHTML
  objCDOMailer.MailFormat = 0 ' cdoMailFormatMime
  .Body = strYourBodyTextWithHTMLIncluded
Else
  objCDOMailer.BodyFormat = 1 ' cdoBodyFormatText
  objCDOMailer.MailFormat = 1 ' cdoMailFormatText
  objCDOMailer.Body = strYourBodyTextInPlainText
End If

Note that instead of the "magic numbers" as property values, you should
use the indicated inherent constants

HTH

-----Original Message-----
From: Babiker [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, August 08, 2002 3:22 PM
To: ActiveServerPages
Subject: Sending email from asp


HOW CAN I FORCE THE BODY OF MY EMAIL TO SHOW AS HTML.all the html i send
it it shows up like this

<p><a href="http://WWW.zofan.com";>Unsubscribe</a></p>

thanks


---
You are currently subscribed to activeserverpages as:
[EMAIL PROTECTED] To unsubscribe send a blank email to
%%email.unsub%%



---
You are currently subscribed to activeserverpages as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]

Reply via email to