Hello everyone, I am new to ASP and I am getting the following error when I try to submit a from through e-mail. Can any one help on this? Thanks, Richalva29
Check your CreateObject call and make sure that you are passing a valid application ID (it's called ProgID). If you are using a third-party COM object, you may need to register this object first (e.g. regsvr32 myobject.dll). J.D.
I am not hosting the web site that the error is occuring on. Is there anything I can do on my end or is this server issue? The portion of code that is being referenced in the error is as follows: set mailObj = Server.CreateObject("SMTPsvg.Mailer")
Make sure the COM object (i.e. SMTPsvg.Mailer) is registered. Find its DLL and register it as I mentioned in my first post in this thread (you can register it twice, that's no problem). Another issue may be permissions. Make sure that your IIS user has sufficient rights to access this COM object. J.D.
probably the only option you have is to point it out to your system admin, if you're just an end user. it's definitely server side. I'd be sure to provide the sys admin with your complete error code. VG
Guys, thank you so much. Was able to resolve the issue of not sending CDONTS created e-mails. Regards