Ver Mensaje Individual
  #8 (permalink)  
Antiguo 26/05/2006, 00:00
angelseron
 
Fecha de Ingreso: abril-2005
Mensajes: 247
Antigüedad: 20 años, 1 mes
Puntos: 1
gracias man por responderme otra vez , llame al hosting y me dicen que efectivamente no acepta jmail pero si cdonts, pero la verdad man nose de asp nose si me puedar dar una ayudita con el codigo que te mande y acoplar alli el cdonts, tb le dije a mi hostin que me mande un codigo de ejemplo pero nada hasta ahora y ya no responde lo peor es que ya pagamos el espacio.

Viendo el link que me mandastes deduci que debe ser este el que debo utilizar

<%
set objMail = Server.CreateObject("CDONTS.Newmail")
objMail.From = "[email protected]" ' Specify sender's address (only one)
objMail.To = "[email protected]" 'Use ; to seperate items in a list of recipients
objMail.Cc = "[email protected]"
objMail.Bcc = "[email protected]"
objMail.AttachFile = "c:\images\cakes.gif" 'How to add an attachment
objMail.Subject = "Sending Email with ASP using CDONTS"
objMail.Body = "Please disregard this email. It is only a test."
'---or---
objMail.Body = "<html><body><h1>Please disregard this email!</h1>It is only a test</body></html>"
objMail.BodyFormat = 0
'--Finally, send it
objMail.Send
%>



Me pregunto si es asi de facil copiarlo y guardarlo a este con thankyou_page.asp ya que ese archico es que que contiene este codigo
http://banthonyburroughs.com/codigo-form.html


Gracias.