----------0------
Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
/forum/functions/functions_send_mail.asp, line 286
-----------0--------
Tengo ASPMAIL y mi correo saliente es "alicom.cl" pero no se donde modificar el codigo, coloco:
'AspMail component
Case "AspMail"
'Create the e-mail server object
Set objAspMail = Server.CreateObject("Persits.MailSender")
With objAspMail
'Out going SMTP mail server address
.RemoteHost = strOutgoingMailServer
'Who the e-mail is from
.FromAddress = strFromEmailAddress
.FromName = strFromEmailName
'Who the e-mail is sent to
.AddRecipient " ", strRecipientEmailAddress
'The subject of the e-mail
.Subject = strSubject
'Set the e-mail body format (BodyHTML=HTML Body=Text)
If blnHTML = True Then
.ContentType = "text/HTML"
End If
'The main body of the e-mail
.BodyText = strEmailBodyMessage & strEmailBodyAppendMessage
'Send the e-mail
If NOT strOutgoingMailServer = "" Then .SendMail
End With
'Close the server mail object
Set objAspMail = Nothing
End Select
'Set the returned value of the function to true
SendMail = True
End Function
%>
SE AGRADECE LA AYUDA ¡¡¡¡¡
