We are getting random exclamation (!) mark in email body using CDO object in Classic ASP.
We are not getting this exclamation mark with outlook. Problem only occur with Lotus Notes client. We use IIS SMTP server to send email.
Edit
Set myMail= Server.CreateObject("CDO.Message")
myMail.Subject="Business and Company News on your Mobile Device"
myMail.From="[email protected]"
myMail.To="[email protected]"
htmlbody = htmlbody (coming runtime)
myMail.BodyPart.ContentTransferEncoding = "quoted-printable"
myMail.HTMLBody = htmlbody
myMail.Send
I think client is not using SMTP. But they are using LotusNotes for sure.