Ver Mensaje Individual
  #1 (permalink)  
Antiguo 28/04/2004, 18:41
alicom
 
Fecha de Ingreso: mayo-2002
Mensajes: 84
Antigüedad: 22 años, 11 meses
Puntos: 0
configuracion aspmail

Hola tengo instalado un foro en mi sitio y al mardar el correo de confirmacion al meial 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 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 ¡¡¡¡¡