joomla-platform / libraries / joomla / mail / mail.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
<?php
/**
 * @package     Joomla.Platform
 * @subpackage  Mail
 *
 * @copyright   Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE
 */

defined('JPATH_PLATFORM') or die;

jimport('phpmailer.phpmailer');
jimport('joomla.mail.helper');

/**
 * Email Class.  Provides a common interface to send email from the Joomla! Framework
 *
 * @package     Joomla.Platform
 * @subpackage  Mail
 * @since       11.1
 */
class JMail extends PHPMailer
{
    /**
     * Constructor
     */
    public function __construct()
    {
        // PHPMailer has an issue using the relative path for it's language files
        $this->SetLanguage('joomla', JPATH_PLATFORM.'/phpmailer/language/');
    }

    /**
     * Returns the global email object, only creating it
     * if it doesn't already exist.
     *
     * NOTE: If you need an instance to use that does not have the global configuration
     * values, use an id string that is not 'Joomla'.
     *
     * @param   string  $id     The id string for the JMail instance [optional]
     *
     * @return  object  The global JMail object
     * @since   11.1
     */
    public static function getInstance($id = 'Joomla')
    {
        static $instances;

        if (!isset ($instances)) {
            $instances = array ();
        }

        if (empty($instances[$id])) {
            $instances[$id] = new JMail();
        }

        return $instances[$id];
    }

    /**
     * Send the mail
     *
     * @return  mixed   True if successful, a JError object otherwise
     * @since   11.1
     */
    public function Send()
    {
        if (($this->Mailer == 'mail') && ! function_exists('mail')) {
            return JError::raiseNotice(500, JText::_('JLIB_MAIL_FUNCTION_DISABLED'));
        }

        @$result = parent::Send();

        if ($result == false) {
            // TODO: Set an appropriate error number
            $result = JError::raiseNotice(500, JText::_($this->ErrorInfo));
        }

        return $result;
    }

    /**
     * Set the email sender
     *
     * @param   array   email address and Name of sender
     *      <pre>
     *          array([0] => email Address [1] => Name)
     *      </pre>
     *
     * @return  JMail   Returns this object for chaining.
     * @since   11.1
     */
    public function setSender($from)
    {
        if (is_array($from)) {
            // If $from is an array we assume it has an address and a name
            $this->From = JMailHelper::cleanLine($from[0]);
            $this->FromName = JMailHelper::cleanLine($from[1]);

        }
        elseif (is_string($from)) {
            // If it is a string we assume it is just the address
            $this->From = JMailHelper::cleanLine($from);

        }
        else {
            // If it is neither, we throw a warning
            JError::raiseWarning(0, JText::sprintf('JLIB_MAIL_INVALID_EMAIL_SENDER', $from));
        }

        return $this;
    }

    /**
     * Set the email subject
     *
     * @param   string  $subject    Subject of the email
     *
     * @return  JMail   Returns this object for chaining.
     * @since   11.1
     */
    public function setSubject($subject)
    {
        $this->Subject = JMailHelper::cleanLine($subject);

        return $this;
    }

    /**
     * Set the email body
     *
     * @param   string  $content    Body of the email
     *
     * @return  JMail   Returns this object for chaining.
     * @since   11.1
     */
    public function setBody($content)
    {
        /*
         * Filter the Body
         * TODO: Check for XSS
         */
        $this->Body = JMailHelper::cleanText($content);

        return $this;
    }

    /**
     * Add recipients to the email
     *
     * @param   mixed   $recipient  Either a string or array of strings [email address(es)]
     *
     * @return  JMail   Returns this object for chaining.
     * @since   11.1
     */
    public function addRecipient($recipient)
    {
        // If the recipient is an array, add each recipient... otherwise just add the one
        if (is_array($recipient)) {
            foreach ($recipient as $to)
            {
                $to = JMailHelper::cleanLine($to);
                $this->AddAddress($to);
            }
        }
        else {
            $recipient = JMailHelper::cleanLine($recipient);
            $this->AddAddress($recipient);
        }

        return $this;
    }

    /**
     * Add carbon copy recipients to the email
     *
     * @param   mixed   $cc     Either a string or array of strings [email address(es)]
     *
     * @return  JMail   Returns this object for chaining.
     * @since   11.1
     */
    public function addCC($cc)
    {
        // If the carbon copy recipient is an array, add each recipient... otherwise just add the one
        if (isset ($cc)) {
            if (is_array($cc)) {
                foreach ($cc as $to)
                {
                    $to = JMailHelper::cleanLine($to);
                    parent::AddCC($to);
                }
            }
            else {
                $cc = JMailHelper::cleanLine($cc);
                parent::AddCC($cc);
            }
        }

        return $this;
    }

    /**
     * Add blind carbon copy recipients to the email
     *
     * @param   mixed   $bcc    Either a string or array of strings [email address(es)]
     *
     * @return  JMail   Returns this object for chaining.
     * @since   11.1
     */
    public function addBCC($bcc)
    {
        // If the blind carbon copy recipient is an array, add each recipient... otherwise just add the one
        if (isset($bcc)) {
            if (is_array($bcc)) {
                foreach ($bcc as $to)
                {
                    $to = JMailHelper::cleanLine($to);
                    parent::AddBCC($to);
                }
            }
            else {
                $bcc = JMailHelper::cleanLine($bcc);
                parent::AddBCC($bcc);
            }
        }

        return $this;
    }

    /**
     * Add file attachments to the email
     *
     * @param   mixed   $attachment Either a string or array of strings [filenames]
     *
     * @return  JMail   Returns this object for chaining.
     * @since   11.1
     */
    public function addAttachment($attachment)
    {
        // If the file attachments is an array, add each file... otherwise just add the one
        if (isset($attachment)) {
            if (is_array($attachment)) {
                foreach ($attachment as $file)
                {
                    parent::AddAttachment($file);
                }
            }
            else {
                parent::AddAttachment($attachment);
            }
        }

        return $this;
    }

    /**
     * Add Reply to email address(es) to the email
     *
     * @param   array   $replyto    Either an array or multi-array of form
     *      <pre>
     *          array([0] => email Address [1] => Name)
     *      </pre>
     *
     * @return  JMail   Returns this object for chaining.
     * @since   11.1
     */
    public function addReplyTo($replyto)
    {
        // Take care of reply email addresses
        if (is_array($replyto[0])) {
            foreach ($replyto as $to)
            {
                $to0 = JMailHelper::cleanLine($to[0]);
                $to1 = JMailHelper::cleanLine($to[1]);
                parent::AddReplyTo($to0, $to1);
            }
        }
        else {
            $replyto0 = JMailHelper::cleanLine($replyto[0]);
            $replyto1 = JMailHelper::cleanLine($replyto[1]);
            parent::AddReplyTo($replyto0, $replyto1);
        }

        return $this;
    }

    /**
     * Use sendmail for sending the email
     *
     * @param   string  $sendmail   Path to sendmail [optional]
     * @return  boolean True on success
     * @since   11.1
     */
    public function useSendmail($sendmail = null)
    {
        $this->Sendmail = $sendmail;

        if (!empty ($this->Sendmail)) {
            $this->IsSendmail();

            return true;
        }
        else {
            $this->IsMail();

            return false;
        }
    }

    /**
     * Use SMTP for sending the email
     *
     * @param   string  $auth   SMTP Authentication [optional]
     * @param   string  $host   SMTP Host [optional]
     * @param   string  $user   SMTP Username [optional]
     * @param   string  $pass   SMTP Password [optional]
     * @param   string  $secure
     * @param   int     $port
     *
     * @return  boolean True on success
     * @since   11.1
     */
    public function useSMTP($auth = null, $host = null, $user = null, $pass = null, $secure = null, $port = 25)
    {
        $this->SMTPAuth = $auth;
        $this->Host     = $host;
        $this->Username = $user;
        $this->Password = $pass;
        $this->Port     = $port;

        if ($secure == 'ssl' || $secure == 'tls') {
            $this->SMTPSecure = $secure;
        }

        if (($this->SMTPAuth !== null && $this->Host !== null && $this->Username !== null && $this->Password !== null)
            || ($this->SMTPAuth === null && $this->Host !== null)) {
            $this->IsSMTP();

            return true;
        }
        else {
            $this->IsMail();

            return false;
        }
    }

    /**
     * Function to send an email
     *
     * @param   string  $from           From email address
     * @param   string  $fromName       From name
     * @param   mixed   $recipient      Recipient email address(es)
     * @param   string  $subject        email subject
     * @param   string  $body           Message body
     * @param   boolean $mode           false = plain text, true = HTML
     * @param   mixed   $cc             CC email address(es)
     * @param   mixed   $bcc            BCC email address(es)
     * @param   mixed   $attachment     Attachment file name(s)
     * @param   mixed   $replyTo        Reply to email address(es)
     * @param   mixed   $replyToName    Reply to name(s)
     *
     * @return  boolean True on success
     * @since   11.1
     */
    public function sendMail($from, $fromName, $recipient, $subject, $body, $mode=0,
        $cc=null, $bcc=null, $attachment=null, $replyTo=null, $replyToName=null)
    {
        $this->setSender(array($from, $fromName));
        $this->setSubject($subject);
        $this->setBody($body);

        // Are we sending the email as HTML?
        if ($mode) {
            $this->IsHTML(true);
        }

        $this->addRecipient($recipient);
        $this->addCC($cc);
        $this->addBCC($bcc);
        $this->addAttachment($attachment);

        // Take care of reply email addresses
        if (is_array($replyTo)) {
            $numReplyTo = count($replyTo);

            for ($i = 0; $i < $numReplyTo; $i++)
            {
                $this->addReplyTo(array($replyTo[$i], $replyToName[$i]));
            }
        }
        else if (isset($replyTo)) {
            $this->addReplyTo(array($replyTo, $replyToName));
        }

        return  $this->Send();
    }

    /**
     * Sends mail to administrator for approval of a user submission
     *
     * @param   string  $adminName  Name of administrator
     * @param   string  $adminEmail Email address of administrator
     * @param   string  $email      [NOT USED TODO: Deprecate?]
     * @param   string  $type       Type of item to approve
     * @param   string  $title      Title of item to approve
     * @param   string  $author     Author of item to approve
     * @param   string  $url
     *
     * @return  boolean True on success
     * @since   11.1
     */
    public function sendAdminMail($adminName, $adminEmail, $email, $type, $title, $author, $url = null)
    {
        $subject = JText::sprintf('JLIB_MAIL_USER_SUBMITTED', $type);

        $message = sprintf (JText::_('JLIB_MAIL_MSG_ADMIN'), $adminName, $type, $title, $author, $url, $url, 'administrator', $type);
        $message .= JText::_('JLIB_MAIL_MSG') ."\n";

        $this->addRecipient($adminEmail);
        $this->setSubject($subject);
        $this->setBody($message);

        return $this->Send();
    }
}
Tip: Filter by directory path e.g. /media app.js to search for public/media/app.js.
Tip: Use camelCasing e.g. ProjME to search for ProjectModifiedEvent.java.
Tip: Filter by extension type e.g. /repo .js to search for all .js files in the /repo directory.
Tip: Separate your search with spaces e.g. /ssh pom.xml to search for src/ssh/pom.xml.
Tip: Use ↑ and ↓ arrow keys to navigate and return to view the file.
Tip: You can also navigate files with Ctrl+j (next) and Ctrl+k (previous) and view the file with Ctrl+o.
Tip: You can also navigate files with Alt+j (next) and Alt+k (previous) and view the file with Alt+o.