> I already have CDONTS working with my host's server. I was just trying to
> figure out how change the font size in CDONTS.
Oh, well, then it's easy: But you can *ONLY* specify font size *IF* you
sent HTML Email. You can't do it if you are sending plain text email.
So if your courrent mail body looks something like:
mail.body = "Hello, " & name & vbNewLine _
& "Thanks for your inquiry." & vbNewLine _
& "We'll get back to you ASAP."
You'll need to start using HTML line breaks, etc, in place of just the
newlines (or CRLF or whatever you are using), and *TELL* CDONTS that you are
using HTML, thus:
mail.MailFormat = 0 ' specifies HTML
mail.BodyFormat = 0 ' ditto
mail.body = "Hello, " & name & "<p>" & vbNewLine _
& "Thanks for your inquiry.<br/>" & vbNewLine _
& "We'll get back to you ASAP.<p>"
You might want to check this out:
http://www.aspfaqs.com/aspfaqs/ShowC...y.asp?CatID=10