small help for email sending
-
Hi.. Didn't find correct Forum so writting in asp.net messageboard. as I am using this website frequently and used to it. I have one html document with some inputboxes and a submit button. On clicking the submit button, the data of all inputboxes should be emailed to an email ID. I am trying to use VBscript for this functionality. as under Set objMessage = CreateObject("CDO.Message") objMessage.Subject = "Subject" objMessage.Sender = "administrator@savilltech.com" objMessage.To = "thaker_hemant@yahoo.co.in" objMessage.TextBody = "Your identity is compromised." objMessage.Send but getting some error... activex can generate object CDO or something My website is online and I will be putting this html page to the same. thanks.
By: Hemant Thaker
-
Hi.. Didn't find correct Forum so writting in asp.net messageboard. as I am using this website frequently and used to it. I have one html document with some inputboxes and a submit button. On clicking the submit button, the data of all inputboxes should be emailed to an email ID. I am trying to use VBscript for this functionality. as under Set objMessage = CreateObject("CDO.Message") objMessage.Subject = "Subject" objMessage.Sender = "administrator@savilltech.com" objMessage.To = "thaker_hemant@yahoo.co.in" objMessage.TextBody = "Your identity is compromised." objMessage.Send but getting some error... activex can generate object CDO or something My website is online and I will be putting this html page to the same. thanks.
By: Hemant Thaker
Hemant Thaker wrote:
Didn't find correct Forum so writting in asp.net messageboard.
Well there is the Web Development Forum[^]
Hemant Thaker wrote:
but getting some error...
What is the error your getting?
Hemant Thaker wrote:
activex can generate object CDO or something
ActiveX has nothing to do with CDO. ActiveX is client side technology, where as CDO is server side.
Yusuf May I help you?