<%
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