C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\xoops\html\class\xoopsmailer.php


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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
<?php
// $Id: xoopsmailer.php,v 1.18.6.5.2.1 2005/09/18 12:59:09 mithyt2 Exp $
//  ------------------------------------------------------------------------ //
//                XOOPS - PHP Content Management System                      //
//                    Copyright (c) 2000 XOOPS.org                           //
//                       <http://www.xoops.org/>                             //
//  ------------------------------------------------------------------------ //
//  This program is free software; you can redistribute it and/or modify     //
//  it under the terms of the GNU General Public License as published by     //
//  the Free Software Foundation; either version 2 of the License, or        //
//  (at your option) any later version.                                      //
//                                                                           //
//  You may not change or alter any portion of this comment or credits       //
//  of supporting developers from this source code or any supporting         //
//  source code which is considered copyrighted (c) material of the          //
//  original comment or credit authors.                                      //
//                                                                           //
//  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 //
//  ------------------------------------------------------------------------ //
// Author: Kazumi Ono (AKA onokazu)                                          //
// URL: http://www.myweb.ne.jp/, http://www.xoops.org/, http://jp.xoops.org/ //
// Project: The XOOPS Project                                                //
// ------------------------------------------------------------------------- //
if (!defined("XOOPS_ROOT_PATH")) {
    die(
"XOOPS root path not defined");
}
if (isset(
$GLOBALS['xoopsConfig']['language']) && file_exists(XOOPS_ROOT_PATH.'/language/'.$GLOBALS['xoopsConfig']['language'].'/mail.php')) {
    include_once 
XOOPS_ROOT_PATH.'/language/'.$GLOBALS['xoopsConfig']['language'].'/mail.php';
} else {
    include_once 
XOOPS_ROOT_PATH.'/language/english/mail.php';
}

/**
 * The new Multimailer class that will carry out the actual sending and will later replace this class. 
 * If you're writing new code, please use that class instead.
 */
include_once(XOOPS_ROOT_PATH."/class/mail/xoopsmultimailer.php");


/**
 * Class for sending mail.
 *
 * Changed to use the facilities of  {@link XoopsMultiMailer}
 *
 * @deprecated    use {@link XoopsMultiMailer} instead.
 *
 * @package        class
 * @subpackage    mail
 *
 * @author        Kazumi Ono    <onokazu@xoops.org>
 * @copyright    (c) 2000-2003 The Xoops Project - www.xoops.org
 */
class XoopsMailer
{
    
/**
     * reference to a {@link XoopsMultiMailer}
     *
     * @var        XoopsMultiMailer
     * @access    private
     * @since    21.02.2003 14:14:13
     */
    
var $multimailer;

    
// sender email address
    // private
    
var $fromEmail;

    
// sender name
    // private
    
var $fromName;

    
// RMV-NOTIFY
    // sender UID
    // private
    
var $fromUser;

    
// array of user class objects
    // private
    
var $toUsers;

    
// array of email addresses
    // private
    
var $toEmails;

    
// custom headers
    // private
    
var $headers;

    
// subjet of mail
    // private
    
var $subject;

    
// body of mail
    // private
    
var $body;

    
// error messages
    // private
    
var $errors;

    
// messages upon success
    // private
    
var $success;

    
// private
    
var $isMail;

    
// private
    
var $isPM;

    
// private
    
var $assignedTags;

    
// private
    
var $template;

    
// private
    
var $templatedir;

    
// protected
    
var $charSet 'iso-8859-1';

    
// protected
    
var $encoding '8bit';

    function 
XoopsMailer()
    {

        
$this->multimailer = new XoopsMultiMailer();
        
$this->reset();
    }

    
// public
    // reset all properties to default
    
function reset()
    {
        
$this->fromEmail "";
        
$this->fromName "";
        
$this->fromUser null// RMV-NOTIFY
        
$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 "";
        
// Change below to \r\n if you have problem sending mail
        
$this->LE ="\n";
    }

    
// public
    
function setTemplateDir($value)
    {
        if ( 
substr($value, -11) != "/" ) {
            
$value .= "/";
        }
        
$this->templatedir $value;
    }

    
// public
    
function setTemplate($value)
    {
        
$this->template $value;
    }

    
// pupblic
    
function setFromEmail($value)
    {
        
$this->fromEmail trim($value);
    }

    
// public
    
function setFromName($value)
    {
        
$this->fromName trim($value);
    }

    
// RMV-NOTIFY
    // public
    
function setFromUser(&$user)
    {
        if ( 
strtolower(get_class($user)) == "xoopsuser" ) {
            
$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 
$xoopsConfig;
        if ( 
$this->body == "" && $this->template == "" ) {
            if (
$debug) {
                
$this->errors[] = _MAIL_MSGBODY;
            }
            return 
false;
        } elseif ( 
$this->template != "" ) {
            
$path = ( $this->templatedir != "" ) ? $this->templatedir."".$this->template : (XOOPS_ROOT_PATH."/language/".$xoopsConfig['language']."/mail_template/".$this->template);
            if ( !(
$fd = @fopen($path'r')) ) {
                if (
$debug) {
                    
$this->errors[] = _MAIL_FAILOPTPL;
                }
                        return 
false;
                }
            
$this->setBody(fread($fdfilesize($path)));
        }

        
// for sending mail only
        
if ( $this->isMail  || !empty($this->toEmails) ) {
            if (!empty(
$this->priority)) {
                
$this->headers[] = "X-Priority: " $this->priority;
            }
            
$this->headers[] = "X-Mailer: PHP/".phpversion();
            
$this->headers[] = "Return-Path: ".$this->fromEmail;
            
$headers join($this->LE$this->headers);
        }

// TODO: we should have an option of no-reply for private messages and emails
// to which we do not accept replies.  e.g. the site admin doesn't want a
// a lot of message from people trying to unsubscribe.  Just make sure to
// give good instructions in the message.

        // add some standard tags (user-dependent tags are included later)
        
global $xoopsConfig;
        
$this->assign ('X_ADMINMAIL'$xoopsConfig['adminmail']);
        
$this->assign ('X_SITENAME'$xoopsConfig['sitename']);
        
$this->assign ('X_SITEURL'XOOPS_URL);
        
// TODO: also X_ADMINNAME??
        // TODO: X_SIGNATURE, X_DISCLAIMER ?? - these are probably best
        //  done as includes if mail templates ever get this sophisticated

        // replace tags with actual values
        
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);

        
// send mail to specified mail addresses, if any
        
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);
                }
            }
        }

        
// send message to specified users, if any

        // NOTE: we don't send to LIST of recipients, because the tags
        // below are dependent on the user identity; i.e. each user
        // receives (potentially) a different message

        
foreach ( $this->toUsers as $user ) {
            
// set some user specific variables
            
$subject str_replace("{X_UNAME}"$user->getVar("uname"), $this->subject );
            
$subject str_replace("{X_LOGINNAME}"$user->getVar("loginname"), $subject );
            
$text str_replace("{X_UID}"$user->getVar("uid"), $this->body );
            
$text str_replace("{X_UEMAIL}"$user->getVar("email"), $text );
            
$text str_replace("{X_UNAME}"$user->getVar("uname"), $text );
            
$text str_replace("{X_LOGINNAME}"$user->getVar("loginname"), $text );
            
$text str_replace("{X_UACTLINK}"XOOPS_URL."/modules/profile/activate.php?op=actv&id=".$user->getVar("uid")."&actkey=".$user->getVar('actkey'), $text );
            
// send mail
            
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"));
                    }
                }
            }
            
// send private message
            
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) > ) {
            return 
false;
        }
        return 
true;
    }

    
// private
    
function sendPM($uid$subject$body)
    {
        global 
$xoopsUser;
        
$pm_handler =& xoops_getmodulehandler('privmessage''pm');
        if (!
is_object($pm_handler)) {
            if ( 
file_exists(XOOPS_ROOT_PATH."/language/".$GLOBALS['xoopsConfig']['language']."/error.php") ) {
                include_once 
XOOPS_ROOT_PATH."/language/".$GLOBALS['xoopsConfig']['language']."/error.php";
            } else {
                include_once 
XOOPS_ROOT_PATH."/language/english/error.php";
            }
            
$this->errors[] = _ER_MAIL_PMMODULENOEXIST;
            return 
false;
        }
        
$pm =& $pm_handler->create();
        
$pm->setVar("subject"$subject);
        
// RMV-NOTIFY
        
$pm->setVar('from_userid', !empty($this->fromUser) ? $this->fromUser->getVar('uid') : $xoopsUser->getVar('uid'));
        
$pm->setVar("msg_text"$body);
        
$pm->setVar("to_userid"$uid);
        if (!
$pm_handler->insert($pm)) {
            return 
false;
        }
        return 
true;
    }

    
/**
     * Send email
     *
     * Uses the new XoopsMultiMailer
     *
     * @param    string
     * @param    string
     * @param    string
     * @return    boolean    FALSE on error.
     */

    
function sendMail($email$subject$body$headers)
    {
        
$subject $this->encodeSubject($subject);
        
$this->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->encodeFromName($this->fromName);
        }
        if (!empty(
$this->fromEmail)) {
            
$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));
// RMV-NOTIFY
// TEMPORARY FIXME: until the X_tags are all in here
//                if ( substr($tag, 0, 2) != "X_" ) {
                    
$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 ( 
strtolower(get_class($user)) == "xoopsuser" ) {
                
array_push($this->toUsers$user);
            }
        } else {
            foreach ( 
$user as $u) {
                
$this->setToUsers($u);
            }
        }
    }

    
// public
    
function setToGroups($group)
    {
        if ( !
is_array($group) ) {
            if ( 
strtolower(get_class($group)) == "xoopsgroup" ) {
                
$member_handler =& xoops_gethandler('member');
                
$this->setToUsers($member_handler->getUsersByGroup($group->getVar('groupid'), true));
            }
        } else {
            foreach (
$group as $g) {
                
$this->setToGroups($g);
            }
        }
    }

    
// abstract
    // to be overidden by lang specific mail class, if needed
    
function encodeFromName($text)
    {
        return 
$text;
    }

    
// abstract
    // to be overidden by lang specific mail class, if needed
    
function encodeSubject($text)
    {
        return 
$text;
    }

    
// abstract
    // to be overidden by lang specific mail class, if needed
    
function encodeBody(&$text)
    {

    }
}
?>