-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.inc.php
More file actions
28 lines (22 loc) · 742 Bytes
/
config.inc.php
File metadata and controls
28 lines (22 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/**
* PHPMailer Addon
*
* @author markus[dot]staab[at]redaxo[dot]de Markus Staab
*
* @package redaxo4
* @version svn:$Id$
*/
$mypage = 'phpmailer';
$REX['ADDON']['name'][$mypage] = 'PHPMailer';
$REX['ADDON']['perm'][$mypage] = 'phpmailer[]';
$REX['ADDON']['version'][$mypage] = "2.8";
$REX['ADDON']['author'][$mypage] = "Markus Staab, Brent R. Matzelle";
$REX['ADDON']['supportpage'][$mypage] = "www.redaxo.org/de/forum";
$REX['PERM'][] = 'phpmailer[]';
if ($REX['REDAXO'])
{
$I18N->appendFile($REX['INCLUDE_PATH'].'/addons/'.$mypage.'/lang/');
}
require_once($REX['INCLUDE_PATH']. '/addons/phpmailer/classes/class.phpmailer.php');
require_once($REX['INCLUDE_PATH']. '/addons/phpmailer/classes/class.rex_mailer.inc.php');