hola foreros, tengo un problemon con el aspmail. ya lo instale y cuando
llamo a la pagina enviamail.asp me sale el siguiente error:
"Sorry, there was an error and your email was not sent.Software caused
connect abort. "
el codigo que uso es el siguiente:
<%
Dim strEmail, strName, strComments, Mail
strEmail = "nombre@hotmail.com"
strName = "jaime"
strComments = "prueba de envio" 'request.form("Comments")
Set Mail = Server.CreateObject("Persits.MailSender")
Mail.Host = "smtp.domicion.com"
Mail.From = strEmail
Mail.AddAddress "micorreo@gmail.com"
Mail.Subject = "prueba de envio"
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
%>
que puede estar pasando para que no funcione, que debo de hacer para
solucionarlo. espero su respuesta. de antemano gracias.
Leer las respuestas