Subversion Repositories Applications.annuaire

Rev

Rev 258 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
258 david 1
<?php
291 jpm 2
// declare(encoding='UTF-8');
3
/**
4
 * Service d'envoie de courriel.
5
 *
6
 * @category	php 5.2
7
 * @package		Annuaire::Services
8
 * @author		Aurélien PERONNET <aurelien@tela-botanica.org>
9
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
10
 * @copyright	Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
11
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
12
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
13
 * @version		$Id$
14
 */
15
class EnvoiMessage extends JRestService {
258 david 16
 
17
	public function getElement($uid){
291 jpm 18
		$identificateur = new IdentificationControleur();
19
		$login = $identificateur->obtenirLoginUtilisateurParCookie();
20
 
21
		$identification = $login;
22
 
23
		if (!$identification || trim($identification) == '') {
24
			print 'false';
25
			return;
26
		}
27
		$id_annuaire = Config::get('annuaire_defaut');
28
		$contenu_message = $_GET['contenu_message'];
29
		$sujet_message = $_GET['sujet_message'];
30
		$destinataire = $_GET['destinataire'];
31
		$redirect = $_GET['redirect'];
32
 
33
		$messagerie = new MessageControleur();
34
 
35
		// Remplacement les identifiants par leurs destinataires
36
		$destinataire_mail = $messagerie->obtenirMailParTableauId($id_annuaire, array($destinataire));
37
 
38
		if (empty($destinataire_mail)) {
39
			print 'false';
40
			return;
41
		}
42
 
43
		$destinataire_mail = $destinataire_mail[0];
44
 
45
		$retour = $messagerie->envoyerMail($identification, $destinataire_mail, $sujet_message, $contenu_message);
258 david 46
 
291 jpm 47
		if ($retour) {
48
			header('Location: '.'http://'.$redirect);
49
			exit;
50
		} else {
51
			print 'false';
52
		}
258 david 53
	}
54
}
291 jpm 55
?>