Ver Mensaje Individual
  #3 (permalink)  
Antiguo 21/03/2003, 12:05
Avatar de syntex
syntex
 
Fecha de Ingreso: noviembre-2002
Ubicación: Cataluña
Mensajes: 978
Antigüedad: 21 años, 5 meses
Puntos: 4
Si lo he encontgrado como tú me dijiste,
ya que lo expongo aquí por si alguien le pudiera ayudar


<?php
$sfrom="(Mi direccion de correo) "; //cuenta que envia
$sdestinatario="(Destinatario) "; //cuenta destino
$ssubject=""; //subject
$shtml=""; //mensaje
$sheader="From:".$sfrom."\nReply-To:".$sfrom."\n";
$sheader=$sheader."X-Mailer:PHP/".phpversion()."\n";
$sheader=$sheader."Mime-Version: 1.0\n";
$sheader=$sheader."Content-Type: text/html";


mail($sdestinatario,$ssubject,$shtml,$sheader);
?>

Gracias Cluser