Hello
I am new to ASP .I am geeting the error. Please Help me.
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 .
/shah/wap_ASPMail.asp, line 24
My code is
<%@ Language=“VbScript”%>
<%If Request.ServerVariables("REQUEST_METHOD") = "POST" Then%>Email Form
<% Dim SenderEmail Dim Subject Dim Recipient Dim CC Dim BodySenderEmail = Request.Form(“from”)
Recipient = Request.Form(“to”)
Recipient = Request.Form(“to”)
CC = Request.Form(“cc”)
Subject = Request.Form (“subject”)
Body = Request.Form(“message”)
Set ASPMail = Server.CreateObject (“ASPMail.SMTPsvg”)
ASPMail.RemoteHost = “smtp.test.myserver.com”
ASPMail.FromAddress = Senderemail
ASPMail.Subject = Subject
ASPMail.AddRecipient Recipient
If CC <> “” Then
ASPMail.AddCC CC
End If
’ 1 - Highest priority (Urgent)
’ 3 - Normal
’ 5 - Lowest
ASPMail.Priority = 1
ASPMail.AltBody = Body
’ Send it…
ASPMail.SendMail
%>
<%Else%>
| From: | |
| To: | |
| Cc: | |
| Subject: |
…
Any suggetion will be appreatiated