ASP HTML mail not working

I’m using CDO to send an html message but it’s not ending up html on the other side:


...

Body2 = "<table bgcolor='#E6680E' width='100%' height='100%'><tr><td><center><br /><br /><table width='550' border='0' cellpadding='0' cellspacing='0'><tr><td width='550' height='226' colspan='3' align='left' valign='top'><img src='http://www.1717avenue.com/sendmail/images/1.jpg' width='550' height='226' /></td></tr><tr><td width='42' height='174' rowspan='2' align='left' valign='top'><img src='http://www.1717avenue.com/sendmail/images/2.jpg' width='42' height='174' /></td><td width='466' height='57' align='center' valign='top' style='background-image:url(http://www.1717avenue.com/sendmail/images/color.jpg); background-repeat:repeat-x; background-color:#E6680E; font-family:Arial, Helvetica, sans-serif; font:Arial, Helvetica, sans-serif; font-size:16px'>Thank you for registering online and your interest in our exciting<br />new luxury condominium residences  – 1717 Avenue Road</td><td width='42' height='174' rowspan='2' align='left' valign='top'><img src='http://www.1717avenue.com/sendmail/images/4.jpg' width='42' height='174'  /></td></tr><tr><td width='466' height='117' align='left' valign='top'><img src='http://www.1717avenue.com/sendmail/images/5.jpg' width='466' height='117' /></td></tr></table><br /><br /></center></td></tr></table>"

Sendto2 = email_text

Set replyThanks=CreateObject("CDO.Message")
replyThanks.Subject="Thank you for your interest in 1717 Avenue Road"
replyThanks.From=ThanksSender
replyThanks.To=Sendto2
replyThanks.HTMLBody=Body2
replyThanks.Send
set replyThanks=nothing
%>

Now, if i paste this code into thunderbird and send, i get a beautiful html message in almost every mail app. But when i use “.HTMLbody” on this script, i get this:

   <http://www.1717avenue.com/sendmail/images/1.jpg>    
   <http://www.1717avenue.com/sendmail/images/2.jpg>    Thank you for
  registering online and your interest in our exciting new luxury condominium residences - 1717 Avenue Road
  <http://www.1717avenue.com/sendmail/images/4.jpg>     
   <http://www.1717avenue.com/sendmail/images/5.jpg>    
  

How do i get this to send properly? is it a limitation of the ASP implimentation on the server?