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: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392: 393: 394: 395: 396: 397: 398: 399: 400: 401: 402: 403: 404: 405: 406: 407: 408: 409: 410: 411: 412: 413: 414: 415: 416: 417: 418: 419: 420: 421: 422: 423: 424: 425: 426: 427:
<?php
defined("ICMS_ROOT_PATH") or die("ImpressCMS root path not defined");
icms_loadLanguageFile('core', 'mail');
class icms_messaging_Handler {
private $multimailer;
private $fromEmail;
private $fromName;
private $fromUser;
private $toUsers;
private $toEmails;
private $headers;
private $subject;
private $body;
private $errors;
private $success;
private $isMail;
private $isPM;
private $assignedTags;
private $template;
private $templatedir;
protected $charSet = 'utf-8';
protected $encoding = '8bit';
public function __construct() {
icms_loadLanguageFile('core', 'xoopsmailerlocal');
if (class_exists('XoopsMailerLocal')) {
$this->multimailer = new XoopsMailerLocal();
} else {
$this->multimailer = new icms_messaging_Handler();
}
$this->reset();
}
public function reset() {
$this->fromEmail = "";
$this->fromName = "";
$this->fromUser = null;
$this->priority = '';
$this->toUsers = array();
$this->toEmails = array();
$this->headers = array();
$this->subject = "";
$this->body = "";
$this->errors = array();
$this->success = array();
$this->isMail = false;
$this->isPM = false;
$this->assignedTags = array();
$this->template = "";
$this->templatedir = "";
$this->LE ="\n";
}
public function setTemplateDir($value) {
if (substr($value, -1, 1) != "/") {
$value .= "/";
}
$this->templatedir = $value;
}
public function setTemplate($value) {
$this->template = $value;
}
public function setFromEmail($value) {
$this->fromEmail = trim($value);
}
public function setFromName($value) {
$this->fromName = trim($value);
}
public function setFromUser(&$user) {
if (get_class($user) == "icms_member_user_Object") {
$this->fromUser =& $user;
}
}
public function setPriority($value) {
$this->priority = trim($value);
}
public function setSubject($value) {
$this->subject = trim($value);
}
public function setBody($value) {
$this->body = trim($value);
}
public function useMail() {
$this->isMail = true;
}
public function usePM() {
$this->isPM = true;
}
public function send($debug = false) {
global $icmsConfig;
if ($this->body == "" && $this->template == "") {
if ($debug) {
$this->errors[] = _MAIL_MSGBODY;
}
return false;
} elseif ($this->template != "") {
$path = ($this->templatedir != "") ? $this->templatedir . "" . $this->template : (ICMS_ROOT_PATH . "/language/" . $icmsConfig['language'] . "/mail_template/" . $this->template);
if (!($fd = @fopen($path, 'r'))) {
if ($debug) {
$this->errors[] = _MAIL_FAILOPTPL;
}
return false;
}
$this->setBody(fread($fd, filesize($path)));
}
if ($this->isMail || !empty($this->toEmails)) {
if (!empty($this->priority)) {
$this->headers[] = "X-Priority: " . $this->priority;
}
$headers = join($this->LE, $this->headers);
}
global $icmsConfig;
$this->assign ('X_ADMINMAIL', $icmsConfig['adminmail']);
$this->assign ('X_SITENAME', $icmsConfig['sitename']);
$this->assign ('X_SITEURL', ICMS_URL);
foreach ($this->assignedTags as $k => $v) {
$this->body = str_replace("{" . $k . "}", $v, $this->body);
$this->subject = str_replace("{" . $k . "}", $v, $this->subject);
}
$this->body = str_replace("\r\n", "\n", $this->body);
$this->body = str_replace("\r", "\n", $this->body);
$this->body = str_replace("\n", $this->LE, $this->body);
foreach ($this->toEmails as $mailaddr) {
if (!$this->sendMail($mailaddr, $this->subject, $this->body, $headers)) {
if ($debug) {
$this->errors[] = sprintf(_MAIL_SENDMAILNG, $mailaddr);
}
} else {
if ($debug) {
$this->success[] = sprintf(_MAIL_MAILGOOD, $mailaddr);
}
}
}
foreach ($this->toUsers as $user) {
$subject = str_replace("{X_UNAME}", $user->getVar("uname"), $this->subject);
$text = str_replace("{X_USERLOGINNAME}", $user->getVar("login_name"), $this->body);
$text = str_replace("{X_UID}", $user->getVar("uid"), $text);
$text = str_replace("{X_UEMAIL}", $user->getVar("email"), $text);
$text = str_replace("{X_UNAME}", $user->getVar("uname"), $text);
$text = str_replace("{X_UACTLINK}", ICMS_URL . "/user.php?op=actv&id=".$user->getVar("uid") . "&actkey=".$user->getVar('actkey'), $text);
if ($this->isMail) {
if (!$this->sendMail($user->getVar("email"), $subject, $text, $headers)) {
if ($debug) {
$this->errors[] = sprintf(_MAIL_SENDMAILNG, $user->getVar("uname"));
}
} else {
if ($debug) {
$this->success[] = sprintf(_MAIL_MAILGOOD, $user->getVar("uname"));
}
}
}
if ($this->isPM) {
if (!$this->sendPM($user->getVar("uid"), $subject, $text)) {
if ($debug) {
$this->errors[] = sprintf(_MAIL_SENDPMNG, $user->getVar("uname"));
}
} else {
if ($debug) {
$this->success[] = sprintf(_MAIL_PMGOOD, $user->getVar("uname"));
}
}
}
flush();
}
if (count($this->errors) > 0) {
return false;
}
return true;
}
public function sendPM($uid, $subject, $body) {
$pm_handler = icms::handler('icms_data_privmessage');
$pm =& $pm_handler->create();
$pm->setVar("subject", $subject);
$pm->setVar('from_userid', !empty($this->fromUser) ? $this->fromUser->getVar('uid') : icms::$user->getVar('uid'));
$pm->setVar("msg_text", $body);
$pm->setVar("to_userid", $uid);
if (!$pm_handler->insert($pm)) {
return false;
}
return true;
}
public function sendMail($email, $subject, $body, $headers) {
$subject = $this->multimailer->encodeSubject($subject);
$this->multimailer->encodeBody($body);
$this->multimailer->ClearAllRecipients();
$this->multimailer->AddAddress($email);
$this->multimailer->Subject = $subject;
$this->multimailer->Body = $body;
$this->multimailer->CharSet = $this->charSet;
$this->multimailer->Encoding = $this->encoding;
if (!empty($this->fromName)) {
$this->multimailer->FromName = $this->multimailer->encodeFromName($this->fromName);
}
if (!empty($this->fromEmail)) {
$this->multimailer->Sender = $this->multimailer->From = $this->fromEmail;
}
$this->multimailer->ClearCustomHeaders();
foreach ($this->headers as $header) {
$this->multimailer->AddCustomHeader($header);
}
if (!$this->multimailer->Send()) {
$this->errors[] = $this->multimailer->ErrorInfo;
return FALSE;
}
return TRUE;
}
public function getErrors($ashtml = true) {
if (!$ashtml) {
return $this->errors;
} else {
if (!empty($this->errors)) {
$ret = "<h4>" . _ERRORS . "</h4>";
foreach ($this->errors as $error) {
$ret .= $error . "<br />";
}
} else {
$ret = "";
}
return $ret;
}
}
public function getSuccess($ashtml = true) {
if (!$ashtml) {
return $this->success;
} else {
$ret = "";
if (!empty($this->success)) {
foreach ($this->success as $suc) {
$ret .= $suc . "<br />";
}
}
return $ret;
}
}
public function assign($tag, $value = null) {
if (is_array($tag)) {
foreach ($tag as $k => $v) {
$this->assign($k, $v);
}
} else {
if (!empty($tag) && isset($value)) {
$tag = strtoupper(trim($tag));
$this->assignedTags[$tag] = $value;
}
}
}
public function addHeaders($value) {
$this->headers[] = trim($value) . $this->LE;
}
public function setToEmails($email) {
if (!is_array($email)) {
if (preg_match("/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+([\.][a-z0-9-]+)+$/i", $email)) {
array_push($this->toEmails, $email);
}
} else {
foreach ($email as $e) {
$this->setToEmails($e);
}
}
}
public function setToUsers(&$user) {
if (!is_array($user)) {
if (get_class($user) == "icms_member_user_Object") {
array_push($this->toUsers, $user);
}
} else {
foreach ($user as $u) {
$this->setToUsers($u);
}
}
}
public function setToGroups($group) {
if (!is_array($group)) {
if (get_class($group) == "icms_member_group_Object") {
$member_handler = icms::handler('icms_member');
$this->setToUsers($member_handler->getUsersByGroup($group->getVar('groupid'), true));
}
} else {
foreach ($group as $g) {
$this->setToGroups($g);
}
}
}
}