Tema: Aspemail
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 13/08/2002, 10:03
masterdima
 
Fecha de Ingreso: agosto-2002
Mensajes: 4
Antigüedad: 22 años, 9 meses
Puntos: 0
Aspemail

<%
Dim strEmail, strName, strComments, Mail
strEmail = "hola"
strName = "Cómo te"
strComments = "va"

Set Mail = Server.CreateObject("Persits.MailSender" )
Mail.Host = "www5.domaindlx.com/masterdimar/"
Mail.From = strEmail
Mail.AddAddress "[email protected]"
Mail.Subject = "YOUR SUBJECT HERE"
Mail.Body = "Email: " & strEmail & vbCrLf & "Name: " & strName & vbCrLf & "Comments: " & vbCrLf & strComments
On Error Resume Next
Mail.Send
Set Mail = Nothing
if Err <> 0 then
Response.Write "Sorry, there was an error and your email was not sent." & Err.Description
end if
%>

Dicho código me tira este error

Sorry, there was an error and your email was not sent.Winsock error 11004 (0x2AFC) occurred.


ALGUIEN SABE QUE ES???
Recién me meto con esto de los mails