git-svn-id: https://192.168.0.254/svn/Proyectos.FundacionLQDVI_WebCongresos/trunk@2 94ccb1af-fd9d-d947-8d90-7f70ea60afc8
54 lines
1.8 KiB
PHP
54 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* @version $Id: kunena.mail.php 519 2009-03-17 19:33:59Z mahagr $
|
|
* Kunena Component
|
|
* @package Kunena
|
|
*
|
|
* @Copyright (C) 2008 - 2009 Kunena Team All rights reserved
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
|
|
* @link http://www.kunena.com
|
|
*
|
|
* Based on FireBoard Component
|
|
* @Copyright (C) 2006 - 2007 Best Of Joomla All rights reserved
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
|
|
* @link http://www.bestofjoomla.com
|
|
*
|
|
* Based on Joomlaboard Component
|
|
* @copyright (C) 2000 - 2004 TSMF / Jan de Graaff / All Rights Reserved
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
|
|
* @author TSMF & Jan de Graaff
|
|
**/
|
|
|
|
defined( '_JEXEC' ) or die('Restricted access');
|
|
|
|
class fbMail
|
|
{
|
|
/**
|
|
* function to send mails (uses JUtility::sendMail in mambo 4.5.1 and later, falls back to phpmail if JUtility::sendMail doesn't exist
|
|
*
|
|
* @param string $fromMail
|
|
* @param string $fromName
|
|
* @param string $toMail
|
|
* @param string $subject
|
|
* @param string $body
|
|
* message to be send
|
|
*/
|
|
function send($fromMail, $fromName, $toMail, $subject, $body)
|
|
{
|
|
if (function_exists(JUtility::sendMail))
|
|
JUtility::sendMail($fromMail, $fromName, $toMail, $subject, $body);
|
|
else
|
|
{
|
|
$headers = "MIME-Version: 1.0\r\n";
|
|
$headers .= "Content-Type: text/plain; charset=\"utf-8\"\r\n";
|
|
$headers .= "From: $fromName <$fromMail>\r\n";
|
|
$headers .= "Reply-To: $fromName <$fromMail>\r\n";
|
|
$headers .= "X-Priority: 3\r\n";
|
|
$headers .= "X-MSMail-Priority: Low\r\n";
|
|
$headers .= "X-Mailer: Kunena Forum\r\n";
|
|
mail($toMail, $subject, $body, $headers);
|
|
}
|
|
}
|
|
}
|
|
?>
|