Ver Mensaje Individual
  #5 (permalink)  
Antiguo 20/12/2011, 02:40
Jesu20
 
Fecha de Ingreso: noviembre-2011
Ubicación: Zaragoza
Mensajes: 16
Antigüedad: 12 años, 5 meses
Puntos: 0
Respuesta: Lista de correo

<code>

<? PHP

$message = $_GET['message'] ;

$email = $_GET['emailFrom'] ;

mail( "[email protected]", "Subject of email, change this to whatever you want", $message, "From: $emailFrom" );

print "Your email has been sent, click xxxxx (insert html link) to return to the main page";

?>