Tema: Ayuda
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 02/05/2005, 08:04
felipe31
 
Fecha de Ingreso: agosto-2003
Mensajes: 109
Antigüedad: 21 años, 9 meses
Puntos: 0
Ayuda

Hola tengo un codigo ASP para mandar información al mail pero no se porque no responde aca dejo el codigo para que lo revisen espero una pronta respuesta gracias:


<%
Response.addHeader "pragma", "no-cache"
Response.CacheControl = "Private"
Response.Expires = 0

alumno='FELIPE'


strHost = "200.14.80.130"
Set Mail = Server.CreateObject("Persits.MailSender")
Mail.Host = strHost
Mail.From = "[email protected]"
'Mail.FromName = "mundo-compra.com"
Mail.AddAddress "[email protected]"
'Asunto del mensaje
Mail.Subject = "Solicitud de búsqueda de Hogar"

Mail.Body = "<html><body><table border=1 cellpadding=0 cellspacing=0 width=800>"&_
"<tr><td align="center"><img align='middle' border='0' src='http://www.mundo-compra.cl/Invitacion/logo.jpg'></td></tr>"&_
"<tr><td width=769><h1 align='center'>INVITACIÓN</h1></td></tr>"&_
"<tr><td width=769>Señor (a)" & alumno & "</td></tr>"&_
"<tr><td width=769>Atte.</td></tr>"&_
"<tr><td width=769>VERONICA VALDES ARAVENA</td></tr>"&_
"<tr><td width=769>SECRETARIA RECEPCIONISTA</td></tr>"&_
"<tr><td width=769>PROYECTO ARTERIA</td></tr>"&_
"<tr><td width=769>INTEGRAMEDICA S.A.</td></tr>"&_
"<tr><td width=769>[email protected]</td></tr>"&_
"<tr><td width=769>669 69 88</td></tr></table></body></html>"

Mail.IsHTML = True


Mail.Send

response.write("mensaje=Se envio correctamente el E-mail")
%>
<HTML>
<HEAD>
<TITLE></TITLE>
<META name="description" content="">
<META name="keywords" content="">
<META name="generator" content="CuteHTML">
<meta http-equiv="refresh" content="1;URL=Invitacion.swf">
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#800080">
</body>
</html>