Hi,
I'm having problems using CDO on an ASP page where I;m tring to send an email, usually getting the error message "The "SendUsing" configuration value is invalid."
Code:
Set ObjSendMail = Server.CreateObject("CDO.Message")
ObjSendMail.SmtpServer = "mail.mydomain.com"
ObjSendMail.To = "someone@hotmail.com"
ObjSendMail.Subject = "this is the subject"
ObjSendMail.From = "admin@mydomain.com"
ObjSendMail.TextBody = "this is the body"
ObjSendMail.Send
Set ObjSendMail = Nothing
And wondered if anyone has a sample 'working' script or knows if there's something I need to set in the control panel (I have set up a mailbox for 'admin'
Thanks