Foros del Web » Programando para Internet » ASP Clásico »

PRoblemas con ASPMAIL

Estas en el tema de PRoblemas con ASPMAIL en el foro de ASP Clásico en Foros del Web. 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 ...
  #1 (permalink)  
Antiguo 03/05/2004, 16:00
 
Fecha de Ingreso: mayo-2002
Mensajes: 84
Antigüedad: 22 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 ¡¡¡¡¡
  #2 (permalink)  
Antiguo 03/05/2004, 16:25
Avatar de u_goldman
Moderador
 
Fecha de Ingreso: enero-2002
Mensajes: 8.031
Antigüedad: 22 años, 4 meses
Puntos: 98
El error te lo envía al instanciar un COM, seguramente no tienes registrada esa dll en el servidor...
Asegúrate que cuentes con ella

Salu2,
__________________
"El hombre que ha empezado a vivir seriamente por dentro, empieza a vivir más sencillamente por fuera."
-- Ernest Hemingway
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 18:19.