blob: 43dbe28b49570225e157d89e951ece2ca5c338e6 [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Andrey Andreevfe9309d2015-01-09 17:48:58 +02005 * An open source application development framework for PHP
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +02007 * This content is released under the MIT License (MIT)
Andrey Andreev1bd3d882011-12-22 15:38:20 +02008 *
Andrey Andreevfe9309d2015-01-09 17:48:58 +02009 * Copyright (c) 2014 - 2015, British Columbia Institute of Technology
Andrey Andreev1bd3d882011-12-22 15:38:20 +020010 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020011 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
Derek Jonesf4a4bd82011-10-20 12:18:42 -050017 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020018 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 * THE SOFTWARE.
28 *
29 * @package CodeIgniter
30 * @author EllisLab Dev Team
darwinel871754a2014-02-11 17:34:57 +010031 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
Andrey Andreevfe9309d2015-01-09 17:48:58 +020032 * @copyright Copyright (c) 2014 - 2015, British Columbia Institute of Technology (http://bcit.ca/)
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020033 * @license http://opensource.org/licenses/MIT MIT License
34 * @link http://codeigniter.com
35 * @since Version 1.0.0
Derek Allard2067d1a2008-11-13 22:59:24 +000036 * @filesource
37 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020038defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000039
Derek Allard2067d1a2008-11-13 22:59:24 +000040/**
41 * CodeIgniter Email Class
42 *
43 * Permits email to be sent using Mail, Sendmail, or SMTP.
44 *
45 * @package CodeIgniter
46 * @subpackage Libraries
47 * @category Libraries
Derek Jonesf4a4bd82011-10-20 12:18:42 -050048 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000049 * @link http://codeigniter.com/user_guide/libraries/email.html
50 */
trita15dd4f2011-11-23 07:40:05 -050051class CI_Email {
Derek Allard2067d1a2008-11-13 22:59:24 +000052
Andrey Andreev597ea272012-11-01 22:56:26 +020053 /**
54 * Used as the User-Agent and X-Mailer headers' value.
55 *
56 * @var string
57 */
Andrey Andreev59c5b532012-03-01 14:09:51 +020058 public $useragent = 'CodeIgniter';
Andrey Andreev50814092012-03-01 12:36:12 +020059
Andrey Andreev597ea272012-11-01 22:56:26 +020060 /**
61 * Path to the Sendmail binary.
62 *
63 * @var string
64 */
65 public $mailpath = '/usr/sbin/sendmail'; // Sendmail path
66
67 /**
68 * Which method to use for sending e-mails.
69 *
70 * @var string 'mail', 'sendmail' or 'smtp'
71 */
72 public $protocol = 'mail'; // mail/sendmail/smtp
73
74 /**
75 * STMP Server host
76 *
77 * @var string
78 */
79 public $smtp_host = '';
80
81 /**
82 * SMTP Username
83 *
84 * @var string
85 */
86 public $smtp_user = '';
87
88 /**
89 * SMTP Password
90 *
91 * @var string
92 */
93 public $smtp_pass = '';
94
95 /**
96 * SMTP Server port
97 *
98 * @var int
99 */
100 public $smtp_port = 25;
101
102 /**
103 * SMTP connection timeout in seconds
104 *
105 * @var int
106 */
107 public $smtp_timeout = 5;
vlakofff3994252013-02-19 01:45:23 +0100108
nisheeth-barthwalcf225572013-02-18 01:08:04 +0530109 /**
nisheeth-barthwal59209de2013-02-18 17:02:13 +0530110 * SMTP persistent connection
111 *
112 * @var bool
113 */
114 public $smtp_keepalive = FALSE;
Andrey Andreev597ea272012-11-01 22:56:26 +0200115
116 /**
117 * SMTP Encryption
118 *
Andrey Andreev89b67b42013-03-12 19:34:23 +0200119 * @var string empty, 'tls' or 'ssl'
Andrey Andreev597ea272012-11-01 22:56:26 +0200120 */
Andrey Andreev89b67b42013-03-12 19:34:23 +0200121 public $smtp_crypto = '';
Andrey Andreev597ea272012-11-01 22:56:26 +0200122
123 /**
124 * Whether to apply word-wrapping to the message body.
125 *
126 * @var bool
127 */
128 public $wordwrap = TRUE;
129
130 /**
131 * Number of characters to wrap at.
132 *
133 * @see CI_Email::$wordwrap
134 * @var int
135 */
136 public $wrapchars = 76;
137
138 /**
139 * Message format.
140 *
141 * @var string 'text' or 'html'
142 */
143 public $mailtype = 'text';
144
145 /**
146 * Character set (default: utf-8)
147 *
148 * @var string
149 */
150 public $charset = 'utf-8';
151
152 /**
153 * Multipart message
154 *
155 * @var string 'mixed' (in the body) or 'related' (separate)
156 */
157 public $multipart = 'mixed'; // "mixed" (in the body) or "related" (separate)
158
159 /**
160 * Alternative message (for HTML messages only)
161 *
162 * @var string
163 */
164 public $alt_message = '';
165
166 /**
167 * Whether to validate e-mail addresses.
168 *
169 * @var bool
170 */
171 public $validate = FALSE;
172
173 /**
174 * X-Priority header value.
175 *
176 * @var int 1-5
177 */
178 public $priority = 3; // Default priority (1 - 5)
179
180 /**
181 * Newline character sequence.
182 * Use "\r\n" to comply with RFC 822.
183 *
184 * @link http://www.ietf.org/rfc/rfc822.txt
185 * @var string "\r\n" or "\n"
186 */
187 public $newline = "\n"; // Default newline. "\r\n" or "\n" (Use "\r\n" to comply with RFC 822)
188
189 /**
190 * CRLF character sequence
191 *
192 * RFC 2045 specifies that for 'quoted-printable' encoding,
193 * "\r\n" must be used. However, it appears that some servers
194 * (even on the receiving end) don't handle it properly and
195 * switching to "\n", while improper, is the only solution
196 * that seems to work for all environments.
197 *
198 * @link http://www.ietf.org/rfc/rfc822.txt
199 * @var string
200 */
201 public $crlf = "\n";
202
203 /**
204 * Whether to use Delivery Status Notification.
205 *
206 * @var bool
207 */
208 public $dsn = FALSE;
209
210 /**
211 * Whether to send multipart alternatives.
212 * Yahoo! doesn't seem to like these.
213 *
214 * @var bool
215 */
216 public $send_multipart = TRUE;
217
218 /**
219 * Whether to send messages to BCC recipients in batches.
220 *
221 * @var bool
222 */
223 public $bcc_batch_mode = FALSE;
224
225 /**
226 * BCC Batch max number size.
227 *
228 * @see CI_Email::$bcc_batch_mode
229 * @var int
230 */
231 public $bcc_batch_size = 200;
232
233 // --------------------------------------------------------------------
234
235 /**
236 * Whether PHP is running in safe mode. Initialized by the class constructor.
237 *
238 * @var bool
239 */
Andrey Andreev50814092012-03-01 12:36:12 +0200240 protected $_safe_mode = FALSE;
Andrey Andreev597ea272012-11-01 22:56:26 +0200241
242 /**
243 * Subject header
244 *
245 * @var string
246 */
Andrey Andreev50814092012-03-01 12:36:12 +0200247 protected $_subject = '';
Andrey Andreev597ea272012-11-01 22:56:26 +0200248
249 /**
250 * Message body
251 *
252 * @var string
253 */
Andrey Andreev50814092012-03-01 12:36:12 +0200254 protected $_body = '';
Andrey Andreev597ea272012-11-01 22:56:26 +0200255
256 /**
257 * Final message body to be sent.
258 *
259 * @var string
260 */
Andrey Andreev50814092012-03-01 12:36:12 +0200261 protected $_finalbody = '';
Andrey Andreev597ea272012-11-01 22:56:26 +0200262
263 /**
264 * multipart/alternative boundary
265 *
266 * @var string
267 */
Andrey Andreev50814092012-03-01 12:36:12 +0200268 protected $_alt_boundary = '';
Andrey Andreev597ea272012-11-01 22:56:26 +0200269
270 /**
271 * Attachment boundary
272 *
273 * @var string
274 */
Andrey Andreev50814092012-03-01 12:36:12 +0200275 protected $_atc_boundary = '';
Andrey Andreev597ea272012-11-01 22:56:26 +0200276
277 /**
278 * Final headers to send
279 *
280 * @var string
281 */
Andrey Andreev50814092012-03-01 12:36:12 +0200282 protected $_header_str = '';
Andrey Andreev597ea272012-11-01 22:56:26 +0200283
284 /**
285 * SMTP Connection socket placeholder
286 *
287 * @var resource
288 */
Andrey Andreev50814092012-03-01 12:36:12 +0200289 protected $_smtp_connect = '';
Andrey Andreev597ea272012-11-01 22:56:26 +0200290
291 /**
292 * Mail encoding
293 *
294 * @var string '8bit' or '7bit'
295 */
Andrey Andreev50814092012-03-01 12:36:12 +0200296 protected $_encoding = '8bit';
Andrey Andreev597ea272012-11-01 22:56:26 +0200297
298 /**
299 * Whether to perform SMTP authentication
300 *
301 * @var bool
302 */
Andrey Andreev50814092012-03-01 12:36:12 +0200303 protected $_smtp_auth = FALSE;
Andrey Andreev597ea272012-11-01 22:56:26 +0200304
305 /**
306 * Whether to send a Reply-To header
307 *
308 * @var bool
309 */
Andrey Andreev50814092012-03-01 12:36:12 +0200310 protected $_replyto_flag = FALSE;
Andrey Andreev597ea272012-11-01 22:56:26 +0200311
312 /**
313 * Debug messages
314 *
315 * @see CI_Email::print_debugger()
316 * @var string
317 */
Andrey Andreev50814092012-03-01 12:36:12 +0200318 protected $_debug_msg = array();
Andrey Andreev597ea272012-11-01 22:56:26 +0200319
320 /**
321 * Recipients
322 *
323 * @var string[]
324 */
Andrey Andreev50814092012-03-01 12:36:12 +0200325 protected $_recipients = array();
Andrey Andreev597ea272012-11-01 22:56:26 +0200326
327 /**
328 * CC Recipients
329 *
330 * @var string[]
331 */
Andrey Andreev50814092012-03-01 12:36:12 +0200332 protected $_cc_array = array();
Andrey Andreev597ea272012-11-01 22:56:26 +0200333
334 /**
335 * BCC Recipients
336 *
337 * @var string[]
338 */
Andrey Andreev50814092012-03-01 12:36:12 +0200339 protected $_bcc_array = array();
Andrey Andreev597ea272012-11-01 22:56:26 +0200340
341 /**
342 * Message headers
343 *
344 * @var string[]
345 */
Andrey Andreev50814092012-03-01 12:36:12 +0200346 protected $_headers = array();
Andrey Andreev597ea272012-11-01 22:56:26 +0200347
348 /**
349 * Attachment data
350 *
351 * @var array
352 */
Andrey Andreevb8f9a152012-10-27 01:36:51 +0300353 protected $_attachments = array();
Andrey Andreev597ea272012-11-01 22:56:26 +0200354
355 /**
356 * Valid $protocol values
357 *
358 * @see CI_Email::$protocol
359 * @var string[]
360 */
Andrey Andreev50814092012-03-01 12:36:12 +0200361 protected $_protocols = array('mail', 'sendmail', 'smtp');
Andrey Andreev597ea272012-11-01 22:56:26 +0200362
363 /**
364 * Base charsets
365 *
366 * Character sets valid for 7-bit encoding,
367 * excluding language suffix.
368 *
369 * @var string[]
370 */
371 protected $_base_charsets = array('us-ascii', 'iso-2022-');
372
373 /**
374 * Bit depths
375 *
376 * Valid mail encodings
377 *
378 * @see CI_Email::$_encoding
379 * @var string[]
380 */
Andrey Andreev50814092012-03-01 12:36:12 +0200381 protected $_bit_depths = array('7bit', '8bit');
Andrey Andreev597ea272012-11-01 22:56:26 +0200382
383 /**
384 * $priority translations
385 *
386 * Actual values to send with the X-Priority header
387 *
388 * @var string[]
389 */
Andrey Andreevdea61772014-02-24 16:36:25 +0200390 protected $_priorities = array(
391 1 => '1 (Highest)',
392 2 => '2 (High)',
393 3 => '3 (Normal)',
394 4 => '4 (Low)',
395 5 => '5 (Lowest)'
396 );
Derek Allard2067d1a2008-11-13 22:59:24 +0000397
Andrey Andreev597ea272012-11-01 22:56:26 +0200398 // --------------------------------------------------------------------
399
Derek Allard2067d1a2008-11-13 22:59:24 +0000400 /**
401 * Constructor - Sets Email Preferences
402 *
403 * The constructor can be passed an array of config values
Andrey Andreev56454792012-05-17 14:32:19 +0300404 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +0300405 * @param array $config = array()
Andrey Andreev56454792012-05-17 14:32:19 +0300406 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +0000407 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000408 public function __construct($config = array())
Derek Allard2067d1a2008-11-13 22:59:24 +0000409 {
Andrey Andreev925dd902012-10-19 11:06:31 +0300410 $this->charset = config_item('charset');
Andrey Andreev9f44c212012-10-10 16:07:17 +0300411
Derek Allard2067d1a2008-11-13 22:59:24 +0000412 if (count($config) > 0)
413 {
414 $this->initialize($config);
415 }
416 else
417 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100418 $this->_smtp_auth = ! ($this->smtp_user === '' && $this->smtp_pass === '');
Derek Allard2067d1a2008-11-13 22:59:24 +0000419 }
420
Andrey Andreevf6274742014-02-20 18:05:58 +0200421 $this->_safe_mode = ( ! is_php('5.4') && ini_get('safe_mode'));
Andrey Andreev925dd902012-10-19 11:06:31 +0300422 $this->charset = strtoupper($this->charset);
423
Andrey Andreev90726b82015-01-20 12:39:22 +0200424 log_message('info', 'Email Class Initialized');
Derek Allard2067d1a2008-11-13 22:59:24 +0000425 }
nisheeth-barthwal59209de2013-02-18 17:02:13 +0530426
nisheeth-barthwalcf225572013-02-18 01:08:04 +0530427 // --------------------------------------------------------------------
vlakofff3994252013-02-19 01:45:23 +0100428
nisheeth-barthwalcf225572013-02-18 01:08:04 +0530429 /**
nisheeth-barthwal59209de2013-02-18 17:02:13 +0530430 * Destructor - Releases Resources
431 *
432 * @return void
433 */
434 public function __destruct()
435 {
nisheeth-barthwal758f40c2013-02-18 17:18:51 +0530436 if (is_resource($this->_smtp_connect))
437 {
nisheeth-barthwal59209de2013-02-18 17:02:13 +0530438 $this->_send_command('quit');
nisheeth-barthwal758f40c2013-02-18 17:18:51 +0530439 }
nisheeth-barthwal59209de2013-02-18 17:02:13 +0530440 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000441
442 // --------------------------------------------------------------------
443
444 /**
445 * Initialize preferences
446 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000447 * @param array
Andrew Podner4296a652012-12-17 07:51:15 -0500448 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000449 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000450 public function initialize($config = array())
Derek Allard2067d1a2008-11-13 22:59:24 +0000451 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000452 foreach ($config as $key => $val)
453 {
454 if (isset($this->$key))
455 {
456 $method = 'set_'.$key;
457
458 if (method_exists($this, $method))
459 {
460 $this->$method($val);
461 }
462 else
463 {
464 $this->$key = $val;
465 }
466 }
467 }
Eric Barnes6113f542010-12-29 13:36:12 -0500468 $this->clear();
Derek Allard2067d1a2008-11-13 22:59:24 +0000469
Alex Bilbied261b1e2012-06-02 11:12:16 +0100470 $this->_smtp_auth = ! ($this->smtp_user === '' && $this->smtp_pass === '');
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000471
472 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000473 }
Barry Mienydd671972010-10-04 16:33:58 +0200474
Derek Allard2067d1a2008-11-13 22:59:24 +0000475 // --------------------------------------------------------------------
476
477 /**
478 * Initialize the Email Data
479 *
Bo-Yi Wu83320eb2011-09-15 13:28:02 +0800480 * @param bool
Andrew Podner4296a652012-12-17 07:51:15 -0500481 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000482 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000483 public function clear($clear_attachments = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000484 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200485 $this->_subject = '';
486 $this->_body = '';
487 $this->_finalbody = '';
488 $this->_header_str = '';
489 $this->_replyto_flag = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000490 $this->_recipients = array();
Derek Jonesd1606352010-09-01 11:16:07 -0500491 $this->_cc_array = array();
492 $this->_bcc_array = array();
Derek Allard2067d1a2008-11-13 22:59:24 +0000493 $this->_headers = array();
494 $this->_debug_msg = array();
495
Mickey Wubfc1cad2012-05-31 22:28:40 -0700496 $this->set_header('User-Agent', $this->useragent);
497 $this->set_header('Date', $this->_set_date());
Derek Allard2067d1a2008-11-13 22:59:24 +0000498
499 if ($clear_attachments !== FALSE)
500 {
Andrey Andreevb8f9a152012-10-27 01:36:51 +0300501 $this->_attachments = array();
Derek Allard2067d1a2008-11-13 22:59:24 +0000502 }
Eric Barnes6113f542010-12-29 13:36:12 -0500503
Greg Akera769deb2010-11-10 15:47:29 -0600504 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000505 }
Barry Mienydd671972010-10-04 16:33:58 +0200506
Derek Allard2067d1a2008-11-13 22:59:24 +0000507 // --------------------------------------------------------------------
508
509 /**
510 * Set FROM
511 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +0300512 * @param string $from
513 * @param string $name
514 * @param string $return_path = NULL Return-Path
Andrew Podner4296a652012-12-17 07:51:15 -0500515 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000516 */
Andrey Andreev925dd902012-10-19 11:06:31 +0300517 public function from($from, $name = '', $return_path = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000518 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200519 if (preg_match('/\<(.*)\>/', $from, $match))
Derek Allard2067d1a2008-11-13 22:59:24 +0000520 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200521 $from = $match[1];
Derek Allard2067d1a2008-11-13 22:59:24 +0000522 }
523
524 if ($this->validate)
525 {
526 $this->validate_email($this->_str_to_array($from));
Andrey Andreevccd01c72012-10-05 17:12:55 +0300527 if ($return_path)
Melounek58dfc082012-06-29 08:43:47 +0200528 {
529 $this->validate_email($this->_str_to_array($return_path));
530 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000531 }
532
533 // prepare the display name
Alex Bilbied261b1e2012-06-02 11:12:16 +0100534 if ($name !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000535 {
536 // only use Q encoding if there are characters that would require it
537 if ( ! preg_match('/[\200-\377]/', $name))
538 {
539 // add slashes for non-printing characters, slashes, and double quotes, and surround it in double quotes
Derek Jonesc630bcf2008-11-17 21:09:45 +0000540 $name = '"'.addcslashes($name, "\0..\37\177'\"\\").'"';
Derek Allard2067d1a2008-11-13 22:59:24 +0000541 }
542 else
543 {
Andrey Andreev925dd902012-10-19 11:06:31 +0300544 $name = $this->_prep_q_encoding($name);
Derek Allard2067d1a2008-11-13 22:59:24 +0000545 }
546 }
547
Mickey Wubfc1cad2012-05-31 22:28:40 -0700548 $this->set_header('From', $name.' <'.$from.'>');
Melounek58dfc082012-06-29 08:43:47 +0200549
Andrey Andreev925dd902012-10-19 11:06:31 +0300550 isset($return_path) OR $return_path = $from;
Melounek58dfc082012-06-29 08:43:47 +0200551 $this->set_header('Return-Path', '<'.$return_path.'>');
Eric Barnes6113f542010-12-29 13:36:12 -0500552
Greg Akera769deb2010-11-10 15:47:29 -0600553 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000554 }
Barry Mienydd671972010-10-04 16:33:58 +0200555
Derek Allard2067d1a2008-11-13 22:59:24 +0000556 // --------------------------------------------------------------------
557
558 /**
559 * Set Reply-to
560 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000561 * @param string
562 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500563 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000564 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000565 public function reply_to($replyto, $name = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000566 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200567 if (preg_match('/\<(.*)\>/', $replyto, $match))
Derek Allard2067d1a2008-11-13 22:59:24 +0000568 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200569 $replyto = $match[1];
Derek Allard2067d1a2008-11-13 22:59:24 +0000570 }
571
572 if ($this->validate)
573 {
574 $this->validate_email($this->_str_to_array($replyto));
575 }
576
Alex Bilbied261b1e2012-06-02 11:12:16 +0100577 if ($name === '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000578 {
579 $name = $replyto;
580 }
581
Andrey Andreev3dad2e72012-06-14 15:10:56 +0300582 if (strpos($name, '"') !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000583 {
584 $name = '"'.$name.'"';
585 }
586
Mickey Wubfc1cad2012-05-31 22:28:40 -0700587 $this->set_header('Reply-To', $name.' <'.$replyto.'>');
Derek Allard2067d1a2008-11-13 22:59:24 +0000588 $this->_replyto_flag = TRUE;
Greg Akera769deb2010-11-10 15:47:29 -0600589
590 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000591 }
Barry Mienydd671972010-10-04 16:33:58 +0200592
Derek Allard2067d1a2008-11-13 22:59:24 +0000593 // --------------------------------------------------------------------
594
595 /**
596 * Set Recipients
597 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000598 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500599 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000600 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000601 public function to($to)
Derek Allard2067d1a2008-11-13 22:59:24 +0000602 {
603 $to = $this->_str_to_array($to);
604 $to = $this->clean_email($to);
605
606 if ($this->validate)
607 {
608 $this->validate_email($to);
609 }
610
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200611 if ($this->_get_protocol() !== 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +0000612 {
Mickey Wubfc1cad2012-05-31 22:28:40 -0700613 $this->set_header('To', implode(', ', $to));
Derek Allard2067d1a2008-11-13 22:59:24 +0000614 }
615
Andrey Andreev8a7078b2012-10-17 10:52:49 +0300616 $this->_recipients = $to;
Eric Barnes6113f542010-12-29 13:36:12 -0500617
Greg Akera769deb2010-11-10 15:47:29 -0600618 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000619 }
Barry Mienydd671972010-10-04 16:33:58 +0200620
Derek Allard2067d1a2008-11-13 22:59:24 +0000621 // --------------------------------------------------------------------
622
623 /**
624 * Set CC
625 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000626 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500627 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000628 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000629 public function cc($cc)
Derek Allard2067d1a2008-11-13 22:59:24 +0000630 {
Andrey Andreev56454792012-05-17 14:32:19 +0300631 $cc = $this->clean_email($this->_str_to_array($cc));
Derek Allard2067d1a2008-11-13 22:59:24 +0000632
633 if ($this->validate)
634 {
635 $this->validate_email($cc);
636 }
637
Mickey Wubfc1cad2012-05-31 22:28:40 -0700638 $this->set_header('Cc', implode(', ', $cc));
Derek Allard2067d1a2008-11-13 22:59:24 +0000639
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200640 if ($this->_get_protocol() === 'smtp')
Derek Allard2067d1a2008-11-13 22:59:24 +0000641 {
642 $this->_cc_array = $cc;
643 }
Eric Barnes6113f542010-12-29 13:36:12 -0500644
Greg Akera769deb2010-11-10 15:47:29 -0600645 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000646 }
Barry Mienydd671972010-10-04 16:33:58 +0200647
Derek Allard2067d1a2008-11-13 22:59:24 +0000648 // --------------------------------------------------------------------
649
650 /**
651 * Set BCC
652 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000653 * @param string
654 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500655 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000656 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000657 public function bcc($bcc, $limit = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000658 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100659 if ($limit !== '' && is_numeric($limit))
Derek Allard2067d1a2008-11-13 22:59:24 +0000660 {
661 $this->bcc_batch_mode = TRUE;
662 $this->bcc_batch_size = $limit;
663 }
664
Andrey Andreev56454792012-05-17 14:32:19 +0300665 $bcc = $this->clean_email($this->_str_to_array($bcc));
Derek Allard2067d1a2008-11-13 22:59:24 +0000666
667 if ($this->validate)
668 {
669 $this->validate_email($bcc);
670 }
671
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200672 if ($this->_get_protocol() === 'smtp' OR ($this->bcc_batch_mode && count($bcc) > $this->bcc_batch_size))
Derek Allard2067d1a2008-11-13 22:59:24 +0000673 {
674 $this->_bcc_array = $bcc;
675 }
676 else
677 {
Mickey Wubfc1cad2012-05-31 22:28:40 -0700678 $this->set_header('Bcc', implode(', ', $bcc));
Derek Allard2067d1a2008-11-13 22:59:24 +0000679 }
Eric Barnes6113f542010-12-29 13:36:12 -0500680
Greg Akera769deb2010-11-10 15:47:29 -0600681 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000682 }
Barry Mienydd671972010-10-04 16:33:58 +0200683
Derek Allard2067d1a2008-11-13 22:59:24 +0000684 // --------------------------------------------------------------------
685
686 /**
687 * Set Email Subject
688 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000689 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500690 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000691 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000692 public function subject($subject)
Derek Allard2067d1a2008-11-13 22:59:24 +0000693 {
694 $subject = $this->_prep_q_encoding($subject);
Mickey Wubfc1cad2012-05-31 22:28:40 -0700695 $this->set_header('Subject', $subject);
Greg Akera769deb2010-11-10 15:47:29 -0600696 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000697 }
Barry Mienydd671972010-10-04 16:33:58 +0200698
Derek Allard2067d1a2008-11-13 22:59:24 +0000699 // --------------------------------------------------------------------
700
701 /**
702 * Set Body
703 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000704 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500705 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000706 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000707 public function message($body)
Derek Allard2067d1a2008-11-13 22:59:24 +0000708 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200709 $this->_body = rtrim(str_replace("\r", '', $body));
diegorivera33c32802011-10-19 02:56:15 -0200710
Andrey Andreevaf728622011-10-20 10:11:59 +0300711 /* strip slashes only if magic quotes is ON
712 if we do it with magic quotes OFF, it strips real, user-inputted chars.
713
714 NOTE: In PHP 5.4 get_magic_quotes_gpc() will always return 0 and
715 it will probably not exist in future versions at all.
716 */
717 if ( ! is_php('5.4') && get_magic_quotes_gpc())
diegorivera9fca6152011-10-19 11:18:45 -0200718 {
diegorivera33c32802011-10-19 02:56:15 -0200719 $this->_body = stripslashes($this->_body);
diegorivera9fca6152011-10-19 11:18:45 -0200720 }
diegorivera33c32802011-10-19 02:56:15 -0200721
Greg Akera769deb2010-11-10 15:47:29 -0600722 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000723 }
Barry Mienydd671972010-10-04 16:33:58 +0200724
Derek Allard2067d1a2008-11-13 22:59:24 +0000725 // --------------------------------------------------------------------
726
727 /**
728 * Assign file attachments
729 *
Petr Heralecky1dbdf72c2014-01-10 16:54:51 +0100730 * @param string $file Can be local path, URL or buffered content
Andrey Andreev5fd3ae82012-10-24 14:55:35 +0300731 * @param string $disposition = 'attachment'
732 * @param string $newname = NULL
733 * @param string $mime = ''
Andrew Podner4296a652012-12-17 07:51:15 -0500734 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000735 */
Petr Heraleckyceb03af2014-01-10 16:40:54 +0100736 public function attach($file, $disposition = '', $newname = NULL, $mime = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000737 {
Petr Heralecky300e3f02014-01-10 11:49:11 +0100738 if ($mime === '')
739 {
Petr Heralecky1dbdf72c2014-01-10 16:54:51 +0100740 if (strpos($file, '://') === FALSE && ! file_exists($file))
Petr Heralecky300e3f02014-01-10 11:49:11 +0100741 {
Petr Heraleckyceb03af2014-01-10 16:40:54 +0100742 $this->_set_error_message('lang:email_attachment_missing', $file);
Petr Heralecky300e3f02014-01-10 11:49:11 +0100743 return FALSE;
744 }
Andrey Andreevc8097262014-01-10 14:45:31 +0200745
Andrey Andreev7cf682a2014-03-13 14:55:45 +0200746 if ( ! $fp = @fopen($file, 'rb'))
Petr Heralecky300e3f02014-01-10 11:49:11 +0100747 {
Petr Heraleckyceb03af2014-01-10 16:40:54 +0100748 $this->_set_error_message('lang:email_attachment_unreadable', $file);
Petr Heralecky300e3f02014-01-10 11:49:11 +0100749 return FALSE;
750 }
Petr Heralecky1dbdf72c2014-01-10 16:54:51 +0100751
Petr Heralecky300e3f02014-01-10 11:49:11 +0100752 $file_content = stream_get_contents($fp);
Petr Heraleckyceb03af2014-01-10 16:40:54 +0100753 $mime = $this->_mime_types(pathinfo($file, PATHINFO_EXTENSION));
Petr Heraleckyde886152014-01-10 12:52:56 +0100754 fclose($fp);
Petr Heralecky300e3f02014-01-10 11:49:11 +0100755 }
756 else
757 {
Petr Heraleckyceb03af2014-01-10 16:40:54 +0100758 $file_content =& $file; // buffered file
Petr Heralecky300e3f02014-01-10 11:49:11 +0100759 }
Andrey Andreevc8097262014-01-10 14:45:31 +0200760
Andrey Andreevb8f9a152012-10-27 01:36:51 +0300761 $this->_attachments[] = array(
Petr Heraleckyceb03af2014-01-10 16:40:54 +0100762 'name' => array($file, $newname),
Andrey Andreevb8f9a152012-10-27 01:36:51 +0300763 'disposition' => empty($disposition) ? 'attachment' : $disposition, // Can also be 'inline' Not sure if it matters
Petr Heralecky300e3f02014-01-10 11:49:11 +0100764 'type' => $mime,
765 'content' => chunk_split(base64_encode($file_content))
Andrey Andreevb8f9a152012-10-27 01:36:51 +0300766 );
Petr Heralecky9ad2fff2014-01-10 13:25:34 +0100767
Greg Akera769deb2010-11-10 15:47:29 -0600768 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000769 }
Andrey Andreevc8097262014-01-10 14:45:31 +0200770
Petr Heralecky300e3f02014-01-10 11:49:11 +0100771 // --------------------------------------------------------------------
Andrey Andreevc8097262014-01-10 14:45:31 +0200772
Petr Heralecky300e3f02014-01-10 11:49:11 +0100773 /**
Andrey Andreevc8097262014-01-10 14:45:31 +0200774 * Set and return attachment Content-ID
775 *
776 * Useful for attached inline pictures
Petr Heralecky300e3f02014-01-10 11:49:11 +0100777 *
Petr Heraleckyde886152014-01-10 12:52:56 +0100778 * @param string $filename
779 * @return string
Petr Heralecky300e3f02014-01-10 11:49:11 +0100780 */
Andrey Andreevc8097262014-01-10 14:45:31 +0200781 public function attachment_cid($filename)
Petr Heralecky300e3f02014-01-10 11:49:11 +0100782 {
Petr Heraleckyde886152014-01-10 12:52:56 +0100783 if ($this->multipart !== 'related')
Petr Heralecky300e3f02014-01-10 11:49:11 +0100784 {
785 $this->multipart = 'related'; // Thunderbird need this for inline images
786 }
Andrey Andreevc8097262014-01-10 14:45:31 +0200787
Petr Heraleckyde886152014-01-10 12:52:56 +0100788 for ($i = 0, $c = count($this->_attachments); $i < $c; $i++)
Petr Heralecky300e3f02014-01-10 11:49:11 +0100789 {
Petr Heralecky9ad2fff2014-01-10 13:25:34 +0100790 if ($this->_attachments[$i]['name'][0] === $filename)
Petr Heralecky300e3f02014-01-10 11:49:11 +0100791 {
Petr Heralecky230fca32014-01-10 12:55:57 +0100792 $this->_attachments[$i]['cid'] = uniqid(basename($this->_attachments[$i]['name'][0]).'@');
Petr Heraleckyde886152014-01-10 12:52:56 +0100793 return $this->_attachments[$i]['cid'];
Petr Heralecky300e3f02014-01-10 11:49:11 +0100794 }
795 }
Andrey Andreevc8097262014-01-10 14:45:31 +0200796
Petr Heralecky300e3f02014-01-10 11:49:11 +0100797 return FALSE;
798 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000799
800 // --------------------------------------------------------------------
801
802 /**
803 * Add a Header Item
804 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000805 * @param string
806 * @param string
807 * @return void
808 */
Mickey Wubfc1cad2012-05-31 22:28:40 -0700809 public function set_header($header, $value)
Derek Allard2067d1a2008-11-13 22:59:24 +0000810 {
florisluitenf55d5142013-06-07 17:20:06 +0300811 $this->_headers[$header] = str_replace(array("\n", "\r"), '', $value);
Derek Allard2067d1a2008-11-13 22:59:24 +0000812 }
Barry Mienydd671972010-10-04 16:33:58 +0200813
Derek Allard2067d1a2008-11-13 22:59:24 +0000814 // --------------------------------------------------------------------
815
816 /**
817 * Convert a String to an Array
818 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000819 * @param string
820 * @return array
821 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600822 protected function _str_to_array($email)
Derek Allard2067d1a2008-11-13 22:59:24 +0000823 {
824 if ( ! is_array($email))
825 {
Andrey Andreev56454792012-05-17 14:32:19 +0300826 return (strpos($email, ',') !== FALSE)
827 ? preg_split('/[\s,]/', $email, -1, PREG_SPLIT_NO_EMPTY)
828 : (array) trim($email);
Derek Allard2067d1a2008-11-13 22:59:24 +0000829 }
Andrey Andreev56454792012-05-17 14:32:19 +0300830
Derek Allard2067d1a2008-11-13 22:59:24 +0000831 return $email;
832 }
Barry Mienydd671972010-10-04 16:33:58 +0200833
Derek Allard2067d1a2008-11-13 22:59:24 +0000834 // --------------------------------------------------------------------
835
836 /**
837 * Set Multipart Value
838 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000839 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500840 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000841 */
Andrey Andreev505b3d62014-02-08 18:24:00 +0200842 public function set_alt_message($str)
Derek Allard2067d1a2008-11-13 22:59:24 +0000843 {
Dan Horrigand0ddeaf2011-08-21 09:07:27 -0400844 $this->alt_message = (string) $str;
Greg Akera769deb2010-11-10 15:47:29 -0600845 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000846 }
Barry Mienydd671972010-10-04 16:33:58 +0200847
Derek Allard2067d1a2008-11-13 22:59:24 +0000848 // --------------------------------------------------------------------
849
850 /**
851 * Set Mailtype
852 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000853 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500854 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000855 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000856 public function set_mailtype($type = 'text')
Derek Allard2067d1a2008-11-13 22:59:24 +0000857 {
Andrey Andreev56454792012-05-17 14:32:19 +0300858 $this->mailtype = ($type === 'html') ? 'html' : 'text';
Greg Akera769deb2010-11-10 15:47:29 -0600859 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000860 }
Barry Mienydd671972010-10-04 16:33:58 +0200861
Derek Allard2067d1a2008-11-13 22:59:24 +0000862 // --------------------------------------------------------------------
nisheeth-barthwalcf225572013-02-18 01:08:04 +0530863
Derek Allard2067d1a2008-11-13 22:59:24 +0000864 /**
865 * Set Wordwrap
866 *
Dan Horrigan628e6602011-08-21 09:08:31 -0400867 * @param bool
Andrew Podner4296a652012-12-17 07:51:15 -0500868 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000869 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000870 public function set_wordwrap($wordwrap = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000871 {
Dan Horrigan628e6602011-08-21 09:08:31 -0400872 $this->wordwrap = (bool) $wordwrap;
Greg Akera769deb2010-11-10 15:47:29 -0600873 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000874 }
Barry Mienydd671972010-10-04 16:33:58 +0200875
Derek Allard2067d1a2008-11-13 22:59:24 +0000876 // --------------------------------------------------------------------
877
878 /**
879 * Set Protocol
880 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000881 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500882 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000883 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000884 public function set_protocol($protocol = 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +0000885 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200886 $this->protocol = in_array($protocol, $this->_protocols, TRUE) ? strtolower($protocol) : 'mail';
Greg Akera769deb2010-11-10 15:47:29 -0600887 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000888 }
Barry Mienydd671972010-10-04 16:33:58 +0200889
Derek Allard2067d1a2008-11-13 22:59:24 +0000890 // --------------------------------------------------------------------
891
892 /**
893 * Set Priority
894 *
Andrey Andreev081c9462012-03-01 12:58:11 +0200895 * @param int
Andrew Podner4296a652012-12-17 07:51:15 -0500896 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000897 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000898 public function set_priority($n = 3)
Derek Allard2067d1a2008-11-13 22:59:24 +0000899 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200900 $this->priority = preg_match('/^[1-5]$/', $n) ? (int) $n : 3;
Greg Akera769deb2010-11-10 15:47:29 -0600901 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000902 }
Barry Mienydd671972010-10-04 16:33:58 +0200903
Derek Allard2067d1a2008-11-13 22:59:24 +0000904 // --------------------------------------------------------------------
905
906 /**
907 * Set Newline Character
908 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000909 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500910 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000911 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000912 public function set_newline($newline = "\n")
Derek Allard2067d1a2008-11-13 22:59:24 +0000913 {
Andrey Andreevb71e06b2011-12-22 19:22:50 +0200914 $this->newline = in_array($newline, array("\n", "\r\n", "\r")) ? $newline : "\n";
Greg Akera769deb2010-11-10 15:47:29 -0600915 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000916 }
Barry Mienydd671972010-10-04 16:33:58 +0200917
Derek Allard2067d1a2008-11-13 22:59:24 +0000918 // --------------------------------------------------------------------
919
920 /**
921 * Set CRLF
922 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000923 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500924 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000925 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000926 public function set_crlf($crlf = "\n")
Derek Allard2067d1a2008-11-13 22:59:24 +0000927 {
Andrey Andreev76f15c92012-03-01 13:05:07 +0200928 $this->crlf = ($crlf !== "\n" && $crlf !== "\r\n" && $crlf !== "\r") ? "\n" : $crlf;
Greg Akera769deb2010-11-10 15:47:29 -0600929 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000930 }
Barry Mienydd671972010-10-04 16:33:58 +0200931
Derek Allard2067d1a2008-11-13 22:59:24 +0000932 // --------------------------------------------------------------------
933
934 /**
935 * Set Message Boundary
936 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000937 * @return void
938 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600939 protected function _set_boundaries()
Derek Allard2067d1a2008-11-13 22:59:24 +0000940 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200941 $this->_alt_boundary = 'B_ALT_'.uniqid(''); // multipart/alternative
942 $this->_atc_boundary = 'B_ATC_'.uniqid(''); // attachment boundary
Derek Allard2067d1a2008-11-13 22:59:24 +0000943 }
Barry Mienydd671972010-10-04 16:33:58 +0200944
Derek Allard2067d1a2008-11-13 22:59:24 +0000945 // --------------------------------------------------------------------
946
947 /**
948 * Get the Message ID
949 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000950 * @return string
951 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600952 protected function _get_message_id()
Derek Allard2067d1a2008-11-13 22:59:24 +0000953 {
Andrey Andreevb71e06b2011-12-22 19:22:50 +0200954 $from = str_replace(array('>', '<'), '', $this->_headers['Return-Path']);
Andrey Andreev56454792012-05-17 14:32:19 +0300955 return '<'.uniqid('').strstr($from, '@').'>';
Derek Allard2067d1a2008-11-13 22:59:24 +0000956 }
Barry Mienydd671972010-10-04 16:33:58 +0200957
Derek Allard2067d1a2008-11-13 22:59:24 +0000958 // --------------------------------------------------------------------
959
960 /**
961 * Get Mail Protocol
962 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000963 * @param bool
Andrey Andreev59c5b532012-03-01 14:09:51 +0200964 * @return mixed
Derek Allard2067d1a2008-11-13 22:59:24 +0000965 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600966 protected function _get_protocol($return = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000967 {
968 $this->protocol = strtolower($this->protocol);
Andrey Andreev59c5b532012-03-01 14:09:51 +0200969 in_array($this->protocol, $this->_protocols, TRUE) OR $this->protocol = 'mail';
Derek Allard2067d1a2008-11-13 22:59:24 +0000970
Alex Bilbied261b1e2012-06-02 11:12:16 +0100971 if ($return === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000972 {
973 return $this->protocol;
974 }
975 }
Barry Mienydd671972010-10-04 16:33:58 +0200976
Derek Allard2067d1a2008-11-13 22:59:24 +0000977 // --------------------------------------------------------------------
978
979 /**
980 * Get Mail Encoding
981 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000982 * @param bool
983 * @return string
984 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600985 protected function _get_encoding($return = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000986 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200987 in_array($this->_encoding, $this->_bit_depths) OR $this->_encoding = '8bit';
Derek Allard2067d1a2008-11-13 22:59:24 +0000988
989 foreach ($this->_base_charsets as $charset)
990 {
Andrey Andreev3dad2e72012-06-14 15:10:56 +0300991 if (strpos($charset, $this->charset) === 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000992 {
993 $this->_encoding = '7bit';
994 }
995 }
996
Alex Bilbied261b1e2012-06-02 11:12:16 +0100997 if ($return === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000998 {
999 return $this->_encoding;
1000 }
1001 }
1002
1003 // --------------------------------------------------------------------
1004
1005 /**
1006 * Get content type (text/html/attachment)
1007 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001008 * @return string
1009 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001010 protected function _get_content_type()
Derek Allard2067d1a2008-11-13 22:59:24 +00001011 {
Andrey Andreev56454792012-05-17 14:32:19 +03001012 if ($this->mailtype === 'html')
Derek Allard2067d1a2008-11-13 22:59:24 +00001013 {
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001014 return (count($this->_attachments) === 0) ? 'html' : 'html-attach';
Derek Allard2067d1a2008-11-13 22:59:24 +00001015 }
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001016 elseif ($this->mailtype === 'text' && count($this->_attachments) > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001017 {
1018 return 'plain-attach';
1019 }
1020 else
1021 {
1022 return 'plain';
1023 }
1024 }
Barry Mienydd671972010-10-04 16:33:58 +02001025
Derek Allard2067d1a2008-11-13 22:59:24 +00001026 // --------------------------------------------------------------------
1027
1028 /**
1029 * Set RFC 822 Date
1030 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001031 * @return string
1032 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001033 protected function _set_date()
Derek Allard2067d1a2008-11-13 22:59:24 +00001034 {
Andrey Andreev59c5b532012-03-01 14:09:51 +02001035 $timezone = date('Z');
Andrey Andreev3dad2e72012-06-14 15:10:56 +03001036 $operator = ($timezone[0] === '-') ? '-' : '+';
Derek Allard2067d1a2008-11-13 22:59:24 +00001037 $timezone = abs($timezone);
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001038 $timezone = floor($timezone/3600) * 100 + ($timezone % 3600) / 60;
Derek Allard2067d1a2008-11-13 22:59:24 +00001039
Andrey Andreev59c5b532012-03-01 14:09:51 +02001040 return sprintf('%s %s%04d', date('D, j M Y H:i:s'), $operator, $timezone);
Derek Allard2067d1a2008-11-13 22:59:24 +00001041 }
Barry Mienydd671972010-10-04 16:33:58 +02001042
Derek Allard2067d1a2008-11-13 22:59:24 +00001043 // --------------------------------------------------------------------
1044
1045 /**
1046 * Mime message
1047 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001048 * @return string
1049 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001050 protected function _get_mime_message()
Derek Allard2067d1a2008-11-13 22:59:24 +00001051 {
Andrey Andreev59c5b532012-03-01 14:09:51 +02001052 return 'This is a multi-part message in MIME format.'.$this->newline.'Your email application may not support this format.';
Derek Allard2067d1a2008-11-13 22:59:24 +00001053 }
Barry Mienydd671972010-10-04 16:33:58 +02001054
Derek Allard2067d1a2008-11-13 22:59:24 +00001055 // --------------------------------------------------------------------
1056
1057 /**
1058 * Validate Email Address
1059 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001060 * @param string
1061 * @return bool
1062 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +00001063 public function validate_email($email)
Derek Allard2067d1a2008-11-13 22:59:24 +00001064 {
1065 if ( ! is_array($email))
1066 {
patworkb0707982011-04-08 15:10:05 +02001067 $this->_set_error_message('lang:email_must_be_array');
Derek Allard2067d1a2008-11-13 22:59:24 +00001068 return FALSE;
1069 }
1070
1071 foreach ($email as $val)
1072 {
1073 if ( ! $this->valid_email($val))
1074 {
patworkb0707982011-04-08 15:10:05 +02001075 $this->_set_error_message('lang:email_invalid_address', $val);
Derek Allard2067d1a2008-11-13 22:59:24 +00001076 return FALSE;
1077 }
1078 }
1079
1080 return TRUE;
1081 }
Barry Mienydd671972010-10-04 16:33:58 +02001082
Derek Allard2067d1a2008-11-13 22:59:24 +00001083 // --------------------------------------------------------------------
1084
1085 /**
1086 * Email Validation
1087 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001088 * @param string
1089 * @return bool
1090 */
Timothy Warrend37f0e92012-06-27 08:21:59 -04001091 public function valid_email($email)
Derek Allard2067d1a2008-11-13 22:59:24 +00001092 {
Andrey Andreev95496662014-06-01 00:00:13 +03001093 if (function_exists('idn_to_ascii') && $atpos = strpos($email, '@'))
1094 {
1095 $email = substr($email, 0, ++$atpos).idn_to_ascii(substr($email, $atpos));
1096 }
1097
Andrey Andreev580388b2012-06-27 15:43:46 +03001098 return (bool) filter_var($email, FILTER_VALIDATE_EMAIL);
Derek Allard2067d1a2008-11-13 22:59:24 +00001099 }
Barry Mienydd671972010-10-04 16:33:58 +02001100
Derek Allard2067d1a2008-11-13 22:59:24 +00001101 // --------------------------------------------------------------------
1102
1103 /**
1104 * Clean Extended Email Address: Joe Smith <joe@smith.com>
1105 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001106 * @param string
1107 * @return string
1108 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +00001109 public function clean_email($email)
Derek Allard2067d1a2008-11-13 22:59:24 +00001110 {
1111 if ( ! is_array($email))
1112 {
Andrey Andreev56454792012-05-17 14:32:19 +03001113 return preg_match('/\<(.*)\>/', $email, $match) ? $match[1] : $email;
Derek Allard2067d1a2008-11-13 22:59:24 +00001114 }
1115
1116 $clean_email = array();
1117
1118 foreach ($email as $addy)
1119 {
Andrey Andreev59c5b532012-03-01 14:09:51 +02001120 $clean_email[] = preg_match('/\<(.*)\>/', $addy, $match) ? $match[1] : $addy;
Derek Allard2067d1a2008-11-13 22:59:24 +00001121 }
1122
1123 return $clean_email;
1124 }
Barry Mienydd671972010-10-04 16:33:58 +02001125
Derek Allard2067d1a2008-11-13 22:59:24 +00001126 // --------------------------------------------------------------------
1127
1128 /**
1129 * Build alternative plain text message
1130 *
Andrey Andreev8df1ae22012-10-19 11:20:54 +03001131 * Provides the raw message for use in plain-text headers of
1132 * HTML-formatted emails.
Derek Allard2067d1a2008-11-13 22:59:24 +00001133 * If the user hasn't specified his own alternative message
1134 * it creates one by stripping the HTML
1135 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001136 * @return string
1137 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001138 protected function _get_alt_message()
Derek Allard2067d1a2008-11-13 22:59:24 +00001139 {
Andrey Andreev8df1ae22012-10-19 11:20:54 +03001140 if ( ! empty($this->alt_message))
Derek Allard2067d1a2008-11-13 22:59:24 +00001141 {
Andrey Andreev8df1ae22012-10-19 11:20:54 +03001142 return ($this->wordwrap)
1143 ? $this->word_wrap($this->alt_message, 76)
1144 : $this->alt_message;
Derek Allard2067d1a2008-11-13 22:59:24 +00001145 }
1146
Andrey Andreev56454792012-05-17 14:32:19 +03001147 $body = preg_match('/\<body.*?\>(.*)\<\/body\>/si', $this->_body, $match) ? $match[1] : $this->_body;
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001148 $body = str_replace("\t", '', preg_replace('#<!--(.*)--\>#', '', trim(strip_tags($body))));
Derek Allard2067d1a2008-11-13 22:59:24 +00001149
1150 for ($i = 20; $i >= 3; $i--)
1151 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001152 $body = str_replace(str_repeat("\n", $i), "\n\n", $body);
Derek Allard2067d1a2008-11-13 22:59:24 +00001153 }
1154
GDmac9bea4be2012-10-30 06:14:19 +01001155 // Reduce multiple spaces
Andrey Andreev8a203f62012-11-02 20:40:43 +02001156 $body = preg_replace('| +|', ' ', $body);
GDmac9bea4be2012-10-30 06:14:19 +01001157
Andrey Andreev8df1ae22012-10-19 11:20:54 +03001158 return ($this->wordwrap)
1159 ? $this->word_wrap($body, 76)
1160 : $body;
Derek Allard2067d1a2008-11-13 22:59:24 +00001161 }
Barry Mienydd671972010-10-04 16:33:58 +02001162
Derek Allard2067d1a2008-11-13 22:59:24 +00001163 // --------------------------------------------------------------------
1164
1165 /**
1166 * Word Wrap
1167 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001168 * @param string
Andrey Andreev8df1ae22012-10-19 11:20:54 +03001169 * @param int line-length limit
Derek Allard2067d1a2008-11-13 22:59:24 +00001170 * @return string
1171 */
Andrey Andreev00ea2a92012-10-18 14:59:29 +03001172 public function word_wrap($str, $charlim = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +00001173 {
Andrey Andreev00ea2a92012-10-18 14:59:29 +03001174 // Set the character limit, if not already present
1175 if (empty($charlim))
Derek Allard2067d1a2008-11-13 22:59:24 +00001176 {
Andrey Andreev00ea2a92012-10-18 14:59:29 +03001177 $charlim = empty($this->wrapchars) ? 76 : $this->wrapchars;
Derek Allard2067d1a2008-11-13 22:59:24 +00001178 }
1179
Derek Allard2067d1a2008-11-13 22:59:24 +00001180 // Standardize newlines
1181 if (strpos($str, "\r") !== FALSE)
1182 {
Andrey Andreevb71e06b2011-12-22 19:22:50 +02001183 $str = str_replace(array("\r\n", "\r"), "\n", $str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001184 }
1185
GDmac9bea4be2012-10-30 06:14:19 +01001186 // Reduce multiple spaces at end of line
1187 $str = preg_replace('| +\n|', "\n", $str);
1188
Derek Allard2067d1a2008-11-13 22:59:24 +00001189 // If the current word is surrounded by {unwrap} tags we'll
1190 // strip the entire chunk and replace it with a marker.
1191 $unwrap = array();
vlakoff0f7eba22014-05-20 10:32:44 +02001192 if (preg_match_all('|\{unwrap\}(.+?)\{/unwrap\}|s', $str, $matches))
Derek Allard2067d1a2008-11-13 22:59:24 +00001193 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001194 for ($i = 0, $c = count($matches[0]); $i < $c; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001195 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001196 $unwrap[] = $matches[1][$i];
vlakoff0f7eba22014-05-20 10:32:44 +02001197 $str = str_replace($matches[0][$i], '{{unwrapped'.$i.'}}', $str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001198 }
1199 }
1200
vlakofff0ab8132014-05-20 10:32:53 +02001201 // Use PHP's native function to do the initial wordwrap.
Derek Allard2067d1a2008-11-13 22:59:24 +00001202 // We set the cut flag to FALSE so that any individual words that are
Andrey Andreev56454792012-05-17 14:32:19 +03001203 // too long get left alone. In the next step we'll deal with them.
Derek Allard2067d1a2008-11-13 22:59:24 +00001204 $str = wordwrap($str, $charlim, "\n", FALSE);
1205
1206 // Split the string into individual lines of text and cycle through them
Andrey Andreev56454792012-05-17 14:32:19 +03001207 $output = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001208 foreach (explode("\n", $str) as $line)
1209 {
1210 // Is the line within the allowed character count?
1211 // If so we'll join it to the output and continue
vlakofff0ab8132014-05-20 10:32:53 +02001212 if (mb_strlen($line) <= $charlim)
Derek Allard2067d1a2008-11-13 22:59:24 +00001213 {
1214 $output .= $line.$this->newline;
1215 continue;
1216 }
1217
1218 $temp = '';
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001219 do
Derek Allard2067d1a2008-11-13 22:59:24 +00001220 {
1221 // If the over-length word is a URL we won't wrap it
vlakoff2a8560c2014-05-20 10:32:35 +02001222 if (preg_match('!\[url.+\]|://|www\.!', $line))
Derek Allard2067d1a2008-11-13 22:59:24 +00001223 {
1224 break;
1225 }
1226
1227 // Trim the word down
vlakofff0ab8132014-05-20 10:32:53 +02001228 $temp .= mb_substr($line, 0, $charlim - 1);
1229 $line = mb_substr($line, $charlim - 1);
Derek Allard2067d1a2008-11-13 22:59:24 +00001230 }
vlakofff0ab8132014-05-20 10:32:53 +02001231 while (mb_strlen($line) > $charlim);
Derek Allard2067d1a2008-11-13 22:59:24 +00001232
1233 // If $temp contains data it means we had to split up an over-length
1234 // word into smaller chunks so we'll add it back to our current line
Alex Bilbied261b1e2012-06-02 11:12:16 +01001235 if ($temp !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001236 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001237 $output .= $temp.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001238 }
1239
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001240 $output .= $line.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001241 }
1242
1243 // Put our markers back
1244 if (count($unwrap) > 0)
1245 {
1246 foreach ($unwrap as $key => $val)
1247 {
Andrey Andreev56454792012-05-17 14:32:19 +03001248 $output = str_replace('{{unwrapped'.$key.'}}', $val, $output);
Derek Allard2067d1a2008-11-13 22:59:24 +00001249 }
1250 }
1251
1252 return $output;
1253 }
Barry Mienydd671972010-10-04 16:33:58 +02001254
Derek Allard2067d1a2008-11-13 22:59:24 +00001255 // --------------------------------------------------------------------
1256
1257 /**
1258 * Build final headers
1259 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001260 * @return string
1261 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001262 protected function _build_headers()
Derek Allard2067d1a2008-11-13 22:59:24 +00001263 {
Mickey Wubfc1cad2012-05-31 22:28:40 -07001264 $this->set_header('X-Sender', $this->clean_email($this->_headers['From']));
1265 $this->set_header('X-Mailer', $this->useragent);
Andrey Andreevdea61772014-02-24 16:36:25 +02001266 $this->set_header('X-Priority', $this->_priorities[$this->priority]);
Mickey Wubfc1cad2012-05-31 22:28:40 -07001267 $this->set_header('Message-ID', $this->_get_message_id());
1268 $this->set_header('Mime-Version', '1.0');
Derek Allard2067d1a2008-11-13 22:59:24 +00001269 }
Barry Mienydd671972010-10-04 16:33:58 +02001270
Derek Allard2067d1a2008-11-13 22:59:24 +00001271 // --------------------------------------------------------------------
1272
1273 /**
1274 * Write Headers as a string
1275 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001276 * @return void
1277 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001278 protected function _write_headers()
Derek Allard2067d1a2008-11-13 22:59:24 +00001279 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001280 if ($this->protocol === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +00001281 {
nisheeth-barthwal6bb98902013-02-19 18:11:14 +05301282 if (isset($this->_headers['Subject']))
1283 {
1284 $this->_subject = $this->_headers['Subject'];
1285 unset($this->_headers['Subject']);
1286 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001287 }
1288
1289 reset($this->_headers);
Andrey Andreev56454792012-05-17 14:32:19 +03001290 $this->_header_str = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001291
Pascal Kriete14287f32011-02-14 13:39:34 -05001292 foreach ($this->_headers as $key => $val)
Derek Allard2067d1a2008-11-13 22:59:24 +00001293 {
1294 $val = trim($val);
1295
Alex Bilbied261b1e2012-06-02 11:12:16 +01001296 if ($val !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001297 {
Andrey Andreev56454792012-05-17 14:32:19 +03001298 $this->_header_str .= $key.': '.$val.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001299 }
1300 }
1301
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001302 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +00001303 {
Derek Jones1d890882009-02-10 20:32:14 +00001304 $this->_header_str = rtrim($this->_header_str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001305 }
1306 }
Barry Mienydd671972010-10-04 16:33:58 +02001307
Derek Allard2067d1a2008-11-13 22:59:24 +00001308 // --------------------------------------------------------------------
1309
1310 /**
1311 * Build Final Body and attachments
1312 *
buhayc6da1ef2013-04-18 09:06:49 -07001313 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +00001314 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001315 protected function _build_message()
Derek Allard2067d1a2008-11-13 22:59:24 +00001316 {
Andrey Andreev76f15c92012-03-01 13:05:07 +02001317 if ($this->wordwrap === TRUE && $this->mailtype !== 'html')
Derek Allard2067d1a2008-11-13 22:59:24 +00001318 {
1319 $this->_body = $this->word_wrap($this->_body);
1320 }
1321
1322 $this->_set_boundaries();
1323 $this->_write_headers();
1324
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001325 $hdr = ($this->_get_protocol() === 'mail') ? $this->newline : '';
Brandon Jones485d7412010-11-09 16:38:17 -05001326 $body = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001327
1328 switch ($this->_get_content_type())
1329 {
1330 case 'plain' :
1331
Andrey Andreev56454792012-05-17 14:32:19 +03001332 $hdr .= 'Content-Type: text/plain; charset='.$this->charset.$this->newline
1333 .'Content-Transfer-Encoding: '.$this->_get_encoding();
Derek Allard2067d1a2008-11-13 22:59:24 +00001334
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001335 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +00001336 {
1337 $this->_header_str .= $hdr;
1338 $this->_finalbody = $this->_body;
Derek Allard2067d1a2008-11-13 22:59:24 +00001339 }
Brandon Jones485d7412010-11-09 16:38:17 -05001340 else
1341 {
Andrey Andreev2b956af2013-08-07 14:32:56 +03001342 $this->_finalbody = $hdr.$this->newline.$this->newline.$this->_body;
Brandon Jones485d7412010-11-09 16:38:17 -05001343 }
Eric Barnes6113f542010-12-29 13:36:12 -05001344
Derek Allard2067d1a2008-11-13 22:59:24 +00001345 return;
1346
Derek Allard2067d1a2008-11-13 22:59:24 +00001347 case 'html' :
1348
1349 if ($this->send_multipart === FALSE)
1350 {
Andrey Andreev56454792012-05-17 14:32:19 +03001351 $hdr .= 'Content-Type: text/html; charset='.$this->charset.$this->newline
Andrey Andreev2b956af2013-08-07 14:32:56 +03001352 .'Content-Transfer-Encoding: quoted-printable';
Derek Allard2067d1a2008-11-13 22:59:24 +00001353 }
1354 else
1355 {
Andrey Andreev2b956af2013-08-07 14:32:56 +03001356 $hdr .= 'Content-Type: multipart/alternative; boundary="'.$this->_alt_boundary.'"';
Derek Allard2067d1a2008-11-13 22:59:24 +00001357
Andrey Andreev56454792012-05-17 14:32:19 +03001358 $body .= $this->_get_mime_message().$this->newline.$this->newline
1359 .'--'.$this->_alt_boundary.$this->newline
Derek Allard2067d1a2008-11-13 22:59:24 +00001360
Andrey Andreev56454792012-05-17 14:32:19 +03001361 .'Content-Type: text/plain; charset='.$this->charset.$this->newline
1362 .'Content-Transfer-Encoding: '.$this->_get_encoding().$this->newline.$this->newline
1363 .$this->_get_alt_message().$this->newline.$this->newline.'--'.$this->_alt_boundary.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001364
Andrey Andreev56454792012-05-17 14:32:19 +03001365 .'Content-Type: text/html; charset='.$this->charset.$this->newline
1366 .'Content-Transfer-Encoding: quoted-printable'.$this->newline.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001367 }
Eric Barnes6113f542010-12-29 13:36:12 -05001368
Andrey Andreev56454792012-05-17 14:32:19 +03001369 $this->_finalbody = $body.$this->_prep_quoted_printable($this->_body).$this->newline.$this->newline;
Eric Barnes6113f542010-12-29 13:36:12 -05001370
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001371 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +00001372 {
1373 $this->_header_str .= $hdr;
Brandon Jones485d7412010-11-09 16:38:17 -05001374 }
1375 else
1376 {
Andrey Andreev2b956af2013-08-07 14:32:56 +03001377 $this->_finalbody = $hdr.$this->newline.$this->newline.$this->_finalbody;
Derek Allard2067d1a2008-11-13 22:59:24 +00001378 }
1379
Derek Allard2067d1a2008-11-13 22:59:24 +00001380 if ($this->send_multipart !== FALSE)
1381 {
Andrey Andreev56454792012-05-17 14:32:19 +03001382 $this->_finalbody .= '--'.$this->_alt_boundary.'--';
Derek Allard2067d1a2008-11-13 22:59:24 +00001383 }
1384
Derek Allard2067d1a2008-11-13 22:59:24 +00001385 return;
1386
Derek Allard2067d1a2008-11-13 22:59:24 +00001387 case 'plain-attach' :
1388
Andrey Andreev2b956af2013-08-07 14:32:56 +03001389 $hdr .= 'Content-Type: multipart/'.$this->multipart.'; boundary="'.$this->_atc_boundary.'"';
Derek Allard2067d1a2008-11-13 22:59:24 +00001390
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001391 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +00001392 {
1393 $this->_header_str .= $hdr;
Eric Barnes6113f542010-12-29 13:36:12 -05001394 }
1395
Andrey Andreev2b956af2013-08-07 14:32:56 +03001396 $body .= $this->_get_mime_message().$this->newline
1397 .$this->newline
Andrey Andreev56454792012-05-17 14:32:19 +03001398 .'--'.$this->_atc_boundary.$this->newline
Andrey Andreev56454792012-05-17 14:32:19 +03001399 .'Content-Type: text/plain; charset='.$this->charset.$this->newline
Andrey Andreev2b956af2013-08-07 14:32:56 +03001400 .'Content-Transfer-Encoding: '.$this->_get_encoding().$this->newline
1401 .$this->newline
Andrey Andreev56454792012-05-17 14:32:19 +03001402 .$this->_body.$this->newline.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001403
1404 break;
1405 case 'html-attach' :
1406
Andrey Andreev2b956af2013-08-07 14:32:56 +03001407 $hdr .= 'Content-Type: multipart/'.$this->multipart.'; boundary="'.$this->_atc_boundary.'"';
Eric Barnes6113f542010-12-29 13:36:12 -05001408
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001409 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +00001410 {
1411 $this->_header_str .= $hdr;
Derek Allard2067d1a2008-11-13 22:59:24 +00001412 }
1413
Andrey Andreev56454792012-05-17 14:32:19 +03001414 $body .= $this->_get_mime_message().$this->newline.$this->newline
1415 .'--'.$this->_atc_boundary.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001416
Andrey Andreev56454792012-05-17 14:32:19 +03001417 .'Content-Type: multipart/alternative; boundary="'.$this->_alt_boundary.'"'.$this->newline.$this->newline
1418 .'--'.$this->_alt_boundary.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001419
Andrey Andreev56454792012-05-17 14:32:19 +03001420 .'Content-Type: text/plain; charset='.$this->charset.$this->newline
1421 .'Content-Transfer-Encoding: '.$this->_get_encoding().$this->newline.$this->newline
1422 .$this->_get_alt_message().$this->newline.$this->newline.'--'.$this->_alt_boundary.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001423
Andrey Andreev56454792012-05-17 14:32:19 +03001424 .'Content-Type: text/html; charset='.$this->charset.$this->newline
1425 .'Content-Transfer-Encoding: quoted-printable'.$this->newline.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001426
Andrey Andreev56454792012-05-17 14:32:19 +03001427 .$this->_prep_quoted_printable($this->_body).$this->newline.$this->newline
1428 .'--'.$this->_alt_boundary.'--'.$this->newline.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001429
1430 break;
1431 }
1432
1433 $attachment = array();
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001434 for ($i = 0, $c = count($this->_attachments), $z = 0; $i < $c; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001435 {
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001436 $filename = $this->_attachments[$i]['name'][0];
vlakoff912f1bc2013-01-15 03:34:12 +01001437 $basename = ($this->_attachments[$i]['name'][1] === NULL)
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001438 ? basename($filename) : $this->_attachments[$i]['name'][1];
Andrey Andreev56454792012-05-17 14:32:19 +03001439
1440 $attachment[$z++] = '--'.$this->_atc_boundary.$this->newline
Petr Heralecky300e3f02014-01-10 11:49:11 +01001441 .'Content-type: '.$this->_attachments[$i]['type'].'; '
Andrey Andreev56454792012-05-17 14:32:19 +03001442 .'name="'.$basename.'"'.$this->newline
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001443 .'Content-Disposition: '.$this->_attachments[$i]['disposition'].';'.$this->newline
Petr Heralecky300e3f02014-01-10 11:49:11 +01001444 .'Content-Transfer-Encoding: base64'.$this->newline
Petr Heraleckyde886152014-01-10 12:52:56 +01001445 .(empty($this->_attachments[$i]['cid']) ? '' : 'Content-ID: <'.$this->_attachments[$i]['cid'].'>'.$this->newline);
Derek Allard2067d1a2008-11-13 22:59:24 +00001446
Petr Heralecky300e3f02014-01-10 11:49:11 +01001447 $attachment[$z++] = $this->_attachments[$i]['content'];
Derek Allard2067d1a2008-11-13 22:59:24 +00001448 }
1449
Andrey Andreev56454792012-05-17 14:32:19 +03001450 $body .= implode($this->newline, $attachment).$this->newline.'--'.$this->_atc_boundary.'--';
Andrey Andreev2b956af2013-08-07 14:32:56 +03001451 $this->_finalbody = ($this->_get_protocol() === 'mail')
1452 ? $body
1453 : $hdr.$this->newline.$this->newline.$body;
Andrey Andreevc8097262014-01-10 14:45:31 +02001454
buhay466e8082013-04-17 14:25:34 -07001455 return TRUE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001456 }
Barry Mienydd671972010-10-04 16:33:58 +02001457
Derek Allard2067d1a2008-11-13 22:59:24 +00001458 // --------------------------------------------------------------------
1459
1460 /**
1461 * Prep Quoted Printable
1462 *
1463 * Prepares string for Quoted-Printable Content-Transfer-Encoding
1464 * Refer to RFC 2045 http://www.ietf.org/rfc/rfc2045.txt
1465 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001466 * @param string
Derek Allard2067d1a2008-11-13 22:59:24 +00001467 * @return string
1468 */
Andrey Andreev683b34d2012-10-09 15:00:00 +03001469 protected function _prep_quoted_printable($str)
Derek Allard2067d1a2008-11-13 22:59:24 +00001470 {
Andrey Andreev00ea2a92012-10-18 14:59:29 +03001471 // We are intentionally wrapping so mail servers will encode characters
1472 // properly and MUAs will behave, so {unwrap} must go!
1473 $str = str_replace(array('{unwrap}', '{/unwrap}'), '', $str);
1474
Andrey Andreev683b34d2012-10-09 15:00:00 +03001475 // RFC 2045 specifies CRLF as "\r\n".
1476 // However, many developers choose to override that and violate
1477 // the RFC rules due to (apparently) a bug in MS Exchange,
1478 // which only works with "\n".
Andrey Andreev26f0cf92012-10-11 13:52:39 +03001479 if ($this->crlf === "\r\n")
Andrey Andreev683b34d2012-10-09 15:00:00 +03001480 {
Andrey Andreev26f0cf92012-10-11 13:52:39 +03001481 if (is_php('5.3'))
1482 {
1483 return quoted_printable_encode($str);
1484 }
1485 elseif (function_exists('imap_8bit'))
1486 {
1487 return imap_8bit($str);
1488 }
Andrey Andreev683b34d2012-10-09 15:00:00 +03001489 }
1490
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001491 // Reduce multiple spaces & remove nulls
Andrey Andreev56454792012-05-17 14:32:19 +03001492 $str = preg_replace(array('| +|', '/\x00+/'), array(' ', ''), $str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001493
1494 // Standardize newlines
1495 if (strpos($str, "\r") !== FALSE)
1496 {
1497 $str = str_replace(array("\r\n", "\r"), "\n", $str);
1498 }
1499
Derek Allard2067d1a2008-11-13 22:59:24 +00001500 $escape = '=';
1501 $output = '';
1502
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001503 foreach (explode("\n", $str) as $line)
Derek Allard2067d1a2008-11-13 22:59:24 +00001504 {
1505 $length = strlen($line);
1506 $temp = '';
1507
1508 // Loop through each character in the line to add soft-wrap
1509 // characters at the end of a line " =\r\n" and add the newly
1510 // processed line(s) to the output (see comment on $crlf class property)
1511 for ($i = 0; $i < $length; $i++)
1512 {
1513 // Grab the next character
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001514 $char = $line[$i];
Derek Allard2067d1a2008-11-13 22:59:24 +00001515 $ascii = ord($char);
1516
1517 // Convert spaces and tabs but only if it's the end of the line
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001518 if ($i === ($length - 1) && ($ascii === 32 OR $ascii === 9))
Derek Allard2067d1a2008-11-13 22:59:24 +00001519 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001520 $char = $escape.sprintf('%02s', dechex($ascii));
Derek Allard2067d1a2008-11-13 22:59:24 +00001521 }
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001522 elseif ($ascii === 61) // encode = signs
Derek Allard2067d1a2008-11-13 22:59:24 +00001523 {
Derek Jones37f4b9c2011-07-01 17:56:50 -05001524 $char = $escape.strtoupper(sprintf('%02s', dechex($ascii))); // =3D
Derek Allard2067d1a2008-11-13 22:59:24 +00001525 }
1526
1527 // If we're at the character limit, add the line to the output,
1528 // reset our temp variable, and keep on chuggin'
Andrey Andreeve8bc5f42012-10-10 11:13:59 +03001529 if ((strlen($temp) + strlen($char)) >= 76)
Derek Allard2067d1a2008-11-13 22:59:24 +00001530 {
1531 $output .= $temp.$escape.$this->crlf;
1532 $temp = '';
1533 }
1534
1535 // Add the character to our temporary line
1536 $temp .= $char;
1537 }
1538
1539 // Add our completed line to the output
1540 $output .= $temp.$this->crlf;
1541 }
1542
1543 // get rid of extra CRLF tacked onto the end
Andrey Andreev59c5b532012-03-01 14:09:51 +02001544 return substr($output, 0, strlen($this->crlf) * -1);
Derek Allard2067d1a2008-11-13 22:59:24 +00001545 }
1546
1547 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001548
Derek Allard2067d1a2008-11-13 22:59:24 +00001549 /**
1550 * Prep Q Encoding
1551 *
Andrey Andreev925dd902012-10-19 11:06:31 +03001552 * Performs "Q Encoding" on a string for use in email headers.
1553 * It's related but not identical to quoted-printable, so it has its
1554 * own method.
Derek Allard2067d1a2008-11-13 22:59:24 +00001555 *
Andrey Andreev081c9462012-03-01 12:58:11 +02001556 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +02001557 * @return string
Derek Allard2067d1a2008-11-13 22:59:24 +00001558 */
Andrey Andreev925dd902012-10-19 11:06:31 +03001559 protected function _prep_q_encoding($str)
Derek Allard2067d1a2008-11-13 22:59:24 +00001560 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001561 $str = str_replace(array("\r", "\n"), '', $str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001562
Andrey Andreev925dd902012-10-19 11:06:31 +03001563 if ($this->charset === 'UTF-8')
Derek Allard2067d1a2008-11-13 22:59:24 +00001564 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001565 if (MB_ENABLED === TRUE)
1566 {
1567 return mb_encode_mimeheader($str, $this->charset, 'Q', $this->crlf);
1568 }
Andrey Andreevbe1496d2014-02-11 22:48:45 +02001569 elseif (ICONV_ENABLED === TRUE)
Andrey Andreev925dd902012-10-19 11:06:31 +03001570 {
1571 $output = @iconv_mime_encode('', $str,
1572 array(
1573 'scheme' => 'Q',
1574 'line-length' => 76,
1575 'input-charset' => $this->charset,
1576 'output-charset' => $this->charset,
1577 'line-break-chars' => $this->crlf
1578 )
1579 );
1580
1581 // There are reports that iconv_mime_encode() might fail and return FALSE
1582 if ($output !== FALSE)
1583 {
1584 // iconv_mime_encode() will always put a header field name.
1585 // We've passed it an empty one, but it still prepends our
1586 // encoded string with ': ', so we need to strip it.
1587 return substr($output, 2);
1588 }
1589
1590 $chars = iconv_strlen($str, 'UTF-8');
1591 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001592 }
1593
Andrey Andreev925dd902012-10-19 11:06:31 +03001594 // We might already have this set for UTF-8
1595 isset($chars) OR $chars = strlen($str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001596
Andrey Andreev925dd902012-10-19 11:06:31 +03001597 $output = '=?'.$this->charset.'?Q?';
Andrey Andreevbe1496d2014-02-11 22:48:45 +02001598 for ($i = 0, $length = strlen($output); $i < $chars; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001599 {
Andrey Andreevbe1496d2014-02-11 22:48:45 +02001600 $chr = ($this->charset === 'UTF-8' && ICONV_ENABLED === TRUE)
Andrey Andreev925dd902012-10-19 11:06:31 +03001601 ? '='.implode('=', str_split(strtoupper(bin2hex(iconv_substr($str, $i, 1, $this->charset))), 2))
1602 : '='.strtoupper(bin2hex($str[$i]));
Derek Allard2067d1a2008-11-13 22:59:24 +00001603
Andrey Andreev925dd902012-10-19 11:06:31 +03001604 // RFC 2045 sets a limit of 76 characters per line.
1605 // We'll append ?= to the end of each line though.
1606 if ($length + ($l = strlen($chr)) > 74)
Derek Allard2067d1a2008-11-13 22:59:24 +00001607 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001608 $output .= '?='.$this->crlf // EOL
1609 .' =?'.$this->charset.'?Q?'.$chr; // New line
1610 $length = 6 + strlen($this->charset) + $l; // Reset the length for the new line
Derek Allard2067d1a2008-11-13 22:59:24 +00001611 }
Andrey Andreev925dd902012-10-19 11:06:31 +03001612 else
Derek Allard2067d1a2008-11-13 22:59:24 +00001613 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001614 $output .= $chr;
1615 $length += $l;
Derek Allard2067d1a2008-11-13 22:59:24 +00001616 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001617 }
1618
Andrey Andreev925dd902012-10-19 11:06:31 +03001619 // End the header
1620 return $output.'?=';
Derek Allard2067d1a2008-11-13 22:59:24 +00001621 }
1622
1623 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001624
Derek Allard2067d1a2008-11-13 22:59:24 +00001625 /**
1626 * Send Email
1627 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001628 * @param bool $auto_clear = TRUE
Derek Allard2067d1a2008-11-13 22:59:24 +00001629 * @return bool
1630 */
Alex Bilbied7bc8d02012-07-30 09:46:20 +01001631 public function send($auto_clear = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001632 {
Michael Granados92e2fd22014-11-11 21:49:26 -02001633 if ( ! isset($this->_headers['From']))
Michael Granados0b85d6b2014-11-09 02:43:48 -02001634 {
Michael Granados92e2fd22014-11-11 21:49:26 -02001635 $this->_set_error_message('lang:email_no_from');
Michael Granados0b85d6b2014-11-09 02:43:48 -02001636 return FALSE;
1637 }
1638
Alex Bilbied261b1e2012-06-02 11:12:16 +01001639 if ($this->_replyto_flag === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001640 {
1641 $this->reply_to($this->_headers['From']);
1642 }
1643
Andrey Andreev76f15c92012-03-01 13:05:07 +02001644 if ( ! isset($this->_recipients) && ! isset($this->_headers['To'])
1645 && ! isset($this->_bcc_array) && ! isset($this->_headers['Bcc'])
1646 && ! isset($this->_headers['Cc']))
Derek Allard2067d1a2008-11-13 22:59:24 +00001647 {
patworkb0707982011-04-08 15:10:05 +02001648 $this->_set_error_message('lang:email_no_recipients');
Derek Allard2067d1a2008-11-13 22:59:24 +00001649 return FALSE;
1650 }
1651
1652 $this->_build_headers();
1653
Andrey Andreev76f15c92012-03-01 13:05:07 +02001654 if ($this->bcc_batch_mode && count($this->_bcc_array) > $this->bcc_batch_size)
Derek Allard2067d1a2008-11-13 22:59:24 +00001655 {
Alex Bilbieb901e732012-07-30 09:44:57 +01001656 $result = $this->batch_bcc_send();
Alex Bilbied7bc8d02012-07-30 09:46:20 +01001657
Alex Bilbiea87aab32012-07-30 09:50:37 +01001658 if ($result && $auto_clear)
Alex Bilbied7bc8d02012-07-30 09:46:20 +01001659 {
1660 $this->clear();
1661 }
1662
Alex Bilbieb901e732012-07-30 09:44:57 +01001663 return $result;
Derek Allard2067d1a2008-11-13 22:59:24 +00001664 }
1665
buhay466e8082013-04-17 14:25:34 -07001666 if ($this->_build_message() === FALSE)
1667 {
1668 return FALSE;
1669 }
buhayc6da1ef2013-04-18 09:06:49 -07001670
Alex Bilbieb901e732012-07-30 09:44:57 +01001671 $result = $this->_spool_email();
Andrey Andreevbdb99992012-07-30 17:38:05 +03001672
Alex Bilbiea87aab32012-07-30 09:50:37 +01001673 if ($result && $auto_clear)
Alex Bilbied7bc8d02012-07-30 09:46:20 +01001674 {
1675 $this->clear();
1676 }
Alex Bilbiea87aab32012-07-30 09:50:37 +01001677
Alex Bilbieb901e732012-07-30 09:44:57 +01001678 return $result;
Derek Allard2067d1a2008-11-13 22:59:24 +00001679 }
Barry Mienydd671972010-10-04 16:33:58 +02001680
Derek Allard2067d1a2008-11-13 22:59:24 +00001681 // --------------------------------------------------------------------
1682
1683 /**
Andrey Andreev081c9462012-03-01 12:58:11 +02001684 * Batch Bcc Send. Sends groups of BCCs in batches
Derek Allard2067d1a2008-11-13 22:59:24 +00001685 *
Andrey Andreev081c9462012-03-01 12:58:11 +02001686 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +00001687 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +00001688 public function batch_bcc_send()
Derek Allard2067d1a2008-11-13 22:59:24 +00001689 {
Andrey Andreev59c5b532012-03-01 14:09:51 +02001690 $float = $this->bcc_batch_size - 1;
1691 $set = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001692 $chunk = array();
1693
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001694 for ($i = 0, $c = count($this->_bcc_array); $i < $c; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001695 {
1696 if (isset($this->_bcc_array[$i]))
1697 {
Andrey Andreev59c5b532012-03-01 14:09:51 +02001698 $set .= ', '.$this->_bcc_array[$i];
Derek Allard2067d1a2008-11-13 22:59:24 +00001699 }
1700
Alex Bilbied261b1e2012-06-02 11:12:16 +01001701 if ($i === $float)
Derek Allard2067d1a2008-11-13 22:59:24 +00001702 {
1703 $chunk[] = substr($set, 1);
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001704 $float += $this->bcc_batch_size;
Andrey Andreev59c5b532012-03-01 14:09:51 +02001705 $set = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001706 }
1707
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001708 if ($i === $c-1)
Derek Allard2067d1a2008-11-13 22:59:24 +00001709 {
1710 $chunk[] = substr($set, 1);
1711 }
1712 }
1713
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001714 for ($i = 0, $c = count($chunk); $i < $c; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001715 {
1716 unset($this->_headers['Bcc']);
Derek Allard2067d1a2008-11-13 22:59:24 +00001717
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001718 $bcc = $this->clean_email($this->_str_to_array($chunk[$i]));
Derek Allard2067d1a2008-11-13 22:59:24 +00001719
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001720 if ($this->protocol !== 'smtp')
Derek Allard2067d1a2008-11-13 22:59:24 +00001721 {
Mickey Wubfc1cad2012-05-31 22:28:40 -07001722 $this->set_header('Bcc', implode(', ', $bcc));
Derek Allard2067d1a2008-11-13 22:59:24 +00001723 }
1724 else
1725 {
1726 $this->_bcc_array = $bcc;
1727 }
1728
buhay466e8082013-04-17 14:25:34 -07001729 if ($this->_build_message() === FALSE)
1730 {
1731 return FALSE;
1732 }
buhayc6da1ef2013-04-18 09:06:49 -07001733
Derek Allard2067d1a2008-11-13 22:59:24 +00001734 $this->_spool_email();
1735 }
1736 }
Barry Mienydd671972010-10-04 16:33:58 +02001737
Derek Allard2067d1a2008-11-13 22:59:24 +00001738 // --------------------------------------------------------------------
1739
1740 /**
1741 * Unwrap special elements
1742 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001743 * @return void
1744 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001745 protected function _unwrap_specials()
Derek Allard2067d1a2008-11-13 22:59:24 +00001746 {
Andrey Andreev56454792012-05-17 14:32:19 +03001747 $this->_finalbody = preg_replace_callback('/\{unwrap\}(.*?)\{\/unwrap\}/si', array($this, '_remove_nl_callback'), $this->_finalbody);
Derek Allard2067d1a2008-11-13 22:59:24 +00001748 }
Barry Mienydd671972010-10-04 16:33:58 +02001749
Derek Allard2067d1a2008-11-13 22:59:24 +00001750 // --------------------------------------------------------------------
1751
1752 /**
1753 * Strip line-breaks via callback
1754 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001755 * @param string $matches
Derek Allard2067d1a2008-11-13 22:59:24 +00001756 * @return string
1757 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001758 protected function _remove_nl_callback($matches)
Derek Allard2067d1a2008-11-13 22:59:24 +00001759 {
1760 if (strpos($matches[1], "\r") !== FALSE OR strpos($matches[1], "\n") !== FALSE)
1761 {
1762 $matches[1] = str_replace(array("\r\n", "\r", "\n"), '', $matches[1]);
1763 }
1764
1765 return $matches[1];
1766 }
Barry Mienydd671972010-10-04 16:33:58 +02001767
Derek Allard2067d1a2008-11-13 22:59:24 +00001768 // --------------------------------------------------------------------
1769
1770 /**
1771 * Spool mail to the mail server
1772 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001773 * @return bool
1774 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001775 protected function _spool_email()
Derek Allard2067d1a2008-11-13 22:59:24 +00001776 {
1777 $this->_unwrap_specials();
1778
Andrey Andreev56454792012-05-17 14:32:19 +03001779 $method = '_send_with_'.$this->_get_protocol();
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001780 if ( ! $this->$method())
Derek Allard2067d1a2008-11-13 22:59:24 +00001781 {
Andrey Andreev56454792012-05-17 14:32:19 +03001782 $this->_set_error_message('lang:email_send_failure_'.($this->_get_protocol() === 'mail' ? 'phpmail' : $this->_get_protocol()));
Diogo Osório7fcc7bd2012-03-02 16:54:52 +00001783 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001784 }
1785
patworkb0707982011-04-08 15:10:05 +02001786 $this->_set_error_message('lang:email_sent', $this->_get_protocol());
Derek Allard2067d1a2008-11-13 22:59:24 +00001787 return TRUE;
1788 }
Barry Mienydd671972010-10-04 16:33:58 +02001789
Derek Allard2067d1a2008-11-13 22:59:24 +00001790 // --------------------------------------------------------------------
1791
1792 /**
1793 * Send using mail()
1794 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001795 * @return bool
1796 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001797 protected function _send_with_mail()
Derek Allard2067d1a2008-11-13 22:59:24 +00001798 {
Andrey Andreev8a7078b2012-10-17 10:52:49 +03001799 if (is_array($this->_recipients))
1800 {
1801 $this->_recipients = implode(', ', $this->_recipients);
1802 }
1803
Alex Bilbied261b1e2012-06-02 11:12:16 +01001804 if ($this->_safe_mode === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001805 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001806 return mail($this->_recipients, $this->_subject, $this->_finalbody, $this->_header_str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001807 }
1808 else
1809 {
1810 // most documentation of sendmail using the "-f" flag lacks a space after it, however
1811 // we've encountered servers that seem to require it to be in place.
Melounek58dfc082012-06-29 08:43:47 +02001812 return mail($this->_recipients, $this->_subject, $this->_finalbody, $this->_header_str, '-f '.$this->clean_email($this->_headers['Return-Path']));
Derek Allard2067d1a2008-11-13 22:59:24 +00001813 }
1814 }
Barry Mienydd671972010-10-04 16:33:58 +02001815
Derek Allard2067d1a2008-11-13 22:59:24 +00001816 // --------------------------------------------------------------------
1817
1818 /**
1819 * Send using Sendmail
1820 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001821 * @return bool
1822 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001823 protected function _send_with_sendmail()
Derek Allard2067d1a2008-11-13 22:59:24 +00001824 {
Andrey Andreeve9d2dc82012-11-07 14:23:29 +02001825 // is popen() enabled?
1826 if ( ! function_usable('popen')
1827 OR FALSE === ($fp = @popen(
1828 $this->mailpath.' -oi -f '.$this->clean_email($this->_headers['From'])
1829 .' -t -r '.$this->clean_email($this->_headers['Return-Path'])
1830 , 'w'))
1831 ) // server probably has popen disabled, so nothing we can do to get a verbose error.
Derek Jones4cefaa42009-04-29 19:13:56 +00001832 {
Derek Jones4cefaa42009-04-29 19:13:56 +00001833 return FALSE;
1834 }
Derek Jones71141ce2010-03-02 16:41:20 -06001835
Derek Jonesc630bcf2008-11-17 21:09:45 +00001836 fputs($fp, $this->_header_str);
1837 fputs($fp, $this->_finalbody);
1838
Barry Mienydd671972010-10-04 16:33:58 +02001839 $status = pclose($fp);
Eric Barnes6113f542010-12-29 13:36:12 -05001840
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001841 if ($status !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001842 {
patworkb0707982011-04-08 15:10:05 +02001843 $this->_set_error_message('lang:email_exit_status', $status);
1844 $this->_set_error_message('lang:email_no_socket');
Derek Allard2067d1a2008-11-13 22:59:24 +00001845 return FALSE;
1846 }
1847
Derek Allard2067d1a2008-11-13 22:59:24 +00001848 return TRUE;
1849 }
Barry Mienydd671972010-10-04 16:33:58 +02001850
Derek Allard2067d1a2008-11-13 22:59:24 +00001851 // --------------------------------------------------------------------
1852
1853 /**
1854 * Send using SMTP
1855 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001856 * @return bool
1857 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001858 protected function _send_with_smtp()
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301859 {
1860 if ($this->smtp_host === '')
1861 {
1862 $this->_set_error_message('lang:email_no_hostname');
1863 return FALSE;
1864 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001865
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301866 if ( ! $this->_smtp_connect() OR ! $this->_smtp_authenticate())
1867 {
1868 return FALSE;
1869 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001870
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301871 $this->_send_command('from', $this->clean_email($this->_headers['From']));
Derek Allard2067d1a2008-11-13 22:59:24 +00001872
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301873 foreach ($this->_recipients as $val)
1874 {
1875 $this->_send_command('to', $val);
1876 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001877
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301878 if (count($this->_cc_array) > 0)
1879 {
1880 foreach ($this->_cc_array as $val)
1881 {
1882 if ($val !== '')
1883 {
1884 $this->_send_command('to', $val);
1885 }
1886 }
1887 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001888
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301889 if (count($this->_bcc_array) > 0)
1890 {
1891 foreach ($this->_bcc_array as $val)
1892 {
1893 if ($val !== '')
1894 {
1895 $this->_send_command('to', $val);
1896 }
1897 }
1898 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001899
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301900 $this->_send_command('data');
Derek Allard2067d1a2008-11-13 22:59:24 +00001901
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301902 // perform dot transformation on any lines that begin with a dot
1903 $this->_send_data($this->_header_str.preg_replace('/^\./m', '..$1', $this->_finalbody));
Derek Allard2067d1a2008-11-13 22:59:24 +00001904
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301905 $this->_send_data('.');
Derek Allard2067d1a2008-11-13 22:59:24 +00001906
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301907 $reply = $this->_get_smtp_data();
Derek Allard2067d1a2008-11-13 22:59:24 +00001908
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301909 $this->_set_error_message($reply);
Derek Allard2067d1a2008-11-13 22:59:24 +00001910
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301911 if (strpos($reply, '250') !== 0)
1912 {
1913 $this->_set_error_message('lang:email_smtp_error', $reply);
1914 return FALSE;
1915 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001916
nisheeth-barthwal758f40c2013-02-18 17:18:51 +05301917 if ($this->smtp_keepalive)
1918 {
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301919 $this->_send_command('reset');
nisheeth-barthwal758f40c2013-02-18 17:18:51 +05301920 }
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301921 else
nisheeth-barthwal758f40c2013-02-18 17:18:51 +05301922 {
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301923 $this->_send_command('quit');
nisheeth-barthwal758f40c2013-02-18 17:18:51 +05301924 }
Barry Mienydd671972010-10-04 16:33:58 +02001925
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301926 return TRUE;
1927 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001928
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301929 // --------------------------------------------------------------------
Radu Potop4c589ae2011-09-29 10:19:55 +03001930
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301931 /**
1932 * SMTP Connect
1933 *
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301934 * @return string
1935 */
nisheeth-barthwala44e6912013-02-18 18:07:03 +05301936 protected function _smtp_connect()
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301937 {
nisheeth-barthwala44e6912013-02-18 18:07:03 +05301938 if (is_resource($this->_smtp_connect))
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301939 {
nisheeth-barthwala44e6912013-02-18 18:07:03 +05301940 return TRUE;
1941 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001942
Andrey Andreev89b67b42013-03-12 19:34:23 +02001943 $ssl = ($this->smtp_crypto === 'ssl') ? 'ssl://' : '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001944
nisheeth-barthwala44e6912013-02-18 18:07:03 +05301945 $this->_smtp_connect = fsockopen($ssl.$this->smtp_host,
1946 $this->smtp_port,
1947 $errno,
1948 $errstr,
1949 $this->smtp_timeout);
1950
1951 if ( ! is_resource($this->_smtp_connect))
1952 {
1953 $this->_set_error_message('lang:email_smtp_error', $errno.' '.$errstr);
1954 return FALSE;
1955 }
1956
1957 stream_set_timeout($this->_smtp_connect, $this->smtp_timeout);
1958 $this->_set_error_message($this->_get_smtp_data());
1959
1960 if ($this->smtp_crypto === 'tls')
1961 {
1962 $this->_send_command('hello');
1963 $this->_send_command('starttls');
1964
1965 $crypto = stream_socket_enable_crypto($this->_smtp_connect, TRUE, STREAM_CRYPTO_METHOD_TLS_CLIENT);
1966
1967 if ($crypto !== TRUE)
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301968 {
nisheeth-barthwala44e6912013-02-18 18:07:03 +05301969 $this->_set_error_message('lang:email_smtp_error', $this->_get_smtp_data());
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301970 return FALSE;
1971 }
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301972 }
nisheeth-barthwala44e6912013-02-18 18:07:03 +05301973
1974 return $this->_send_command('hello');
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301975 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001976
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301977 // --------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +00001978
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301979 /**
1980 * Send SMTP command
1981 *
1982 * @param string
1983 * @param string
1984 * @return string
1985 */
1986 protected function _send_command($cmd, $data = '')
1987 {
1988 switch ($cmd)
1989 {
1990 case 'hello' :
Derek Allard2067d1a2008-11-13 22:59:24 +00001991
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301992 if ($this->_smtp_auth OR $this->_get_encoding() === '8bit')
1993 {
1994 $this->_send_data('EHLO '.$this->_get_hostname());
1995 }
1996 else
1997 {
1998 $this->_send_data('HELO '.$this->_get_hostname());
1999 }
Radu Potopbbf04b02011-09-28 13:57:51 +03002000
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302001 $resp = 250;
2002 break;
2003 case 'starttls' :
Derek Allard2067d1a2008-11-13 22:59:24 +00002004
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302005 $this->_send_data('STARTTLS');
2006 $resp = 220;
2007 break;
2008 case 'from' :
Andrey Andreev56454792012-05-17 14:32:19 +03002009
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302010 $this->_send_data('MAIL FROM:<'.$data.'>');
2011 $resp = 250;
2012 break;
2013 case 'to' :
Andrey Andreev56454792012-05-17 14:32:19 +03002014
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302015 if ($this->dsn)
2016 {
2017 $this->_send_data('RCPT TO:<'.$data.'> NOTIFY=SUCCESS,DELAY,FAILURE ORCPT=rfc822;'.$data);
2018 }
2019 else
2020 {
2021 $this->_send_data('RCPT TO:<'.$data.'>');
2022 }
Derek Allard2067d1a2008-11-13 22:59:24 +00002023
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302024 $resp = 250;
2025 break;
2026 case 'data' :
Derek Allard2067d1a2008-11-13 22:59:24 +00002027
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302028 $this->_send_data('DATA');
2029 $resp = 354;
2030 break;
2031 case 'reset':
Derek Allard2067d1a2008-11-13 22:59:24 +00002032
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302033 $this->_send_data('RSET');
2034 $resp = 250;
2035 break;
2036 case 'quit' :
Derek Allard2067d1a2008-11-13 22:59:24 +00002037
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302038 $this->_send_data('QUIT');
2039 $resp = 221;
2040 break;
2041 }
Derek Allard2067d1a2008-11-13 22:59:24 +00002042
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302043 $reply = $this->_get_smtp_data();
Derek Allard2067d1a2008-11-13 22:59:24 +00002044
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302045 $this->_debug_msg[] = '<pre>'.$cmd.': '.$reply.'</pre>';
Derek Allard2067d1a2008-11-13 22:59:24 +00002046
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302047 if ((int) substr($reply, 0, 3) !== $resp)
2048 {
2049 $this->_set_error_message('lang:email_smtp_error', $reply);
2050 return FALSE;
2051 }
Barry Mienydd671972010-10-04 16:33:58 +02002052
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302053 if ($cmd === 'quit')
2054 {
2055 fclose($this->_smtp_connect);
2056 }
Derek Allard2067d1a2008-11-13 22:59:24 +00002057
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302058 return TRUE;
2059 }
Derek Allard2067d1a2008-11-13 22:59:24 +00002060
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302061 // --------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +00002062
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302063 /**
2064 * SMTP Authenticate
2065 *
2066 * @return bool
2067 */
2068 protected function _smtp_authenticate()
2069 {
2070 if ( ! $this->_smtp_auth)
2071 {
2072 return TRUE;
2073 }
Derek Allard2067d1a2008-11-13 22:59:24 +00002074
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302075 if ($this->smtp_user === '' && $this->smtp_pass === '')
2076 {
2077 $this->_set_error_message('lang:email_no_smtp_unpw');
2078 return FALSE;
2079 }
Derek Allard2067d1a2008-11-13 22:59:24 +00002080
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302081 $this->_send_data('AUTH LOGIN');
Derek Allard2067d1a2008-11-13 22:59:24 +00002082
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302083 $reply = $this->_get_smtp_data();
Derek Allard2067d1a2008-11-13 22:59:24 +00002084
Andrey Andreevfa01ae42013-03-04 14:40:18 +02002085 if (strpos($reply, '503') === 0) // Already authenticated
nisheeth-barthwal758f40c2013-02-18 17:18:51 +05302086 {
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302087 return TRUE;
nisheeth-barthwal758f40c2013-02-18 17:18:51 +05302088 }
Andrey Andreevfa01ae42013-03-04 14:40:18 +02002089 elseif (strpos($reply, '334') !== 0)
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302090 {
2091 $this->_set_error_message('lang:email_failed_smtp_login', $reply);
2092 return FALSE;
2093 }
Derek Allard2067d1a2008-11-13 22:59:24 +00002094
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302095 $this->_send_data(base64_encode($this->smtp_user));
Derek Allard2067d1a2008-11-13 22:59:24 +00002096
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302097 $reply = $this->_get_smtp_data();
Derek Allard2067d1a2008-11-13 22:59:24 +00002098
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302099 if (strpos($reply, '334') !== 0)
2100 {
2101 $this->_set_error_message('lang:email_smtp_auth_un', $reply);
2102 return FALSE;
2103 }
Derek Allard2067d1a2008-11-13 22:59:24 +00002104
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302105 $this->_send_data(base64_encode($this->smtp_pass));
Derek Allard2067d1a2008-11-13 22:59:24 +00002106
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302107 $reply = $this->_get_smtp_data();
nisheeth-barthwalcf225572013-02-18 01:08:04 +05302108
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302109 if (strpos($reply, '235') !== 0)
2110 {
2111 $this->_set_error_message('lang:email_smtp_auth_pw', $reply);
2112 return FALSE;
2113 }
nisheeth-barthwalcf225572013-02-18 01:08:04 +05302114
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302115 return TRUE;
2116 }
Barry Mienydd671972010-10-04 16:33:58 +02002117
Derek Allard2067d1a2008-11-13 22:59:24 +00002118 // --------------------------------------------------------------------
2119
2120 /**
2121 * Send SMTP data
2122 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03002123 * @param string $data
Derek Allard2067d1a2008-11-13 22:59:24 +00002124 * @return bool
2125 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06002126 protected function _send_data($data)
Derek Allard2067d1a2008-11-13 22:59:24 +00002127 {
Andrey Andreevd8b1ad32014-01-15 17:42:52 +02002128 $data .= $this->newline;
2129 for ($written = 0, $length = strlen($data); $written < $length; $written += $result)
2130 {
2131 if (($result = fwrite($this->_smtp_connect, substr($data, $written))) === FALSE)
2132 {
2133 break;
2134 }
2135 }
2136
2137 if ($result === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00002138 {
patworkb0707982011-04-08 15:10:05 +02002139 $this->_set_error_message('lang:email_smtp_data_failure', $data);
Derek Allard2067d1a2008-11-13 22:59:24 +00002140 return FALSE;
2141 }
Andrey Andreev1bd3d882011-12-22 15:38:20 +02002142
2143 return TRUE;
Derek Allard2067d1a2008-11-13 22:59:24 +00002144 }
Barry Mienydd671972010-10-04 16:33:58 +02002145
Derek Allard2067d1a2008-11-13 22:59:24 +00002146 // --------------------------------------------------------------------
2147
2148 /**
2149 * Get SMTP data
2150 *
Derek Allard2067d1a2008-11-13 22:59:24 +00002151 * @return string
2152 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06002153 protected function _get_smtp_data()
Derek Allard2067d1a2008-11-13 22:59:24 +00002154 {
Andrey Andreev56454792012-05-17 14:32:19 +03002155 $data = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00002156
2157 while ($str = fgets($this->_smtp_connect, 512))
2158 {
2159 $data .= $str;
2160
Alex Bilbied261b1e2012-06-02 11:12:16 +01002161 if ($str[3] === ' ')
Derek Allard2067d1a2008-11-13 22:59:24 +00002162 {
2163 break;
2164 }
2165 }
2166
2167 return $data;
2168 }
Barry Mienydd671972010-10-04 16:33:58 +02002169
Derek Allard2067d1a2008-11-13 22:59:24 +00002170 // --------------------------------------------------------------------
2171
2172 /**
2173 * Get Hostname
James Wade3245af42015-02-06 11:48:51 +00002174 *
2175 * There are only two legal types of hostname either a fully qualified domain
2176 * name (eg: "mail.example.com") or an "IP literal" (eg: "[1.2.3.4]").
2177 *
2178 * @link http://cbl.abuseat.org/namingproblems.html
Derek Allard2067d1a2008-11-13 22:59:24 +00002179 * @return string
2180 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06002181 protected function _get_hostname()
Derek Allard2067d1a2008-11-13 22:59:24 +00002182 {
James Wade3245af42015-02-06 11:48:51 +00002183 return isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : '[' . $_SERVER['SERVER_ADDR'] . ']';
Derek Allard2067d1a2008-11-13 22:59:24 +00002184 }
Barry Mienydd671972010-10-04 16:33:58 +02002185
Derek Allard2067d1a2008-11-13 22:59:24 +00002186 // --------------------------------------------------------------------
2187
2188 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00002189 * Get Debug Message
2190 *
Andrey Andreev61797f62012-11-26 16:15:12 +02002191 * @param array $include List of raw data chunks to include in the output
2192 * Valid options are: 'headers', 'subject', 'body'
Derek Allard2067d1a2008-11-13 22:59:24 +00002193 * @return string
2194 */
Andrey Andreev61797f62012-11-26 16:15:12 +02002195 public function print_debugger($include = array('headers', 'subject', 'body'))
Derek Allard2067d1a2008-11-13 22:59:24 +00002196 {
2197 $msg = '';
2198
2199 if (count($this->_debug_msg) > 0)
2200 {
2201 foreach ($this->_debug_msg as $val)
2202 {
2203 $msg .= $val;
2204 }
2205 }
2206
Andrey Andreev61797f62012-11-26 16:15:12 +02002207 // Determine which parts of our raw data needs to be printed
2208 $raw_data = '';
2209 is_array($include) OR $include = array($include);
2210
2211 if (in_array('headers', $include, TRUE))
2212 {
Andrey Andreev58f677f2013-07-16 11:01:37 +03002213 $raw_data = htmlspecialchars($this->_header_str)."\n";
Andrey Andreev61797f62012-11-26 16:15:12 +02002214 }
2215
2216 if (in_array('subject', $include, TRUE))
2217 {
2218 $raw_data .= htmlspecialchars($this->_subject)."\n";
2219 }
2220
2221 if (in_array('body', $include, TRUE))
2222 {
2223 $raw_data .= htmlspecialchars($this->_finalbody);
2224 }
2225
2226 return $msg.($raw_data === '' ? '' : '<pre>'.$raw_data.'</pre>');
Derek Allard2067d1a2008-11-13 22:59:24 +00002227 }
Barry Mienydd671972010-10-04 16:33:58 +02002228
Derek Allard2067d1a2008-11-13 22:59:24 +00002229 // --------------------------------------------------------------------
2230
2231 /**
2232 * Set Message
2233 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03002234 * @param string $msg
2235 * @param string $val = ''
Andrey Andreev081c9462012-03-01 12:58:11 +02002236 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +00002237 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06002238 protected function _set_error_message($msg, $val = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00002239 {
2240 $CI =& get_instance();
2241 $CI->lang->load('email');
2242
Andrey Andreev7a7ad782012-11-12 17:21:01 +02002243 if (sscanf($msg, 'lang:%s', $line) !== 1 OR FALSE === ($line = $CI->lang->line($line)))
Derek Allard2067d1a2008-11-13 22:59:24 +00002244 {
Andrey Andreev56454792012-05-17 14:32:19 +03002245 $this->_debug_msg[] = str_replace('%s', $val, $msg).'<br />';
Derek Allard2067d1a2008-11-13 22:59:24 +00002246 }
2247 else
2248 {
Andrey Andreev56454792012-05-17 14:32:19 +03002249 $this->_debug_msg[] = str_replace('%s', $val, $line).'<br />';
Derek Allard2067d1a2008-11-13 22:59:24 +00002250 }
2251 }
Barry Mienydd671972010-10-04 16:33:58 +02002252
Derek Allard2067d1a2008-11-13 22:59:24 +00002253 // --------------------------------------------------------------------
2254
2255 /**
2256 * Mime Types
2257 *
Derek Allard2067d1a2008-11-13 22:59:24 +00002258 * @param string
2259 * @return string
2260 */
Andrey Andreev59c5b532012-03-01 14:09:51 +02002261 protected function _mime_types($ext = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00002262 {
Andrey Andreev6ef498b2012-06-05 22:01:58 +03002263 $ext = strtolower($ext);
2264
vlakoff66c7bb42014-05-19 13:45:12 +02002265 $mimes =& get_mimes();
vlakoff69550c52014-05-19 13:45:02 +02002266
Andrey Andreev6ef498b2012-06-05 22:01:58 +03002267 if (isset($mimes[$ext]))
2268 {
2269 return is_array($mimes[$ext])
2270 ? current($mimes[$ext])
2271 : $mimes[$ext];
2272 }
2273
2274 return 'application/x-unknown-content-type';
Derek Allard2067d1a2008-11-13 22:59:24 +00002275 }
2276
2277}