Forum Moderators: open
I'm trying to build an email form with CDONTS. Everything is working correctly except the CC field. This is what happens... when I CC a person in my domain, I get the copy. When I CC somebody outside of my domain I do not ever get it.
Is CDONTS designed to only copy people in the same domain or something?
Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
objCDOMail.From = Request.Form("name") & " <" & strReturnEmailAddress & ">"
objCDOMail.To = strMyEmailAddress
objCDOMail.Cc = strCCEmailAddress
objCDOMail.Bcc = strBCCEmailAddress
objCDOMail.Subject = "Issue Report"
objCDOMail.BodyFormat = 0
objCDOMail.MailFormat = 0
objCDOMail.Body = strBody
objCDOMail.Importance = 2
objCDOMail.Send
Set objCDOMail = Nothing