So, did you give a valid from address as hcweb suggested.
Code:
Set objMail = Server.CreateObject("CDONTS.NewMail")
objMail.From = <what you have here?> 'Should be a valid one.
objMail.To = "[email protected]" 'Hope this is valid
objMail.CC = "[email protected]" 'Hope this is valid
objMail.Subject = "COMMERCIAL PROPOSAL Request"
objMail.Body = strHTML 'Use strHTML/HTML whichever applicable
objMail.MailFormat = 0
objMail.BodyFormat = 0
objMail.Send
Set objMail = Nothing
_________________________
- Vijay G
Strive for Perfection