Hi All,

I'm new to this newsgroup, so please forgive my ignorance,
but I have an issue with the NewMail object that I can't
seem to resolve. The issue is this: I have the following
snippet of code to send out an HTML based e-mail:

Dim oEmail
Set oEmail = Server.CreateObject("CDONTS.NewMail")
oEmail.From = sFromemail
oEmail.To = sRecipemail
oEmail.Subject = sSubject
oEmail.Body = sBody
oEmail.BodyFormat = 0
oEmail.MailFormat = 0
oEmail.Send
Set oEmail = Nothing

However, it seems that by including the MailFormat = 0 bit
the sender is removing some of the periods out of my links
and image references, always at the very end
(www.blah.com/blah.htm becomes www.blah.com/blahhtm and
www.blah.com/blah.gif becomes www.blah.com/blahgif). It
also seems that even with both the BodyFormat and
MailFormat lines removed the object still removes periods
from some of my links. I've checked over my HTML several
times, but it's completely fine, and is shown properly on
a test page I've built.

I'm really having trouble figuring this out, so I would
really appreciate the help.

Thanks,

Jon Scolamiero.