
03/05/2004, 16:00
|
| | Fecha de Ingreso: mayo-2002
Mensajes: 84
Antigüedad: 23 años Puntos: 0 | |
PRoblemas con ASPMAIL configuracion aspmail
Hola tengo instalado un foro en mi sitio y al mardar el correo de confirmacion al maIl me aparece:
----------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 al modificar la linea de error (en rojo abajo) no funciona.
mi codigo es:
'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 MUCHO LA AYUDA ¡¡¡¡¡ |