Changeset 79990 in spip-zone
- Timestamp:
- Jan 12, 2014, 3:31:46 PM (7 years ago)
- Location:
- _plugins_/reservation_evenement/trunk/notifications
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/reservation_evenement/trunk/notifications/reservation_client.php
r79968 r79990 12 12 $options['qui']='client'; 13 13 $subject=_T('reservation:votre_reservation_sur',array('nom'=>$GLOBALS['meta']['nom_site'])); 14 $email=$options['email'] :14 $email=$options['email']; 15 15 $message=recuperer_fond('notifications/contenu_reservation_mail',$options); 16 16 … … 28 28 29 29 if ($archiver = charger_fonction('archiver_notification','inc',true)) { 30 31 30 $envoi='reussi'; 31 if(!$envoyer_mail)$envoi='echec'; 32 32 33 33 $o=array( 34 'quoi'=>$quoi, 34 'recipients'=>$email, 35 'sujet'=>$subject, 35 36 'texte'=>$message, 36 37 'html'=>'oui', 37 38 'id_objet'=>$id_reservation, 38 39 'objet'=>'reservation', 39 'envoi'=>$envoi); 40 'envoi'=>$envoi, 41 'type'=>$quoi); 40 42 41 43 42 $archiver ($ email, $subject, $o);44 $archiver ($o); 43 45 } 44 46 } -
_plugins_/reservation_evenement/trunk/notifications/reservation_vendeur.php
r79968 r79990 38 38 39 39 $o=array( 40 'quoi'=>$quoi, 40 'recipients'=>$email, 41 'sujet'=>$subject, 41 42 'texte'=>$message, 42 43 'html'=>'oui', 43 44 'id_objet'=>$id_reservation, 44 45 'objet'=>'reservation', 45 'envoi'=>$envoi); 46 'envoi'=>$envoi, 47 'type'=>$quoi); 46 48 47 49 48 $archiver ($ email, $subject, $o);50 $archiver ($o); 49 51 } 50 52
Note: See TracChangeset
for help on using the changeset viewer.