Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/07/2003, 02:49
Avatar de Saruman
Saruman
 
Fecha de Ingreso: mayo-2003
Ubicación: Panama city, Panama, Panama
Mensajes: 1.154
Antigüedad: 22 años
Puntos: 5
prueba con este para ver.

<%@ Page Language="VB" %>
<%@ import Namespace="System.Data" %>
<%@ import Namespace="System.Data.OleDb" %>
<%@ import Namespace="System.IO" %>

<%
Response.Expires=-1000
Response.AddHeader "Pragma", "no-cache"
Response.AddHeader "Cache-Control", "no-store"
'Some security settings so they cant go BACK

Dim objMail

Set objMail = Server.CreateObject("CDONTS.NewMail")
objMail.To = "[email protected]"
objMail.From = "Tu nombre"
objMail.Subject = "Mensaje de Prueba"
objMail.Body = "Este es el texto del Mensaje"
objMail.Importance = 2
objMail.Send

Set objMail = Nothing

%>


espero te ayude en algo...
__________________
Saruman

One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkness bind them.