mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-01 00:03:18 +01:00
103 lines
2.8 KiB
PHP
103 lines
2.8 KiB
PHP
<?php
|
|
/*******************************************************************************
|
|
* Copyright (C) 2007 Easter-eggs
|
|
* http://ldapsaisie.labs.libre-entreprise.org
|
|
*
|
|
* Author: See AUTHORS file in top-level directory.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License version 2
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
******************************************************************************/
|
|
|
|
// Messages d'erreur
|
|
|
|
// Support
|
|
LSerror :: defineError('MAIL_SUPPORT_01',
|
|
_("MAIL Support : Pear::MAIL is missing.")
|
|
);
|
|
|
|
// Autres erreurs
|
|
LSerror :: defineError('MAIL_00',
|
|
_("MAIL Error : %{msg}")
|
|
);
|
|
|
|
LSerror :: defineError('MAIL_01',
|
|
_("MAIL : Error sending your email")
|
|
);
|
|
|
|
/**
|
|
* Verification du support MAIL par ldapSaisie
|
|
*
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
*
|
|
* @retval boolean true si MAIL est pleinement supporté, false sinon
|
|
*/
|
|
function LSaddon_mail_support() {
|
|
$retval=true;
|
|
|
|
// Dependance de librairie
|
|
if (!class_exists('Mail')) {
|
|
if(!LSsession::includeFile(PEAR_MAIL)) {
|
|
LSerror :: addErrorCode('MAIL_SUPPORT_01');
|
|
$retval=false;
|
|
}
|
|
}
|
|
|
|
return $retval;
|
|
}
|
|
|
|
/**
|
|
* Envoie d'un mail
|
|
*
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
*
|
|
* @retval boolean true si MAIL est pleinement supporté, false sinon
|
|
*/
|
|
function sendMail($to,$subject,$msg,$headers=array()) {
|
|
$mail_obj = & Mail::factory(MAIL_SEND_METHOD, $MAIL_SEND_PARAMS);
|
|
|
|
if(is_array($MAIL_HEARDERS)) {
|
|
$headers = array_merge($headers,$MAIL_HEARDERS);
|
|
}
|
|
if ($subject) {
|
|
$headers["Subject"] = $subject;
|
|
}
|
|
if (!isset($headers['From']) && (LSsession :: getEmailSender() != "")) {
|
|
$headers['From'] = LSsession :: getEmailSender();
|
|
}
|
|
$headers["To"] = $to;
|
|
|
|
$to = array (
|
|
'To' => $to
|
|
);
|
|
|
|
foreach(array_keys($headers) as $header) {
|
|
if(strtoupper($header) == 'BCC') {
|
|
$to['BCC'] = $headers[$header];
|
|
}
|
|
elseif(strtoupper($header) == 'CC') {
|
|
$to['CC'] = $headers[$header];
|
|
}
|
|
}
|
|
|
|
$ret = $mail_obj -> send($to,$headers,$msg);
|
|
|
|
if ($ret instanceof PEAR_Error) {
|
|
LSerror :: addErrorCode('MAIL_01');
|
|
LSerror :: addErrorCode('MAIL_00',$ret -> getMessage());
|
|
return;
|
|
}
|
|
return true;
|
|
}
|
|
?>
|