Ver Mensaje Individual
  #4 (permalink)  
Antiguo 10/07/2015, 17:24
Avatar de xfxstudios
xfxstudios
 
Fecha de Ingreso: junio-2015
Ubicación: Valencia - Venezuela
Mensajes: 2.448
Antigüedad: 8 años, 10 meses
Puntos: 263
Respuesta: Necesito que me puedan apoyar porfavor

funcion mail de php:
Código PHP:
Ver original
  1. <?php
  2. $para      = 'AQUI LA VARIABLE CON TU EMAIL';
  3. $titulo    = 'El título';
  4. $mensaje   = 'Hola';
  5. $cabeceras = 'From: [email protected]' . "\r\n" .
  6.     'Reply-To: [email protected]' . "\r\n" .
  7.     'X-Mailer: PHP/' . phpversion();
  8.  
  9. mail($para, $titulo, $mensaje, $cabeceras);
  10. ?>