AGRADEZCO AYUDAS!!!


<%
casilla_destino = "[email protected]"
servidor = "mail.ccardonas.com"
varBody = varBody & "<p style=""margin-top: 0; margin-bottom: 0""><font face=""Verdana"" size=""1""><STRONG>Formulario: </STRONG></font></p>"
varBody = varBody & "<p style=""margin-top: 0; margin-bottom: 0""><font face=""Verdana"" size=""1""> </font></p>"
varBody = varBody & "<p style=""margin-top: 0; margin-bottom: 0""><font face=""Verdana"" size=""1""><STRONG>Nombre: </STRONG> " & Request("nombre") & "</font>"
Set Msg = Server.CreateObject("JMail.Message")
Msg.Logging = True
Msg.Silent = True
Msg.From = casilla_destino
Msg.AddRecipient casilla_destino
Msg.Subject = "Formulario"
Msg.HTMLBody = varBody
if not Msg.Send(servidor) then
Error = True
else
Error = False
end if
%>