What is the T3 PostMan plugin ?
T3 PostMan is a complete pm/email suite for seditio framework.
Features:
– Mass PM / Email Users.
– Number of messages to send at once.
– Advance criteria form based on users profiles.
– Include user information in messages (user id, name, email, activation link)
– Integrated PHPMailer 1.73
—- SMTP authentication (including SSL).
—- PHP SendMail
—- HTML emails.
What’s new ?
Version 1.1
————
- Applied stripslashes to the “From”, “Subject”, “Message” fields
- Added a new configuration option “Email Encoding”
Contributors: donP
Version 1.0
————
First stable release
Feed for this Entry Trackback Address The permalink
3 Responses to “T3 PostMan”
June 18th, 2007 at 7:33 am
Fatal error: Cannot redaclare class postoffice in DIR\postoffice.class.php on lime 50
June 18th, 2007 at 11:33 am
* —————-TEFRA HACK —————*/
function sed_mail($fmail, $subject, $body, $headers=”)
{
global $cfg;
if(empty($fmail)) return(FALSE);
require(”plugins/postman/inc/postoffice.class.php”);
$PostMan = new PostOffice();
$PostMan->IsHTML(false);
$PostMan->FromName = $cfg['maintitle'];
$PostMan->Subject = $psoptions['subject'];
$PostMan->AddAddress($fmail);
$PostMan->Subject = $subject;
$PostMan->Body = $body;
$res['email'] = $PostMan->Send();
$res['error_info'] = $PostMan->ErrorInfo;
$PostMan->ClearAddresses();
if($res['email'])
{
sed_stat_inc(’totalmailsent’);
return(TRUE);
}
else
{
return(FALSE);
}
}
Fatal error: Cannot redeclare class postoffice in D:\WEB\plugins\postman\inc\postoffice.class.php on line 50


Recent Comments