Certo, puoi inviare un messaggio email in html impostando la proprietà bodyformat a 0 (
http://msdn2.microsoft.com/en-us/library/ms526401(EXCHG.10).aspx)
e preparando il testo del messaggio in questo modo:
html = "<html>"
html = html & "<head><title>Contatto dal sito internet</title>"
html = html & "<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'></head>"
html = html & "<body bgcolor='#FFFFFF' text='#000000'>"
html = html & "<p>"
html = html & "Messaggio inviato da :<br><br>"
html = html & "Nome : <b>" &nome& "</b><br>"
html = html & "Città : <b>" &azienda& "</b><br>"
...
e quindi:
set objmail = server.createobject("CDONTS.newmail")
objmail.from = email
objmail.to = email_azienda
objmail.subject ="Contatto dal sito internet"
objmail.body = html
objmail.bodyformat = 0
objmail.mailformat = 0