I wrote this code to send an e-mail but the MailObject.Cc that is not at our e-mail server (a free account at yahoo for testing) has not received the e-mail, what is wrong?
Thank you
dimis
Code:
Set MailObject = Server.CreateObject("CDONTS.NewMail")
MailObject.From = "unknown@some.net"
mailName= request.QueryString("email")
MailObject.To = "dimis@some.net"
MailObject.Subject = "some"
MailObject.Body = syndromh
MailObject.Cc = trim(request.QueryString("email"))
MailObject.Send
Set MailObject = Nothing