hi all,
im trying to send an email from my asp code,
im using the CDO object as follows
Set objMessage = CreateObject("C DO.Message")
objMessage.Subj ect = "CDO Message"
objMessage.From = "an email address"
objMessage.To = "another email address"
objMessage.Text Body = "message body"
objMessage.Send
but my code wouldn't work
do i need to configure an SMTP server for this to work, change some firewall settings, use some more code ??!!!!!!!!
Please help me out im new to this :D
im trying to send an email from my asp code,
im using the CDO object as follows
Set objMessage = CreateObject("C DO.Message")
objMessage.Subj ect = "CDO Message"
objMessage.From = "an email address"
objMessage.To = "another email address"
objMessage.Text Body = "message body"
objMessage.Send
but my code wouldn't work
do i need to configure an SMTP server for this to work, change some firewall settings, use some more code ??!!!!!!!!
Please help me out im new to this :D
Comment