Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/11/2008, 13:37
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 9 meses
Puntos: 2135
Respuesta: Mail form php a multiples emails segun opcion

Facil pones un select box y luego en PHP comparas, por ejemplo:
Código php:
Ver original
  1. switch($_POST['destino']) {
  2. case 'admin':
  3.       $to = "[email protected]";
  4.       break;
  5. case 'gerencia':
  6.       $to = "[email protected]";
  7.       break;
  8. }
  9.  
  10. mail($to...);

Saludos.