| |
aezriel
Posts: 4
Score: 0
Joined: 9/7/2004
From:
Status: offline
|
In my asp where it suppose to send email to user, every time the page is loaded, I get the server object error, which looks like this: Error Type: Server object, ASP 0177 (0x800401F3) Invalid ProgID. For additional information specific to this message please visit the Microsoft Online Support site located at: http://www.microsoft.com/contentredirect.asp. /pwd/password.asp, line 30 the following is my code: Set JMail=Server.CreateObject("JMail.SMTPMail") <=== line 30 Body="abc def ..." JMail.ServerAddress="my.domain.com" JMail.ContentType="text/html" JMail.sender="me" JMail.sendername="me" JMail.subject="test" JMail.AddRecipient "me@domain.com" JMail.Body=Body JMail.Execute Is there anything wrong with my code or I have to set the object JMail somewhere else (register JMail in registry? Where is the dll in this case?) Any idea? Thanks.
|
|