blob: 20eac72fc7769137c068a71aac85beec0d45e476 [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05007 * NOTICE OF LICENSE
Andrey Andreev1bd3d882011-12-22 15:38:20 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreev1bd3d882011-12-22 15:38:20 +020010 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -050011 * This source file is subject to the Open Software License (OSL 3.0) that is
12 * bundled with this package in the files license.txt / license.rst. It is
13 * also available through the world wide web at this URL:
14 * http://opensource.org/licenses/OSL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
Derek Allard2067d1a2008-11-13 22:59:24 +000019 * @package CodeIgniter
Derek Jonesf4a4bd82011-10-20 12:18:42 -050020 * @author EllisLab Dev Team
Andrey Andreev80500af2013-01-01 08:16:53 +020021 * @copyright Copyright (c) 2008 - 2013, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
Derek Allard2067d1a2008-11-13 22:59:24 +000023 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000028
Derek Allard2067d1a2008-11-13 22:59:24 +000029/**
30 * CodeIgniter Email Class
31 *
32 * Permits email to be sent using Mail, Sendmail, or SMTP.
33 *
34 * @package CodeIgniter
35 * @subpackage Libraries
36 * @category Libraries
Derek Jonesf4a4bd82011-10-20 12:18:42 -050037 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000038 * @link http://codeigniter.com/user_guide/libraries/email.html
39 */
trita15dd4f2011-11-23 07:40:05 -050040class CI_Email {
Derek Allard2067d1a2008-11-13 22:59:24 +000041
Andrey Andreev597ea272012-11-01 22:56:26 +020042 /**
43 * Used as the User-Agent and X-Mailer headers' value.
44 *
45 * @var string
46 */
Andrey Andreev59c5b532012-03-01 14:09:51 +020047 public $useragent = 'CodeIgniter';
Andrey Andreev50814092012-03-01 12:36:12 +020048
Andrey Andreev597ea272012-11-01 22:56:26 +020049 /**
50 * Path to the Sendmail binary.
51 *
52 * @var string
53 */
54 public $mailpath = '/usr/sbin/sendmail'; // Sendmail path
55
56 /**
57 * Which method to use for sending e-mails.
58 *
59 * @var string 'mail', 'sendmail' or 'smtp'
60 */
61 public $protocol = 'mail'; // mail/sendmail/smtp
62
63 /**
64 * STMP Server host
65 *
66 * @var string
67 */
68 public $smtp_host = '';
69
70 /**
71 * SMTP Username
72 *
73 * @var string
74 */
75 public $smtp_user = '';
76
77 /**
78 * SMTP Password
79 *
80 * @var string
81 */
82 public $smtp_pass = '';
83
84 /**
85 * SMTP Server port
86 *
87 * @var int
88 */
89 public $smtp_port = 25;
90
91 /**
92 * SMTP connection timeout in seconds
93 *
94 * @var int
95 */
96 public $smtp_timeout = 5;
vlakofff3994252013-02-19 01:45:23 +010097
nisheeth-barthwalcf225572013-02-18 01:08:04 +053098 /**
nisheeth-barthwal59209de2013-02-18 17:02:13 +053099 * SMTP persistent connection
100 *
101 * @var bool
102 */
103 public $smtp_keepalive = FALSE;
Andrey Andreev597ea272012-11-01 22:56:26 +0200104
105 /**
106 * SMTP Encryption
107 *
Andrey Andreev89b67b42013-03-12 19:34:23 +0200108 * @var string empty, 'tls' or 'ssl'
Andrey Andreev597ea272012-11-01 22:56:26 +0200109 */
Andrey Andreev89b67b42013-03-12 19:34:23 +0200110 public $smtp_crypto = '';
Andrey Andreev597ea272012-11-01 22:56:26 +0200111
112 /**
113 * Whether to apply word-wrapping to the message body.
114 *
115 * @var bool
116 */
117 public $wordwrap = TRUE;
118
119 /**
120 * Number of characters to wrap at.
121 *
122 * @see CI_Email::$wordwrap
123 * @var int
124 */
125 public $wrapchars = 76;
126
127 /**
128 * Message format.
129 *
130 * @var string 'text' or 'html'
131 */
132 public $mailtype = 'text';
133
134 /**
135 * Character set (default: utf-8)
136 *
137 * @var string
138 */
139 public $charset = 'utf-8';
140
141 /**
142 * Multipart message
143 *
144 * @var string 'mixed' (in the body) or 'related' (separate)
145 */
146 public $multipart = 'mixed'; // "mixed" (in the body) or "related" (separate)
147
148 /**
149 * Alternative message (for HTML messages only)
150 *
151 * @var string
152 */
153 public $alt_message = '';
154
155 /**
156 * Whether to validate e-mail addresses.
157 *
158 * @var bool
159 */
160 public $validate = FALSE;
161
162 /**
163 * X-Priority header value.
164 *
165 * @var int 1-5
166 */
167 public $priority = 3; // Default priority (1 - 5)
168
169 /**
170 * Newline character sequence.
171 * Use "\r\n" to comply with RFC 822.
172 *
173 * @link http://www.ietf.org/rfc/rfc822.txt
174 * @var string "\r\n" or "\n"
175 */
176 public $newline = "\n"; // Default newline. "\r\n" or "\n" (Use "\r\n" to comply with RFC 822)
177
178 /**
179 * CRLF character sequence
180 *
181 * RFC 2045 specifies that for 'quoted-printable' encoding,
182 * "\r\n" must be used. However, it appears that some servers
183 * (even on the receiving end) don't handle it properly and
184 * switching to "\n", while improper, is the only solution
185 * that seems to work for all environments.
186 *
187 * @link http://www.ietf.org/rfc/rfc822.txt
188 * @var string
189 */
190 public $crlf = "\n";
191
192 /**
193 * Whether to use Delivery Status Notification.
194 *
195 * @var bool
196 */
197 public $dsn = FALSE;
198
199 /**
200 * Whether to send multipart alternatives.
201 * Yahoo! doesn't seem to like these.
202 *
203 * @var bool
204 */
205 public $send_multipart = TRUE;
206
207 /**
208 * Whether to send messages to BCC recipients in batches.
209 *
210 * @var bool
211 */
212 public $bcc_batch_mode = FALSE;
213
214 /**
215 * BCC Batch max number size.
216 *
217 * @see CI_Email::$bcc_batch_mode
218 * @var int
219 */
220 public $bcc_batch_size = 200;
221
222 // --------------------------------------------------------------------
223
224 /**
225 * Whether PHP is running in safe mode. Initialized by the class constructor.
226 *
227 * @var bool
228 */
Andrey Andreev50814092012-03-01 12:36:12 +0200229 protected $_safe_mode = FALSE;
Andrey Andreev597ea272012-11-01 22:56:26 +0200230
231 /**
232 * Subject header
233 *
234 * @var string
235 */
Andrey Andreev50814092012-03-01 12:36:12 +0200236 protected $_subject = '';
Andrey Andreev597ea272012-11-01 22:56:26 +0200237
238 /**
239 * Message body
240 *
241 * @var string
242 */
Andrey Andreev50814092012-03-01 12:36:12 +0200243 protected $_body = '';
Andrey Andreev597ea272012-11-01 22:56:26 +0200244
245 /**
246 * Final message body to be sent.
247 *
248 * @var string
249 */
Andrey Andreev50814092012-03-01 12:36:12 +0200250 protected $_finalbody = '';
Andrey Andreev597ea272012-11-01 22:56:26 +0200251
252 /**
253 * multipart/alternative boundary
254 *
255 * @var string
256 */
Andrey Andreev50814092012-03-01 12:36:12 +0200257 protected $_alt_boundary = '';
Andrey Andreev597ea272012-11-01 22:56:26 +0200258
259 /**
260 * Attachment boundary
261 *
262 * @var string
263 */
Andrey Andreev50814092012-03-01 12:36:12 +0200264 protected $_atc_boundary = '';
Andrey Andreev597ea272012-11-01 22:56:26 +0200265
266 /**
267 * Final headers to send
268 *
269 * @var string
270 */
Andrey Andreev50814092012-03-01 12:36:12 +0200271 protected $_header_str = '';
Andrey Andreev597ea272012-11-01 22:56:26 +0200272
273 /**
274 * SMTP Connection socket placeholder
275 *
276 * @var resource
277 */
Andrey Andreev50814092012-03-01 12:36:12 +0200278 protected $_smtp_connect = '';
Andrey Andreev597ea272012-11-01 22:56:26 +0200279
280 /**
281 * Mail encoding
282 *
283 * @var string '8bit' or '7bit'
284 */
Andrey Andreev50814092012-03-01 12:36:12 +0200285 protected $_encoding = '8bit';
Andrey Andreev597ea272012-11-01 22:56:26 +0200286
287 /**
288 * Whether to perform SMTP authentication
289 *
290 * @var bool
291 */
Andrey Andreev50814092012-03-01 12:36:12 +0200292 protected $_smtp_auth = FALSE;
Andrey Andreev597ea272012-11-01 22:56:26 +0200293
294 /**
295 * Whether to send a Reply-To header
296 *
297 * @var bool
298 */
Andrey Andreev50814092012-03-01 12:36:12 +0200299 protected $_replyto_flag = FALSE;
Andrey Andreev597ea272012-11-01 22:56:26 +0200300
301 /**
302 * Debug messages
303 *
304 * @see CI_Email::print_debugger()
305 * @var string
306 */
Andrey Andreev50814092012-03-01 12:36:12 +0200307 protected $_debug_msg = array();
Andrey Andreev597ea272012-11-01 22:56:26 +0200308
309 /**
310 * Recipients
311 *
312 * @var string[]
313 */
Andrey Andreev50814092012-03-01 12:36:12 +0200314 protected $_recipients = array();
Andrey Andreev597ea272012-11-01 22:56:26 +0200315
316 /**
317 * CC Recipients
318 *
319 * @var string[]
320 */
Andrey Andreev50814092012-03-01 12:36:12 +0200321 protected $_cc_array = array();
Andrey Andreev597ea272012-11-01 22:56:26 +0200322
323 /**
324 * BCC Recipients
325 *
326 * @var string[]
327 */
Andrey Andreev50814092012-03-01 12:36:12 +0200328 protected $_bcc_array = array();
Andrey Andreev597ea272012-11-01 22:56:26 +0200329
330 /**
331 * Message headers
332 *
333 * @var string[]
334 */
Andrey Andreev50814092012-03-01 12:36:12 +0200335 protected $_headers = array();
Andrey Andreev597ea272012-11-01 22:56:26 +0200336
337 /**
338 * Attachment data
339 *
340 * @var array
341 */
Andrey Andreevb8f9a152012-10-27 01:36:51 +0300342 protected $_attachments = array();
Andrey Andreev597ea272012-11-01 22:56:26 +0200343
344 /**
345 * Valid $protocol values
346 *
347 * @see CI_Email::$protocol
348 * @var string[]
349 */
Andrey Andreev50814092012-03-01 12:36:12 +0200350 protected $_protocols = array('mail', 'sendmail', 'smtp');
Andrey Andreev597ea272012-11-01 22:56:26 +0200351
352 /**
353 * Base charsets
354 *
355 * Character sets valid for 7-bit encoding,
356 * excluding language suffix.
357 *
358 * @var string[]
359 */
360 protected $_base_charsets = array('us-ascii', 'iso-2022-');
361
362 /**
363 * Bit depths
364 *
365 * Valid mail encodings
366 *
367 * @see CI_Email::$_encoding
368 * @var string[]
369 */
Andrey Andreev50814092012-03-01 12:36:12 +0200370 protected $_bit_depths = array('7bit', '8bit');
Andrey Andreev597ea272012-11-01 22:56:26 +0200371
372 /**
373 * $priority translations
374 *
375 * Actual values to send with the X-Priority header
376 *
377 * @var string[]
378 */
Andrey Andreev50814092012-03-01 12:36:12 +0200379 protected $_priorities = array('1 (Highest)', '2 (High)', '3 (Normal)', '4 (Low)', '5 (Lowest)');
Derek Allard2067d1a2008-11-13 22:59:24 +0000380
Andrey Andreev597ea272012-11-01 22:56:26 +0200381 // --------------------------------------------------------------------
382
Derek Allard2067d1a2008-11-13 22:59:24 +0000383 /**
384 * Constructor - Sets Email Preferences
385 *
386 * The constructor can be passed an array of config values
Andrey Andreev56454792012-05-17 14:32:19 +0300387 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +0300388 * @param array $config = array()
Andrey Andreev56454792012-05-17 14:32:19 +0300389 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +0000390 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000391 public function __construct($config = array())
Derek Allard2067d1a2008-11-13 22:59:24 +0000392 {
Andrey Andreev925dd902012-10-19 11:06:31 +0300393 $this->charset = config_item('charset');
Andrey Andreev9f44c212012-10-10 16:07:17 +0300394
Derek Allard2067d1a2008-11-13 22:59:24 +0000395 if (count($config) > 0)
396 {
397 $this->initialize($config);
398 }
399 else
400 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100401 $this->_smtp_auth = ! ($this->smtp_user === '' && $this->smtp_pass === '');
Derek Allard2067d1a2008-11-13 22:59:24 +0000402 }
403
Andrey Andreev5932a732013-09-13 14:45:53 +0300404 $this->_safe_mode = ( ! is_php('5.4') && (bool) @ini_get('safe_mode'));
Andrey Andreev925dd902012-10-19 11:06:31 +0300405 $this->charset = strtoupper($this->charset);
406
Andrey Andreev59c5b532012-03-01 14:09:51 +0200407 log_message('debug', 'Email Class Initialized');
Derek Allard2067d1a2008-11-13 22:59:24 +0000408 }
nisheeth-barthwal59209de2013-02-18 17:02:13 +0530409
nisheeth-barthwalcf225572013-02-18 01:08:04 +0530410 // --------------------------------------------------------------------
vlakofff3994252013-02-19 01:45:23 +0100411
nisheeth-barthwalcf225572013-02-18 01:08:04 +0530412 /**
nisheeth-barthwal59209de2013-02-18 17:02:13 +0530413 * Destructor - Releases Resources
414 *
415 * @return void
416 */
417 public function __destruct()
418 {
nisheeth-barthwal758f40c2013-02-18 17:18:51 +0530419 if (is_resource($this->_smtp_connect))
420 {
nisheeth-barthwal59209de2013-02-18 17:02:13 +0530421 $this->_send_command('quit');
nisheeth-barthwal758f40c2013-02-18 17:18:51 +0530422 }
nisheeth-barthwal59209de2013-02-18 17:02:13 +0530423 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000424
425 // --------------------------------------------------------------------
426
427 /**
428 * Initialize preferences
429 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000430 * @param array
Andrew Podner4296a652012-12-17 07:51:15 -0500431 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000432 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000433 public function initialize($config = array())
Derek Allard2067d1a2008-11-13 22:59:24 +0000434 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000435 foreach ($config as $key => $val)
436 {
437 if (isset($this->$key))
438 {
439 $method = 'set_'.$key;
440
441 if (method_exists($this, $method))
442 {
443 $this->$method($val);
444 }
445 else
446 {
447 $this->$key = $val;
448 }
449 }
450 }
Eric Barnes6113f542010-12-29 13:36:12 -0500451 $this->clear();
Derek Allard2067d1a2008-11-13 22:59:24 +0000452
Alex Bilbied261b1e2012-06-02 11:12:16 +0100453 $this->_smtp_auth = ! ($this->smtp_user === '' && $this->smtp_pass === '');
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000454
455 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000456 }
Barry Mienydd671972010-10-04 16:33:58 +0200457
Derek Allard2067d1a2008-11-13 22:59:24 +0000458 // --------------------------------------------------------------------
459
460 /**
461 * Initialize the Email Data
462 *
Bo-Yi Wu83320eb2011-09-15 13:28:02 +0800463 * @param bool
Andrew Podner4296a652012-12-17 07:51:15 -0500464 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000465 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000466 public function clear($clear_attachments = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000467 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200468 $this->_subject = '';
469 $this->_body = '';
470 $this->_finalbody = '';
471 $this->_header_str = '';
472 $this->_replyto_flag = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000473 $this->_recipients = array();
Derek Jonesd1606352010-09-01 11:16:07 -0500474 $this->_cc_array = array();
475 $this->_bcc_array = array();
Derek Allard2067d1a2008-11-13 22:59:24 +0000476 $this->_headers = array();
477 $this->_debug_msg = array();
478
Mickey Wubfc1cad2012-05-31 22:28:40 -0700479 $this->set_header('User-Agent', $this->useragent);
480 $this->set_header('Date', $this->_set_date());
Derek Allard2067d1a2008-11-13 22:59:24 +0000481
482 if ($clear_attachments !== FALSE)
483 {
Andrey Andreevb8f9a152012-10-27 01:36:51 +0300484 $this->_attachments = array();
Derek Allard2067d1a2008-11-13 22:59:24 +0000485 }
Eric Barnes6113f542010-12-29 13:36:12 -0500486
Greg Akera769deb2010-11-10 15:47:29 -0600487 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000488 }
Barry Mienydd671972010-10-04 16:33:58 +0200489
Derek Allard2067d1a2008-11-13 22:59:24 +0000490 // --------------------------------------------------------------------
491
492 /**
493 * Set FROM
494 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +0300495 * @param string $from
496 * @param string $name
497 * @param string $return_path = NULL Return-Path
Andrew Podner4296a652012-12-17 07:51:15 -0500498 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000499 */
Andrey Andreev925dd902012-10-19 11:06:31 +0300500 public function from($from, $name = '', $return_path = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000501 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200502 if (preg_match('/\<(.*)\>/', $from, $match))
Derek Allard2067d1a2008-11-13 22:59:24 +0000503 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200504 $from = $match[1];
Derek Allard2067d1a2008-11-13 22:59:24 +0000505 }
506
507 if ($this->validate)
508 {
509 $this->validate_email($this->_str_to_array($from));
Andrey Andreevccd01c72012-10-05 17:12:55 +0300510 if ($return_path)
Melounek58dfc082012-06-29 08:43:47 +0200511 {
512 $this->validate_email($this->_str_to_array($return_path));
513 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000514 }
515
516 // prepare the display name
Alex Bilbied261b1e2012-06-02 11:12:16 +0100517 if ($name !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000518 {
519 // only use Q encoding if there are characters that would require it
520 if ( ! preg_match('/[\200-\377]/', $name))
521 {
522 // add slashes for non-printing characters, slashes, and double quotes, and surround it in double quotes
Derek Jonesc630bcf2008-11-17 21:09:45 +0000523 $name = '"'.addcslashes($name, "\0..\37\177'\"\\").'"';
Derek Allard2067d1a2008-11-13 22:59:24 +0000524 }
525 else
526 {
Andrey Andreev925dd902012-10-19 11:06:31 +0300527 $name = $this->_prep_q_encoding($name);
Derek Allard2067d1a2008-11-13 22:59:24 +0000528 }
529 }
530
Mickey Wubfc1cad2012-05-31 22:28:40 -0700531 $this->set_header('From', $name.' <'.$from.'>');
Melounek58dfc082012-06-29 08:43:47 +0200532
Andrey Andreev925dd902012-10-19 11:06:31 +0300533 isset($return_path) OR $return_path = $from;
Melounek58dfc082012-06-29 08:43:47 +0200534 $this->set_header('Return-Path', '<'.$return_path.'>');
Eric Barnes6113f542010-12-29 13:36:12 -0500535
Greg Akera769deb2010-11-10 15:47:29 -0600536 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000537 }
Barry Mienydd671972010-10-04 16:33:58 +0200538
Derek Allard2067d1a2008-11-13 22:59:24 +0000539 // --------------------------------------------------------------------
540
541 /**
542 * Set Reply-to
543 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000544 * @param string
545 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500546 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000547 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000548 public function reply_to($replyto, $name = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000549 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200550 if (preg_match('/\<(.*)\>/', $replyto, $match))
Derek Allard2067d1a2008-11-13 22:59:24 +0000551 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200552 $replyto = $match[1];
Derek Allard2067d1a2008-11-13 22:59:24 +0000553 }
554
555 if ($this->validate)
556 {
557 $this->validate_email($this->_str_to_array($replyto));
558 }
559
Alex Bilbied261b1e2012-06-02 11:12:16 +0100560 if ($name === '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000561 {
562 $name = $replyto;
563 }
564
Andrey Andreev3dad2e72012-06-14 15:10:56 +0300565 if (strpos($name, '"') !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000566 {
567 $name = '"'.$name.'"';
568 }
569
Mickey Wubfc1cad2012-05-31 22:28:40 -0700570 $this->set_header('Reply-To', $name.' <'.$replyto.'>');
Derek Allard2067d1a2008-11-13 22:59:24 +0000571 $this->_replyto_flag = TRUE;
Greg Akera769deb2010-11-10 15:47:29 -0600572
573 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000574 }
Barry Mienydd671972010-10-04 16:33:58 +0200575
Derek Allard2067d1a2008-11-13 22:59:24 +0000576 // --------------------------------------------------------------------
577
578 /**
579 * Set Recipients
580 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000581 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500582 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000583 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000584 public function to($to)
Derek Allard2067d1a2008-11-13 22:59:24 +0000585 {
586 $to = $this->_str_to_array($to);
587 $to = $this->clean_email($to);
588
589 if ($this->validate)
590 {
591 $this->validate_email($to);
592 }
593
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200594 if ($this->_get_protocol() !== 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +0000595 {
Mickey Wubfc1cad2012-05-31 22:28:40 -0700596 $this->set_header('To', implode(', ', $to));
Derek Allard2067d1a2008-11-13 22:59:24 +0000597 }
598
Andrey Andreev8a7078b2012-10-17 10:52:49 +0300599 $this->_recipients = $to;
Eric Barnes6113f542010-12-29 13:36:12 -0500600
Greg Akera769deb2010-11-10 15:47:29 -0600601 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000602 }
Barry Mienydd671972010-10-04 16:33:58 +0200603
Derek Allard2067d1a2008-11-13 22:59:24 +0000604 // --------------------------------------------------------------------
605
606 /**
607 * Set CC
608 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000609 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500610 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000611 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000612 public function cc($cc)
Derek Allard2067d1a2008-11-13 22:59:24 +0000613 {
Andrey Andreev56454792012-05-17 14:32:19 +0300614 $cc = $this->clean_email($this->_str_to_array($cc));
Derek Allard2067d1a2008-11-13 22:59:24 +0000615
616 if ($this->validate)
617 {
618 $this->validate_email($cc);
619 }
620
Mickey Wubfc1cad2012-05-31 22:28:40 -0700621 $this->set_header('Cc', implode(', ', $cc));
Derek Allard2067d1a2008-11-13 22:59:24 +0000622
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200623 if ($this->_get_protocol() === 'smtp')
Derek Allard2067d1a2008-11-13 22:59:24 +0000624 {
625 $this->_cc_array = $cc;
626 }
Eric Barnes6113f542010-12-29 13:36:12 -0500627
Greg Akera769deb2010-11-10 15:47:29 -0600628 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000629 }
Barry Mienydd671972010-10-04 16:33:58 +0200630
Derek Allard2067d1a2008-11-13 22:59:24 +0000631 // --------------------------------------------------------------------
632
633 /**
634 * Set BCC
635 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000636 * @param string
637 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500638 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000639 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000640 public function bcc($bcc, $limit = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000641 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100642 if ($limit !== '' && is_numeric($limit))
Derek Allard2067d1a2008-11-13 22:59:24 +0000643 {
644 $this->bcc_batch_mode = TRUE;
645 $this->bcc_batch_size = $limit;
646 }
647
Andrey Andreev56454792012-05-17 14:32:19 +0300648 $bcc = $this->clean_email($this->_str_to_array($bcc));
Derek Allard2067d1a2008-11-13 22:59:24 +0000649
650 if ($this->validate)
651 {
652 $this->validate_email($bcc);
653 }
654
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200655 if ($this->_get_protocol() === 'smtp' OR ($this->bcc_batch_mode && count($bcc) > $this->bcc_batch_size))
Derek Allard2067d1a2008-11-13 22:59:24 +0000656 {
657 $this->_bcc_array = $bcc;
658 }
659 else
660 {
Mickey Wubfc1cad2012-05-31 22:28:40 -0700661 $this->set_header('Bcc', implode(', ', $bcc));
Derek Allard2067d1a2008-11-13 22:59:24 +0000662 }
Eric Barnes6113f542010-12-29 13:36:12 -0500663
Greg Akera769deb2010-11-10 15:47:29 -0600664 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000665 }
Barry Mienydd671972010-10-04 16:33:58 +0200666
Derek Allard2067d1a2008-11-13 22:59:24 +0000667 // --------------------------------------------------------------------
668
669 /**
670 * Set Email Subject
671 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000672 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500673 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000674 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000675 public function subject($subject)
Derek Allard2067d1a2008-11-13 22:59:24 +0000676 {
677 $subject = $this->_prep_q_encoding($subject);
Mickey Wubfc1cad2012-05-31 22:28:40 -0700678 $this->set_header('Subject', $subject);
Greg Akera769deb2010-11-10 15:47:29 -0600679 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000680 }
Barry Mienydd671972010-10-04 16:33:58 +0200681
Derek Allard2067d1a2008-11-13 22:59:24 +0000682 // --------------------------------------------------------------------
683
684 /**
685 * Set Body
686 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000687 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500688 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000689 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000690 public function message($body)
Derek Allard2067d1a2008-11-13 22:59:24 +0000691 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200692 $this->_body = rtrim(str_replace("\r", '', $body));
diegorivera33c32802011-10-19 02:56:15 -0200693
Andrey Andreevaf728622011-10-20 10:11:59 +0300694 /* strip slashes only if magic quotes is ON
695 if we do it with magic quotes OFF, it strips real, user-inputted chars.
696
697 NOTE: In PHP 5.4 get_magic_quotes_gpc() will always return 0 and
698 it will probably not exist in future versions at all.
699 */
700 if ( ! is_php('5.4') && get_magic_quotes_gpc())
diegorivera9fca6152011-10-19 11:18:45 -0200701 {
diegorivera33c32802011-10-19 02:56:15 -0200702 $this->_body = stripslashes($this->_body);
diegorivera9fca6152011-10-19 11:18:45 -0200703 }
diegorivera33c32802011-10-19 02:56:15 -0200704
Greg Akera769deb2010-11-10 15:47:29 -0600705 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000706 }
Barry Mienydd671972010-10-04 16:33:58 +0200707
Derek Allard2067d1a2008-11-13 22:59:24 +0000708 // --------------------------------------------------------------------
709
710 /**
711 * Assign file attachments
712 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +0300713 * @param string $filename
714 * @param string $disposition = 'attachment'
715 * @param string $newname = NULL
716 * @param string $mime = ''
Andrew Podner4296a652012-12-17 07:51:15 -0500717 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000718 */
Matteo Matteic3b36f42012-03-26 10:27:17 +0200719 public function attach($filename, $disposition = '', $newname = NULL, $mime = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000720 {
Petr Heralecky300e3f02014-01-10 11:49:11 +0100721 if ($mime === '')
722 {
723 if ( ! file_exists($filename))
724 {
725 $this->_set_error_message('lang:email_attachment_missing', $filename);
726 return FALSE;
727 }
728
729 if ( ! $fp = fopen($filename, FOPEN_READ))
730 {
731 $this->_set_error_message('lang:email_attachment_unreadable', $filename);
732 return FALSE;
733 }
Petr Heraleckyde886152014-01-10 12:52:56 +0100734
Petr Heralecky300e3f02014-01-10 11:49:11 +0100735 $file_content = stream_get_contents($fp);
736 $mime = $this->_mime_types(pathinfo($filename, PATHINFO_EXTENSION));
Petr Heraleckyde886152014-01-10 12:52:56 +0100737 fclose($fp);
Petr Heralecky300e3f02014-01-10 11:49:11 +0100738 }
739 else
740 {
741 $file_content =& $filename; // buffered file
742 }
743
Andrey Andreevb8f9a152012-10-27 01:36:51 +0300744 $this->_attachments[] = array(
745 'name' => array($filename, $newname),
746 'disposition' => empty($disposition) ? 'attachment' : $disposition, // Can also be 'inline' Not sure if it matters
Petr Heralecky300e3f02014-01-10 11:49:11 +0100747 'type' => $mime,
748 'content' => chunk_split(base64_encode($file_content))
Andrey Andreevb8f9a152012-10-27 01:36:51 +0300749 );
Petr Heralecky300e3f02014-01-10 11:49:11 +0100750
Petr Heraleckyde886152014-01-10 12:52:56 +0100751
Petr Heralecky300e3f02014-01-10 11:49:11 +0100752
Greg Akera769deb2010-11-10 15:47:29 -0600753 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000754 }
Petr Heralecky300e3f02014-01-10 11:49:11 +0100755
756 // --------------------------------------------------------------------
757
758 /**
Petr Heraleckyde886152014-01-10 12:52:56 +0100759 * Set and return id of attachment
760 *
761 * useful for attached inline pictures
Petr Heralecky300e3f02014-01-10 11:49:11 +0100762 *
Petr Heraleckyde886152014-01-10 12:52:56 +0100763 * @param string $filename
764 * @return string
Petr Heralecky300e3f02014-01-10 11:49:11 +0100765 */
766 public function attach_cid($filename)
767 {
Petr Heraleckyde886152014-01-10 12:52:56 +0100768 if ($this->multipart !== 'related')
Petr Heralecky300e3f02014-01-10 11:49:11 +0100769 {
770 $this->multipart = 'related'; // Thunderbird need this for inline images
771 }
Petr Heraleckyde886152014-01-10 12:52:56 +0100772
773 for ($i = 0, $c = count($this->_attachments); $i < $c; $i++)
Petr Heralecky300e3f02014-01-10 11:49:11 +0100774 {
Petr Heraleckyde886152014-01-10 12:52:56 +0100775 if ($attach['name'][0] === $filename)
Petr Heralecky300e3f02014-01-10 11:49:11 +0100776 {
Petr Heraleckyde886152014-01-10 12:52:56 +0100777 $this->_attachments[$ind]['cid'] = uniqid(basename($this->_attachments[$i]['name'][0]).'@');
778 return $this->_attachments[$i]['cid'];
Petr Heralecky300e3f02014-01-10 11:49:11 +0100779 }
780 }
Petr Heraleckyde886152014-01-10 12:52:56 +0100781
Petr Heralecky300e3f02014-01-10 11:49:11 +0100782 return FALSE;
783 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000784
785 // --------------------------------------------------------------------
786
787 /**
788 * Add a Header Item
789 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000790 * @param string
791 * @param string
792 * @return void
793 */
Mickey Wubfc1cad2012-05-31 22:28:40 -0700794 public function set_header($header, $value)
Derek Allard2067d1a2008-11-13 22:59:24 +0000795 {
florisluitenf55d5142013-06-07 17:20:06 +0300796 $this->_headers[$header] = str_replace(array("\n", "\r"), '', $value);
Derek Allard2067d1a2008-11-13 22:59:24 +0000797 }
Barry Mienydd671972010-10-04 16:33:58 +0200798
Derek Allard2067d1a2008-11-13 22:59:24 +0000799 // --------------------------------------------------------------------
800
801 /**
802 * Convert a String to an Array
803 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000804 * @param string
805 * @return array
806 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600807 protected function _str_to_array($email)
Derek Allard2067d1a2008-11-13 22:59:24 +0000808 {
809 if ( ! is_array($email))
810 {
Andrey Andreev56454792012-05-17 14:32:19 +0300811 return (strpos($email, ',') !== FALSE)
812 ? preg_split('/[\s,]/', $email, -1, PREG_SPLIT_NO_EMPTY)
813 : (array) trim($email);
Derek Allard2067d1a2008-11-13 22:59:24 +0000814 }
Andrey Andreev56454792012-05-17 14:32:19 +0300815
Derek Allard2067d1a2008-11-13 22:59:24 +0000816 return $email;
817 }
Barry Mienydd671972010-10-04 16:33:58 +0200818
Derek Allard2067d1a2008-11-13 22:59:24 +0000819 // --------------------------------------------------------------------
820
821 /**
822 * Set Multipart Value
823 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000824 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500825 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000826 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000827 public function set_alt_message($str = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000828 {
Dan Horrigand0ddeaf2011-08-21 09:07:27 -0400829 $this->alt_message = (string) $str;
Greg Akera769deb2010-11-10 15:47:29 -0600830 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000831 }
Barry Mienydd671972010-10-04 16:33:58 +0200832
Derek Allard2067d1a2008-11-13 22:59:24 +0000833 // --------------------------------------------------------------------
834
835 /**
836 * Set Mailtype
837 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000838 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500839 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000840 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000841 public function set_mailtype($type = 'text')
Derek Allard2067d1a2008-11-13 22:59:24 +0000842 {
Andrey Andreev56454792012-05-17 14:32:19 +0300843 $this->mailtype = ($type === 'html') ? 'html' : 'text';
Greg Akera769deb2010-11-10 15:47:29 -0600844 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000845 }
Barry Mienydd671972010-10-04 16:33:58 +0200846
Derek Allard2067d1a2008-11-13 22:59:24 +0000847 // --------------------------------------------------------------------
nisheeth-barthwalcf225572013-02-18 01:08:04 +0530848
Derek Allard2067d1a2008-11-13 22:59:24 +0000849 /**
850 * Set Wordwrap
851 *
Dan Horrigan628e6602011-08-21 09:08:31 -0400852 * @param bool
Andrew Podner4296a652012-12-17 07:51:15 -0500853 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000854 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000855 public function set_wordwrap($wordwrap = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000856 {
Dan Horrigan628e6602011-08-21 09:08:31 -0400857 $this->wordwrap = (bool) $wordwrap;
Greg Akera769deb2010-11-10 15:47:29 -0600858 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000859 }
Barry Mienydd671972010-10-04 16:33:58 +0200860
Derek Allard2067d1a2008-11-13 22:59:24 +0000861 // --------------------------------------------------------------------
862
863 /**
864 * Set Protocol
865 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000866 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500867 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000868 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000869 public function set_protocol($protocol = 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +0000870 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200871 $this->protocol = in_array($protocol, $this->_protocols, TRUE) ? strtolower($protocol) : 'mail';
Greg Akera769deb2010-11-10 15:47:29 -0600872 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000873 }
Barry Mienydd671972010-10-04 16:33:58 +0200874
Derek Allard2067d1a2008-11-13 22:59:24 +0000875 // --------------------------------------------------------------------
876
877 /**
878 * Set Priority
879 *
Andrey Andreev081c9462012-03-01 12:58:11 +0200880 * @param int
Andrew Podner4296a652012-12-17 07:51:15 -0500881 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000882 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000883 public function set_priority($n = 3)
Derek Allard2067d1a2008-11-13 22:59:24 +0000884 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200885 $this->priority = preg_match('/^[1-5]$/', $n) ? (int) $n : 3;
Greg Akera769deb2010-11-10 15:47:29 -0600886 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000887 }
Barry Mienydd671972010-10-04 16:33:58 +0200888
Derek Allard2067d1a2008-11-13 22:59:24 +0000889 // --------------------------------------------------------------------
890
891 /**
892 * Set Newline Character
893 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000894 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500895 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000896 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000897 public function set_newline($newline = "\n")
Derek Allard2067d1a2008-11-13 22:59:24 +0000898 {
Andrey Andreevb71e06b2011-12-22 19:22:50 +0200899 $this->newline = in_array($newline, array("\n", "\r\n", "\r")) ? $newline : "\n";
Greg Akera769deb2010-11-10 15:47:29 -0600900 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000901 }
Barry Mienydd671972010-10-04 16:33:58 +0200902
Derek Allard2067d1a2008-11-13 22:59:24 +0000903 // --------------------------------------------------------------------
904
905 /**
906 * Set CRLF
907 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000908 * @param string
Andrew Podner4296a652012-12-17 07:51:15 -0500909 * @return CI_Email
Derek Allard2067d1a2008-11-13 22:59:24 +0000910 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000911 public function set_crlf($crlf = "\n")
Derek Allard2067d1a2008-11-13 22:59:24 +0000912 {
Andrey Andreev76f15c92012-03-01 13:05:07 +0200913 $this->crlf = ($crlf !== "\n" && $crlf !== "\r\n" && $crlf !== "\r") ? "\n" : $crlf;
Greg Akera769deb2010-11-10 15:47:29 -0600914 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000915 }
Barry Mienydd671972010-10-04 16:33:58 +0200916
Derek Allard2067d1a2008-11-13 22:59:24 +0000917 // --------------------------------------------------------------------
918
919 /**
920 * Set Message Boundary
921 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000922 * @return void
923 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600924 protected function _set_boundaries()
Derek Allard2067d1a2008-11-13 22:59:24 +0000925 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200926 $this->_alt_boundary = 'B_ALT_'.uniqid(''); // multipart/alternative
927 $this->_atc_boundary = 'B_ATC_'.uniqid(''); // attachment boundary
Derek Allard2067d1a2008-11-13 22:59:24 +0000928 }
Barry Mienydd671972010-10-04 16:33:58 +0200929
Derek Allard2067d1a2008-11-13 22:59:24 +0000930 // --------------------------------------------------------------------
931
932 /**
933 * Get the Message ID
934 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000935 * @return string
936 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600937 protected function _get_message_id()
Derek Allard2067d1a2008-11-13 22:59:24 +0000938 {
Andrey Andreevb71e06b2011-12-22 19:22:50 +0200939 $from = str_replace(array('>', '<'), '', $this->_headers['Return-Path']);
Andrey Andreev56454792012-05-17 14:32:19 +0300940 return '<'.uniqid('').strstr($from, '@').'>';
Derek Allard2067d1a2008-11-13 22:59:24 +0000941 }
Barry Mienydd671972010-10-04 16:33:58 +0200942
Derek Allard2067d1a2008-11-13 22:59:24 +0000943 // --------------------------------------------------------------------
944
945 /**
946 * Get Mail Protocol
947 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000948 * @param bool
Andrey Andreev59c5b532012-03-01 14:09:51 +0200949 * @return mixed
Derek Allard2067d1a2008-11-13 22:59:24 +0000950 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600951 protected function _get_protocol($return = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000952 {
953 $this->protocol = strtolower($this->protocol);
Andrey Andreev59c5b532012-03-01 14:09:51 +0200954 in_array($this->protocol, $this->_protocols, TRUE) OR $this->protocol = 'mail';
Derek Allard2067d1a2008-11-13 22:59:24 +0000955
Alex Bilbied261b1e2012-06-02 11:12:16 +0100956 if ($return === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000957 {
958 return $this->protocol;
959 }
960 }
Barry Mienydd671972010-10-04 16:33:58 +0200961
Derek Allard2067d1a2008-11-13 22:59:24 +0000962 // --------------------------------------------------------------------
963
964 /**
965 * Get Mail Encoding
966 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000967 * @param bool
968 * @return string
969 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600970 protected function _get_encoding($return = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000971 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200972 in_array($this->_encoding, $this->_bit_depths) OR $this->_encoding = '8bit';
Derek Allard2067d1a2008-11-13 22:59:24 +0000973
974 foreach ($this->_base_charsets as $charset)
975 {
Andrey Andreev3dad2e72012-06-14 15:10:56 +0300976 if (strpos($charset, $this->charset) === 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000977 {
978 $this->_encoding = '7bit';
979 }
980 }
981
Alex Bilbied261b1e2012-06-02 11:12:16 +0100982 if ($return === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000983 {
984 return $this->_encoding;
985 }
986 }
987
988 // --------------------------------------------------------------------
989
990 /**
991 * Get content type (text/html/attachment)
992 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000993 * @return string
994 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600995 protected function _get_content_type()
Derek Allard2067d1a2008-11-13 22:59:24 +0000996 {
Andrey Andreev56454792012-05-17 14:32:19 +0300997 if ($this->mailtype === 'html')
Derek Allard2067d1a2008-11-13 22:59:24 +0000998 {
Andrey Andreevb8f9a152012-10-27 01:36:51 +0300999 return (count($this->_attachments) === 0) ? 'html' : 'html-attach';
Derek Allard2067d1a2008-11-13 22:59:24 +00001000 }
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001001 elseif ($this->mailtype === 'text' && count($this->_attachments) > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001002 {
1003 return 'plain-attach';
1004 }
1005 else
1006 {
1007 return 'plain';
1008 }
1009 }
Barry Mienydd671972010-10-04 16:33:58 +02001010
Derek Allard2067d1a2008-11-13 22:59:24 +00001011 // --------------------------------------------------------------------
1012
1013 /**
1014 * Set RFC 822 Date
1015 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001016 * @return string
1017 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001018 protected function _set_date()
Derek Allard2067d1a2008-11-13 22:59:24 +00001019 {
Andrey Andreev59c5b532012-03-01 14:09:51 +02001020 $timezone = date('Z');
Andrey Andreev3dad2e72012-06-14 15:10:56 +03001021 $operator = ($timezone[0] === '-') ? '-' : '+';
Derek Allard2067d1a2008-11-13 22:59:24 +00001022 $timezone = abs($timezone);
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001023 $timezone = floor($timezone/3600) * 100 + ($timezone % 3600) / 60;
Derek Allard2067d1a2008-11-13 22:59:24 +00001024
Andrey Andreev59c5b532012-03-01 14:09:51 +02001025 return sprintf('%s %s%04d', date('D, j M Y H:i:s'), $operator, $timezone);
Derek Allard2067d1a2008-11-13 22:59:24 +00001026 }
Barry Mienydd671972010-10-04 16:33:58 +02001027
Derek Allard2067d1a2008-11-13 22:59:24 +00001028 // --------------------------------------------------------------------
1029
1030 /**
1031 * Mime message
1032 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001033 * @return string
1034 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001035 protected function _get_mime_message()
Derek Allard2067d1a2008-11-13 22:59:24 +00001036 {
Andrey Andreev59c5b532012-03-01 14:09:51 +02001037 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 +00001038 }
Barry Mienydd671972010-10-04 16:33:58 +02001039
Derek Allard2067d1a2008-11-13 22:59:24 +00001040 // --------------------------------------------------------------------
1041
1042 /**
1043 * Validate Email Address
1044 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001045 * @param string
1046 * @return bool
1047 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +00001048 public function validate_email($email)
Derek Allard2067d1a2008-11-13 22:59:24 +00001049 {
1050 if ( ! is_array($email))
1051 {
patworkb0707982011-04-08 15:10:05 +02001052 $this->_set_error_message('lang:email_must_be_array');
Derek Allard2067d1a2008-11-13 22:59:24 +00001053 return FALSE;
1054 }
1055
1056 foreach ($email as $val)
1057 {
1058 if ( ! $this->valid_email($val))
1059 {
patworkb0707982011-04-08 15:10:05 +02001060 $this->_set_error_message('lang:email_invalid_address', $val);
Derek Allard2067d1a2008-11-13 22:59:24 +00001061 return FALSE;
1062 }
1063 }
1064
1065 return TRUE;
1066 }
Barry Mienydd671972010-10-04 16:33:58 +02001067
Derek Allard2067d1a2008-11-13 22:59:24 +00001068 // --------------------------------------------------------------------
1069
1070 /**
1071 * Email Validation
1072 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001073 * @param string
1074 * @return bool
1075 */
Timothy Warrend37f0e92012-06-27 08:21:59 -04001076 public function valid_email($email)
Derek Allard2067d1a2008-11-13 22:59:24 +00001077 {
Andrey Andreev580388b2012-06-27 15:43:46 +03001078 return (bool) filter_var($email, FILTER_VALIDATE_EMAIL);
Derek Allard2067d1a2008-11-13 22:59:24 +00001079 }
Barry Mienydd671972010-10-04 16:33:58 +02001080
Derek Allard2067d1a2008-11-13 22:59:24 +00001081 // --------------------------------------------------------------------
1082
1083 /**
1084 * Clean Extended Email Address: Joe Smith <joe@smith.com>
1085 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001086 * @param string
1087 * @return string
1088 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +00001089 public function clean_email($email)
Derek Allard2067d1a2008-11-13 22:59:24 +00001090 {
1091 if ( ! is_array($email))
1092 {
Andrey Andreev56454792012-05-17 14:32:19 +03001093 return preg_match('/\<(.*)\>/', $email, $match) ? $match[1] : $email;
Derek Allard2067d1a2008-11-13 22:59:24 +00001094 }
1095
1096 $clean_email = array();
1097
1098 foreach ($email as $addy)
1099 {
Andrey Andreev59c5b532012-03-01 14:09:51 +02001100 $clean_email[] = preg_match('/\<(.*)\>/', $addy, $match) ? $match[1] : $addy;
Derek Allard2067d1a2008-11-13 22:59:24 +00001101 }
1102
1103 return $clean_email;
1104 }
Barry Mienydd671972010-10-04 16:33:58 +02001105
Derek Allard2067d1a2008-11-13 22:59:24 +00001106 // --------------------------------------------------------------------
1107
1108 /**
1109 * Build alternative plain text message
1110 *
Andrey Andreev8df1ae22012-10-19 11:20:54 +03001111 * Provides the raw message for use in plain-text headers of
1112 * HTML-formatted emails.
Derek Allard2067d1a2008-11-13 22:59:24 +00001113 * If the user hasn't specified his own alternative message
1114 * it creates one by stripping the HTML
1115 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001116 * @return string
1117 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001118 protected function _get_alt_message()
Derek Allard2067d1a2008-11-13 22:59:24 +00001119 {
Andrey Andreev8df1ae22012-10-19 11:20:54 +03001120 if ( ! empty($this->alt_message))
Derek Allard2067d1a2008-11-13 22:59:24 +00001121 {
Andrey Andreev8df1ae22012-10-19 11:20:54 +03001122 return ($this->wordwrap)
1123 ? $this->word_wrap($this->alt_message, 76)
1124 : $this->alt_message;
Derek Allard2067d1a2008-11-13 22:59:24 +00001125 }
1126
Andrey Andreev56454792012-05-17 14:32:19 +03001127 $body = preg_match('/\<body.*?\>(.*)\<\/body\>/si', $this->_body, $match) ? $match[1] : $this->_body;
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001128 $body = str_replace("\t", '', preg_replace('#<!--(.*)--\>#', '', trim(strip_tags($body))));
Derek Allard2067d1a2008-11-13 22:59:24 +00001129
1130 for ($i = 20; $i >= 3; $i--)
1131 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001132 $body = str_replace(str_repeat("\n", $i), "\n\n", $body);
Derek Allard2067d1a2008-11-13 22:59:24 +00001133 }
1134
GDmac9bea4be2012-10-30 06:14:19 +01001135 // Reduce multiple spaces
Andrey Andreev8a203f62012-11-02 20:40:43 +02001136 $body = preg_replace('| +|', ' ', $body);
GDmac9bea4be2012-10-30 06:14:19 +01001137
Andrey Andreev8df1ae22012-10-19 11:20:54 +03001138 return ($this->wordwrap)
1139 ? $this->word_wrap($body, 76)
1140 : $body;
Derek Allard2067d1a2008-11-13 22:59:24 +00001141 }
Barry Mienydd671972010-10-04 16:33:58 +02001142
Derek Allard2067d1a2008-11-13 22:59:24 +00001143 // --------------------------------------------------------------------
1144
1145 /**
1146 * Word Wrap
1147 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001148 * @param string
Andrey Andreev8df1ae22012-10-19 11:20:54 +03001149 * @param int line-length limit
Derek Allard2067d1a2008-11-13 22:59:24 +00001150 * @return string
1151 */
Andrey Andreev00ea2a92012-10-18 14:59:29 +03001152 public function word_wrap($str, $charlim = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +00001153 {
Andrey Andreev00ea2a92012-10-18 14:59:29 +03001154 // Set the character limit, if not already present
1155 if (empty($charlim))
Derek Allard2067d1a2008-11-13 22:59:24 +00001156 {
Andrey Andreev00ea2a92012-10-18 14:59:29 +03001157 $charlim = empty($this->wrapchars) ? 76 : $this->wrapchars;
Derek Allard2067d1a2008-11-13 22:59:24 +00001158 }
1159
Derek Allard2067d1a2008-11-13 22:59:24 +00001160 // Standardize newlines
1161 if (strpos($str, "\r") !== FALSE)
1162 {
Andrey Andreevb71e06b2011-12-22 19:22:50 +02001163 $str = str_replace(array("\r\n", "\r"), "\n", $str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001164 }
1165
GDmac9bea4be2012-10-30 06:14:19 +01001166 // Reduce multiple spaces at end of line
1167 $str = preg_replace('| +\n|', "\n", $str);
1168
Derek Allard2067d1a2008-11-13 22:59:24 +00001169 // If the current word is surrounded by {unwrap} tags we'll
1170 // strip the entire chunk and replace it with a marker.
1171 $unwrap = array();
Andrey Andreev56454792012-05-17 14:32:19 +03001172 if (preg_match_all('|(\{unwrap\}.+?\{/unwrap\})|s', $str, $matches))
Derek Allard2067d1a2008-11-13 22:59:24 +00001173 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001174 for ($i = 0, $c = count($matches[0]); $i < $c; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001175 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001176 $unwrap[] = $matches[1][$i];
Andrey Andreev56454792012-05-17 14:32:19 +03001177 $str = str_replace($matches[1][$i], '{{unwrapped'.$i.'}}', $str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001178 }
1179 }
1180
Phil Sturgeona0f980e2011-01-13 10:59:12 +00001181 // Use PHP's native public function to do the initial wordwrap.
Derek Allard2067d1a2008-11-13 22:59:24 +00001182 // We set the cut flag to FALSE so that any individual words that are
Andrey Andreev56454792012-05-17 14:32:19 +03001183 // too long get left alone. In the next step we'll deal with them.
Derek Allard2067d1a2008-11-13 22:59:24 +00001184 $str = wordwrap($str, $charlim, "\n", FALSE);
1185
1186 // Split the string into individual lines of text and cycle through them
Andrey Andreev56454792012-05-17 14:32:19 +03001187 $output = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001188 foreach (explode("\n", $str) as $line)
1189 {
1190 // Is the line within the allowed character count?
1191 // If so we'll join it to the output and continue
1192 if (strlen($line) <= $charlim)
1193 {
1194 $output .= $line.$this->newline;
1195 continue;
1196 }
1197
1198 $temp = '';
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001199 do
Derek Allard2067d1a2008-11-13 22:59:24 +00001200 {
1201 // If the over-length word is a URL we won't wrap it
Andrey Andreev56454792012-05-17 14:32:19 +03001202 if (preg_match('!\[url.+\]|://|wwww.!', $line))
Derek Allard2067d1a2008-11-13 22:59:24 +00001203 {
1204 break;
1205 }
1206
1207 // Trim the word down
1208 $temp .= substr($line, 0, $charlim-1);
1209 $line = substr($line, $charlim-1);
1210 }
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001211 while (strlen($line) > $charlim);
Derek Allard2067d1a2008-11-13 22:59:24 +00001212
1213 // If $temp contains data it means we had to split up an over-length
1214 // word into smaller chunks so we'll add it back to our current line
Alex Bilbied261b1e2012-06-02 11:12:16 +01001215 if ($temp !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001216 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001217 $output .= $temp.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001218 }
1219
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001220 $output .= $line.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001221 }
1222
1223 // Put our markers back
1224 if (count($unwrap) > 0)
1225 {
1226 foreach ($unwrap as $key => $val)
1227 {
Andrey Andreev56454792012-05-17 14:32:19 +03001228 $output = str_replace('{{unwrapped'.$key.'}}', $val, $output);
Derek Allard2067d1a2008-11-13 22:59:24 +00001229 }
1230 }
1231
1232 return $output;
1233 }
Barry Mienydd671972010-10-04 16:33:58 +02001234
Derek Allard2067d1a2008-11-13 22:59:24 +00001235 // --------------------------------------------------------------------
1236
1237 /**
1238 * Build final headers
1239 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001240 * @return string
1241 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001242 protected function _build_headers()
Derek Allard2067d1a2008-11-13 22:59:24 +00001243 {
Mickey Wubfc1cad2012-05-31 22:28:40 -07001244 $this->set_header('X-Sender', $this->clean_email($this->_headers['From']));
1245 $this->set_header('X-Mailer', $this->useragent);
1246 $this->set_header('X-Priority', $this->_priorities[$this->priority - 1]);
1247 $this->set_header('Message-ID', $this->_get_message_id());
1248 $this->set_header('Mime-Version', '1.0');
Derek Allard2067d1a2008-11-13 22:59:24 +00001249 }
Barry Mienydd671972010-10-04 16:33:58 +02001250
Derek Allard2067d1a2008-11-13 22:59:24 +00001251 // --------------------------------------------------------------------
1252
1253 /**
1254 * Write Headers as a string
1255 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001256 * @return void
1257 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001258 protected function _write_headers()
Derek Allard2067d1a2008-11-13 22:59:24 +00001259 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001260 if ($this->protocol === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +00001261 {
nisheeth-barthwal6bb98902013-02-19 18:11:14 +05301262 if (isset($this->_headers['Subject']))
1263 {
1264 $this->_subject = $this->_headers['Subject'];
1265 unset($this->_headers['Subject']);
1266 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001267 }
1268
1269 reset($this->_headers);
Andrey Andreev56454792012-05-17 14:32:19 +03001270 $this->_header_str = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001271
Pascal Kriete14287f32011-02-14 13:39:34 -05001272 foreach ($this->_headers as $key => $val)
Derek Allard2067d1a2008-11-13 22:59:24 +00001273 {
1274 $val = trim($val);
1275
Alex Bilbied261b1e2012-06-02 11:12:16 +01001276 if ($val !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001277 {
Andrey Andreev56454792012-05-17 14:32:19 +03001278 $this->_header_str .= $key.': '.$val.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001279 }
1280 }
1281
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001282 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +00001283 {
Derek Jones1d890882009-02-10 20:32:14 +00001284 $this->_header_str = rtrim($this->_header_str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001285 }
1286 }
Barry Mienydd671972010-10-04 16:33:58 +02001287
Derek Allard2067d1a2008-11-13 22:59:24 +00001288 // --------------------------------------------------------------------
1289
1290 /**
1291 * Build Final Body and attachments
1292 *
buhayc6da1ef2013-04-18 09:06:49 -07001293 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +00001294 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001295 protected function _build_message()
Derek Allard2067d1a2008-11-13 22:59:24 +00001296 {
Andrey Andreev76f15c92012-03-01 13:05:07 +02001297 if ($this->wordwrap === TRUE && $this->mailtype !== 'html')
Derek Allard2067d1a2008-11-13 22:59:24 +00001298 {
1299 $this->_body = $this->word_wrap($this->_body);
1300 }
1301
1302 $this->_set_boundaries();
1303 $this->_write_headers();
1304
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001305 $hdr = ($this->_get_protocol() === 'mail') ? $this->newline : '';
Brandon Jones485d7412010-11-09 16:38:17 -05001306 $body = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001307
1308 switch ($this->_get_content_type())
1309 {
1310 case 'plain' :
1311
Andrey Andreev56454792012-05-17 14:32:19 +03001312 $hdr .= 'Content-Type: text/plain; charset='.$this->charset.$this->newline
1313 .'Content-Transfer-Encoding: '.$this->_get_encoding();
Derek Allard2067d1a2008-11-13 22:59:24 +00001314
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001315 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +00001316 {
1317 $this->_header_str .= $hdr;
1318 $this->_finalbody = $this->_body;
Derek Allard2067d1a2008-11-13 22:59:24 +00001319 }
Brandon Jones485d7412010-11-09 16:38:17 -05001320 else
1321 {
Andrey Andreev2b956af2013-08-07 14:32:56 +03001322 $this->_finalbody = $hdr.$this->newline.$this->newline.$this->_body;
Brandon Jones485d7412010-11-09 16:38:17 -05001323 }
Eric Barnes6113f542010-12-29 13:36:12 -05001324
Derek Allard2067d1a2008-11-13 22:59:24 +00001325 return;
1326
Derek Allard2067d1a2008-11-13 22:59:24 +00001327 case 'html' :
1328
1329 if ($this->send_multipart === FALSE)
1330 {
Andrey Andreev56454792012-05-17 14:32:19 +03001331 $hdr .= 'Content-Type: text/html; charset='.$this->charset.$this->newline
Andrey Andreev2b956af2013-08-07 14:32:56 +03001332 .'Content-Transfer-Encoding: quoted-printable';
Derek Allard2067d1a2008-11-13 22:59:24 +00001333 }
1334 else
1335 {
Andrey Andreev2b956af2013-08-07 14:32:56 +03001336 $hdr .= 'Content-Type: multipart/alternative; boundary="'.$this->_alt_boundary.'"';
Derek Allard2067d1a2008-11-13 22:59:24 +00001337
Andrey Andreev56454792012-05-17 14:32:19 +03001338 $body .= $this->_get_mime_message().$this->newline.$this->newline
1339 .'--'.$this->_alt_boundary.$this->newline
Derek Allard2067d1a2008-11-13 22:59:24 +00001340
Andrey Andreev56454792012-05-17 14:32:19 +03001341 .'Content-Type: text/plain; charset='.$this->charset.$this->newline
1342 .'Content-Transfer-Encoding: '.$this->_get_encoding().$this->newline.$this->newline
1343 .$this->_get_alt_message().$this->newline.$this->newline.'--'.$this->_alt_boundary.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001344
Andrey Andreev56454792012-05-17 14:32:19 +03001345 .'Content-Type: text/html; charset='.$this->charset.$this->newline
1346 .'Content-Transfer-Encoding: quoted-printable'.$this->newline.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001347 }
Eric Barnes6113f542010-12-29 13:36:12 -05001348
Andrey Andreev56454792012-05-17 14:32:19 +03001349 $this->_finalbody = $body.$this->_prep_quoted_printable($this->_body).$this->newline.$this->newline;
Eric Barnes6113f542010-12-29 13:36:12 -05001350
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001351 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +00001352 {
1353 $this->_header_str .= $hdr;
Brandon Jones485d7412010-11-09 16:38:17 -05001354 }
1355 else
1356 {
Andrey Andreev2b956af2013-08-07 14:32:56 +03001357 $this->_finalbody = $hdr.$this->newline.$this->newline.$this->_finalbody;
Derek Allard2067d1a2008-11-13 22:59:24 +00001358 }
1359
Derek Allard2067d1a2008-11-13 22:59:24 +00001360 if ($this->send_multipart !== FALSE)
1361 {
Andrey Andreev56454792012-05-17 14:32:19 +03001362 $this->_finalbody .= '--'.$this->_alt_boundary.'--';
Derek Allard2067d1a2008-11-13 22:59:24 +00001363 }
1364
Derek Allard2067d1a2008-11-13 22:59:24 +00001365 return;
1366
Derek Allard2067d1a2008-11-13 22:59:24 +00001367 case 'plain-attach' :
1368
Andrey Andreev2b956af2013-08-07 14:32:56 +03001369 $hdr .= 'Content-Type: multipart/'.$this->multipart.'; boundary="'.$this->_atc_boundary.'"';
Derek Allard2067d1a2008-11-13 22:59:24 +00001370
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;
Eric Barnes6113f542010-12-29 13:36:12 -05001374 }
1375
Andrey Andreev2b956af2013-08-07 14:32:56 +03001376 $body .= $this->_get_mime_message().$this->newline
1377 .$this->newline
Andrey Andreev56454792012-05-17 14:32:19 +03001378 .'--'.$this->_atc_boundary.$this->newline
Andrey Andreev56454792012-05-17 14:32:19 +03001379 .'Content-Type: text/plain; charset='.$this->charset.$this->newline
Andrey Andreev2b956af2013-08-07 14:32:56 +03001380 .'Content-Transfer-Encoding: '.$this->_get_encoding().$this->newline
1381 .$this->newline
Andrey Andreev56454792012-05-17 14:32:19 +03001382 .$this->_body.$this->newline.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001383
1384 break;
1385 case 'html-attach' :
1386
Andrey Andreev2b956af2013-08-07 14:32:56 +03001387 $hdr .= 'Content-Type: multipart/'.$this->multipart.'; boundary="'.$this->_atc_boundary.'"';
Eric Barnes6113f542010-12-29 13:36:12 -05001388
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001389 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +00001390 {
1391 $this->_header_str .= $hdr;
Derek Allard2067d1a2008-11-13 22:59:24 +00001392 }
1393
Andrey Andreev56454792012-05-17 14:32:19 +03001394 $body .= $this->_get_mime_message().$this->newline.$this->newline
1395 .'--'.$this->_atc_boundary.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001396
Andrey Andreev56454792012-05-17 14:32:19 +03001397 .'Content-Type: multipart/alternative; boundary="'.$this->_alt_boundary.'"'.$this->newline.$this->newline
1398 .'--'.$this->_alt_boundary.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001399
Andrey Andreev56454792012-05-17 14:32:19 +03001400 .'Content-Type: text/plain; charset='.$this->charset.$this->newline
1401 .'Content-Transfer-Encoding: '.$this->_get_encoding().$this->newline.$this->newline
1402 .$this->_get_alt_message().$this->newline.$this->newline.'--'.$this->_alt_boundary.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001403
Andrey Andreev56454792012-05-17 14:32:19 +03001404 .'Content-Type: text/html; charset='.$this->charset.$this->newline
1405 .'Content-Transfer-Encoding: quoted-printable'.$this->newline.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001406
Andrey Andreev56454792012-05-17 14:32:19 +03001407 .$this->_prep_quoted_printable($this->_body).$this->newline.$this->newline
1408 .'--'.$this->_alt_boundary.'--'.$this->newline.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001409
1410 break;
1411 }
1412
1413 $attachment = array();
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001414 for ($i = 0, $c = count($this->_attachments), $z = 0; $i < $c; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001415 {
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001416 $filename = $this->_attachments[$i]['name'][0];
vlakoff912f1bc2013-01-15 03:34:12 +01001417 $basename = ($this->_attachments[$i]['name'][1] === NULL)
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001418 ? basename($filename) : $this->_attachments[$i]['name'][1];
Andrey Andreev56454792012-05-17 14:32:19 +03001419
1420 $attachment[$z++] = '--'.$this->_atc_boundary.$this->newline
Petr Heralecky300e3f02014-01-10 11:49:11 +01001421 .'Content-type: '.$this->_attachments[$i]['type'].'; '
Andrey Andreev56454792012-05-17 14:32:19 +03001422 .'name="'.$basename.'"'.$this->newline
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001423 .'Content-Disposition: '.$this->_attachments[$i]['disposition'].';'.$this->newline
Petr Heralecky300e3f02014-01-10 11:49:11 +01001424 .'Content-Transfer-Encoding: base64'.$this->newline
Petr Heraleckyde886152014-01-10 12:52:56 +01001425 .(empty($this->_attachments[$i]['cid']) ? '' : 'Content-ID: <'.$this->_attachments[$i]['cid'].'>'.$this->newline);
Derek Allard2067d1a2008-11-13 22:59:24 +00001426
Petr Heralecky300e3f02014-01-10 11:49:11 +01001427 $attachment[$z++] = $this->_attachments[$i]['content'];
Derek Allard2067d1a2008-11-13 22:59:24 +00001428 }
1429
Andrey Andreev56454792012-05-17 14:32:19 +03001430 $body .= implode($this->newline, $attachment).$this->newline.'--'.$this->_atc_boundary.'--';
Andrey Andreev2b956af2013-08-07 14:32:56 +03001431 $this->_finalbody = ($this->_get_protocol() === 'mail')
1432 ? $body
1433 : $hdr.$this->newline.$this->newline.$body;
buhay466e8082013-04-17 14:25:34 -07001434 return TRUE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001435 }
Barry Mienydd671972010-10-04 16:33:58 +02001436
Derek Allard2067d1a2008-11-13 22:59:24 +00001437 // --------------------------------------------------------------------
1438
1439 /**
1440 * Prep Quoted Printable
1441 *
1442 * Prepares string for Quoted-Printable Content-Transfer-Encoding
1443 * Refer to RFC 2045 http://www.ietf.org/rfc/rfc2045.txt
1444 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001445 * @param string
Derek Allard2067d1a2008-11-13 22:59:24 +00001446 * @return string
1447 */
Andrey Andreev683b34d2012-10-09 15:00:00 +03001448 protected function _prep_quoted_printable($str)
Derek Allard2067d1a2008-11-13 22:59:24 +00001449 {
Andrey Andreev00ea2a92012-10-18 14:59:29 +03001450 // We are intentionally wrapping so mail servers will encode characters
1451 // properly and MUAs will behave, so {unwrap} must go!
1452 $str = str_replace(array('{unwrap}', '{/unwrap}'), '', $str);
1453
Andrey Andreev683b34d2012-10-09 15:00:00 +03001454 // RFC 2045 specifies CRLF as "\r\n".
1455 // However, many developers choose to override that and violate
1456 // the RFC rules due to (apparently) a bug in MS Exchange,
1457 // which only works with "\n".
Andrey Andreev26f0cf92012-10-11 13:52:39 +03001458 if ($this->crlf === "\r\n")
Andrey Andreev683b34d2012-10-09 15:00:00 +03001459 {
Andrey Andreev26f0cf92012-10-11 13:52:39 +03001460 if (is_php('5.3'))
1461 {
1462 return quoted_printable_encode($str);
1463 }
1464 elseif (function_exists('imap_8bit'))
1465 {
1466 return imap_8bit($str);
1467 }
Andrey Andreev683b34d2012-10-09 15:00:00 +03001468 }
1469
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001470 // Reduce multiple spaces & remove nulls
Andrey Andreev56454792012-05-17 14:32:19 +03001471 $str = preg_replace(array('| +|', '/\x00+/'), array(' ', ''), $str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001472
1473 // Standardize newlines
1474 if (strpos($str, "\r") !== FALSE)
1475 {
1476 $str = str_replace(array("\r\n", "\r"), "\n", $str);
1477 }
1478
Derek Allard2067d1a2008-11-13 22:59:24 +00001479 $escape = '=';
1480 $output = '';
1481
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001482 foreach (explode("\n", $str) as $line)
Derek Allard2067d1a2008-11-13 22:59:24 +00001483 {
1484 $length = strlen($line);
1485 $temp = '';
1486
1487 // Loop through each character in the line to add soft-wrap
1488 // characters at the end of a line " =\r\n" and add the newly
1489 // processed line(s) to the output (see comment on $crlf class property)
1490 for ($i = 0; $i < $length; $i++)
1491 {
1492 // Grab the next character
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001493 $char = $line[$i];
Derek Allard2067d1a2008-11-13 22:59:24 +00001494 $ascii = ord($char);
1495
1496 // Convert spaces and tabs but only if it's the end of the line
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001497 if ($i === ($length - 1) && ($ascii === 32 OR $ascii === 9))
Derek Allard2067d1a2008-11-13 22:59:24 +00001498 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001499 $char = $escape.sprintf('%02s', dechex($ascii));
Derek Allard2067d1a2008-11-13 22:59:24 +00001500 }
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001501 elseif ($ascii === 61) // encode = signs
Derek Allard2067d1a2008-11-13 22:59:24 +00001502 {
Derek Jones37f4b9c2011-07-01 17:56:50 -05001503 $char = $escape.strtoupper(sprintf('%02s', dechex($ascii))); // =3D
Derek Allard2067d1a2008-11-13 22:59:24 +00001504 }
1505
1506 // If we're at the character limit, add the line to the output,
1507 // reset our temp variable, and keep on chuggin'
Andrey Andreeve8bc5f42012-10-10 11:13:59 +03001508 if ((strlen($temp) + strlen($char)) >= 76)
Derek Allard2067d1a2008-11-13 22:59:24 +00001509 {
1510 $output .= $temp.$escape.$this->crlf;
1511 $temp = '';
1512 }
1513
1514 // Add the character to our temporary line
1515 $temp .= $char;
1516 }
1517
1518 // Add our completed line to the output
1519 $output .= $temp.$this->crlf;
1520 }
1521
1522 // get rid of extra CRLF tacked onto the end
Andrey Andreev59c5b532012-03-01 14:09:51 +02001523 return substr($output, 0, strlen($this->crlf) * -1);
Derek Allard2067d1a2008-11-13 22:59:24 +00001524 }
1525
1526 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001527
Derek Allard2067d1a2008-11-13 22:59:24 +00001528 /**
1529 * Prep Q Encoding
1530 *
Andrey Andreev925dd902012-10-19 11:06:31 +03001531 * Performs "Q Encoding" on a string for use in email headers.
1532 * It's related but not identical to quoted-printable, so it has its
1533 * own method.
Derek Allard2067d1a2008-11-13 22:59:24 +00001534 *
Andrey Andreev081c9462012-03-01 12:58:11 +02001535 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +02001536 * @return string
Derek Allard2067d1a2008-11-13 22:59:24 +00001537 */
Andrey Andreev925dd902012-10-19 11:06:31 +03001538 protected function _prep_q_encoding($str)
Derek Allard2067d1a2008-11-13 22:59:24 +00001539 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001540 $str = str_replace(array("\r", "\n"), '', $str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001541
Andrey Andreev925dd902012-10-19 11:06:31 +03001542 if ($this->charset === 'UTF-8')
Derek Allard2067d1a2008-11-13 22:59:24 +00001543 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001544 if (MB_ENABLED === TRUE)
1545 {
1546 return mb_encode_mimeheader($str, $this->charset, 'Q', $this->crlf);
1547 }
1548 elseif (extension_loaded('iconv'))
1549 {
1550 $output = @iconv_mime_encode('', $str,
1551 array(
1552 'scheme' => 'Q',
1553 'line-length' => 76,
1554 'input-charset' => $this->charset,
1555 'output-charset' => $this->charset,
1556 'line-break-chars' => $this->crlf
1557 )
1558 );
1559
1560 // There are reports that iconv_mime_encode() might fail and return FALSE
1561 if ($output !== FALSE)
1562 {
1563 // iconv_mime_encode() will always put a header field name.
1564 // We've passed it an empty one, but it still prepends our
1565 // encoded string with ': ', so we need to strip it.
1566 return substr($output, 2);
1567 }
1568
1569 $chars = iconv_strlen($str, 'UTF-8');
1570 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001571 }
1572
Andrey Andreev925dd902012-10-19 11:06:31 +03001573 // We might already have this set for UTF-8
1574 isset($chars) OR $chars = strlen($str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001575
Andrey Andreev925dd902012-10-19 11:06:31 +03001576 $output = '=?'.$this->charset.'?Q?';
1577 for ($i = 0, $length = strlen($output), $iconv = extension_loaded('iconv'); $i < $chars; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001578 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001579 $chr = ($this->charset === 'UTF-8' && $iconv === TRUE)
1580 ? '='.implode('=', str_split(strtoupper(bin2hex(iconv_substr($str, $i, 1, $this->charset))), 2))
1581 : '='.strtoupper(bin2hex($str[$i]));
Derek Allard2067d1a2008-11-13 22:59:24 +00001582
Andrey Andreev925dd902012-10-19 11:06:31 +03001583 // RFC 2045 sets a limit of 76 characters per line.
1584 // We'll append ?= to the end of each line though.
1585 if ($length + ($l = strlen($chr)) > 74)
Derek Allard2067d1a2008-11-13 22:59:24 +00001586 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001587 $output .= '?='.$this->crlf // EOL
1588 .' =?'.$this->charset.'?Q?'.$chr; // New line
1589 $length = 6 + strlen($this->charset) + $l; // Reset the length for the new line
Derek Allard2067d1a2008-11-13 22:59:24 +00001590 }
Andrey Andreev925dd902012-10-19 11:06:31 +03001591 else
Derek Allard2067d1a2008-11-13 22:59:24 +00001592 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001593 $output .= $chr;
1594 $length += $l;
Derek Allard2067d1a2008-11-13 22:59:24 +00001595 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001596 }
1597
Andrey Andreev925dd902012-10-19 11:06:31 +03001598 // End the header
1599 return $output.'?=';
Derek Allard2067d1a2008-11-13 22:59:24 +00001600 }
1601
1602 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001603
Derek Allard2067d1a2008-11-13 22:59:24 +00001604 /**
1605 * Send Email
1606 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001607 * @param bool $auto_clear = TRUE
Derek Allard2067d1a2008-11-13 22:59:24 +00001608 * @return bool
1609 */
Alex Bilbied7bc8d02012-07-30 09:46:20 +01001610 public function send($auto_clear = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001611 {
Alex Bilbied261b1e2012-06-02 11:12:16 +01001612 if ($this->_replyto_flag === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001613 {
1614 $this->reply_to($this->_headers['From']);
1615 }
1616
Andrey Andreev76f15c92012-03-01 13:05:07 +02001617 if ( ! isset($this->_recipients) && ! isset($this->_headers['To'])
1618 && ! isset($this->_bcc_array) && ! isset($this->_headers['Bcc'])
1619 && ! isset($this->_headers['Cc']))
Derek Allard2067d1a2008-11-13 22:59:24 +00001620 {
patworkb0707982011-04-08 15:10:05 +02001621 $this->_set_error_message('lang:email_no_recipients');
Derek Allard2067d1a2008-11-13 22:59:24 +00001622 return FALSE;
1623 }
1624
1625 $this->_build_headers();
1626
Andrey Andreev76f15c92012-03-01 13:05:07 +02001627 if ($this->bcc_batch_mode && count($this->_bcc_array) > $this->bcc_batch_size)
Derek Allard2067d1a2008-11-13 22:59:24 +00001628 {
Alex Bilbieb901e732012-07-30 09:44:57 +01001629 $result = $this->batch_bcc_send();
Alex Bilbied7bc8d02012-07-30 09:46:20 +01001630
Alex Bilbiea87aab32012-07-30 09:50:37 +01001631 if ($result && $auto_clear)
Alex Bilbied7bc8d02012-07-30 09:46:20 +01001632 {
1633 $this->clear();
1634 }
1635
Alex Bilbieb901e732012-07-30 09:44:57 +01001636 return $result;
Derek Allard2067d1a2008-11-13 22:59:24 +00001637 }
1638
buhay466e8082013-04-17 14:25:34 -07001639 if ($this->_build_message() === FALSE)
1640 {
1641 return FALSE;
1642 }
buhayc6da1ef2013-04-18 09:06:49 -07001643
Alex Bilbieb901e732012-07-30 09:44:57 +01001644 $result = $this->_spool_email();
Andrey Andreevbdb99992012-07-30 17:38:05 +03001645
Alex Bilbiea87aab32012-07-30 09:50:37 +01001646 if ($result && $auto_clear)
Alex Bilbied7bc8d02012-07-30 09:46:20 +01001647 {
1648 $this->clear();
1649 }
Alex Bilbiea87aab32012-07-30 09:50:37 +01001650
Alex Bilbieb901e732012-07-30 09:44:57 +01001651 return $result;
Derek Allard2067d1a2008-11-13 22:59:24 +00001652 }
Barry Mienydd671972010-10-04 16:33:58 +02001653
Derek Allard2067d1a2008-11-13 22:59:24 +00001654 // --------------------------------------------------------------------
1655
1656 /**
Andrey Andreev081c9462012-03-01 12:58:11 +02001657 * Batch Bcc Send. Sends groups of BCCs in batches
Derek Allard2067d1a2008-11-13 22:59:24 +00001658 *
Andrey Andreev081c9462012-03-01 12:58:11 +02001659 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +00001660 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +00001661 public function batch_bcc_send()
Derek Allard2067d1a2008-11-13 22:59:24 +00001662 {
Andrey Andreev59c5b532012-03-01 14:09:51 +02001663 $float = $this->bcc_batch_size - 1;
1664 $set = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001665 $chunk = array();
1666
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001667 for ($i = 0, $c = count($this->_bcc_array); $i < $c; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001668 {
1669 if (isset($this->_bcc_array[$i]))
1670 {
Andrey Andreev59c5b532012-03-01 14:09:51 +02001671 $set .= ', '.$this->_bcc_array[$i];
Derek Allard2067d1a2008-11-13 22:59:24 +00001672 }
1673
Alex Bilbied261b1e2012-06-02 11:12:16 +01001674 if ($i === $float)
Derek Allard2067d1a2008-11-13 22:59:24 +00001675 {
1676 $chunk[] = substr($set, 1);
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001677 $float += $this->bcc_batch_size;
Andrey Andreev59c5b532012-03-01 14:09:51 +02001678 $set = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001679 }
1680
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001681 if ($i === $c-1)
Derek Allard2067d1a2008-11-13 22:59:24 +00001682 {
1683 $chunk[] = substr($set, 1);
1684 }
1685 }
1686
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001687 for ($i = 0, $c = count($chunk); $i < $c; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001688 {
1689 unset($this->_headers['Bcc']);
Derek Allard2067d1a2008-11-13 22:59:24 +00001690
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001691 $bcc = $this->clean_email($this->_str_to_array($chunk[$i]));
Derek Allard2067d1a2008-11-13 22:59:24 +00001692
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001693 if ($this->protocol !== 'smtp')
Derek Allard2067d1a2008-11-13 22:59:24 +00001694 {
Mickey Wubfc1cad2012-05-31 22:28:40 -07001695 $this->set_header('Bcc', implode(', ', $bcc));
Derek Allard2067d1a2008-11-13 22:59:24 +00001696 }
1697 else
1698 {
1699 $this->_bcc_array = $bcc;
1700 }
1701
buhay466e8082013-04-17 14:25:34 -07001702 if ($this->_build_message() === FALSE)
1703 {
1704 return FALSE;
1705 }
buhayc6da1ef2013-04-18 09:06:49 -07001706
Derek Allard2067d1a2008-11-13 22:59:24 +00001707 $this->_spool_email();
1708 }
1709 }
Barry Mienydd671972010-10-04 16:33:58 +02001710
Derek Allard2067d1a2008-11-13 22:59:24 +00001711 // --------------------------------------------------------------------
1712
1713 /**
1714 * Unwrap special elements
1715 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001716 * @return void
1717 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001718 protected function _unwrap_specials()
Derek Allard2067d1a2008-11-13 22:59:24 +00001719 {
Andrey Andreev56454792012-05-17 14:32:19 +03001720 $this->_finalbody = preg_replace_callback('/\{unwrap\}(.*?)\{\/unwrap\}/si', array($this, '_remove_nl_callback'), $this->_finalbody);
Derek Allard2067d1a2008-11-13 22:59:24 +00001721 }
Barry Mienydd671972010-10-04 16:33:58 +02001722
Derek Allard2067d1a2008-11-13 22:59:24 +00001723 // --------------------------------------------------------------------
1724
1725 /**
1726 * Strip line-breaks via callback
1727 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001728 * @param string $matches
Derek Allard2067d1a2008-11-13 22:59:24 +00001729 * @return string
1730 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001731 protected function _remove_nl_callback($matches)
Derek Allard2067d1a2008-11-13 22:59:24 +00001732 {
1733 if (strpos($matches[1], "\r") !== FALSE OR strpos($matches[1], "\n") !== FALSE)
1734 {
1735 $matches[1] = str_replace(array("\r\n", "\r", "\n"), '', $matches[1]);
1736 }
1737
1738 return $matches[1];
1739 }
Barry Mienydd671972010-10-04 16:33:58 +02001740
Derek Allard2067d1a2008-11-13 22:59:24 +00001741 // --------------------------------------------------------------------
1742
1743 /**
1744 * Spool mail to the mail server
1745 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001746 * @return bool
1747 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001748 protected function _spool_email()
Derek Allard2067d1a2008-11-13 22:59:24 +00001749 {
1750 $this->_unwrap_specials();
1751
Andrey Andreev56454792012-05-17 14:32:19 +03001752 $method = '_send_with_'.$this->_get_protocol();
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001753 if ( ! $this->$method())
Derek Allard2067d1a2008-11-13 22:59:24 +00001754 {
Andrey Andreev56454792012-05-17 14:32:19 +03001755 $this->_set_error_message('lang:email_send_failure_'.($this->_get_protocol() === 'mail' ? 'phpmail' : $this->_get_protocol()));
Diogo Osório7fcc7bd2012-03-02 16:54:52 +00001756 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001757 }
1758
patworkb0707982011-04-08 15:10:05 +02001759 $this->_set_error_message('lang:email_sent', $this->_get_protocol());
Derek Allard2067d1a2008-11-13 22:59:24 +00001760 return TRUE;
1761 }
Barry Mienydd671972010-10-04 16:33:58 +02001762
Derek Allard2067d1a2008-11-13 22:59:24 +00001763 // --------------------------------------------------------------------
1764
1765 /**
1766 * Send using mail()
1767 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001768 * @return bool
1769 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001770 protected function _send_with_mail()
Derek Allard2067d1a2008-11-13 22:59:24 +00001771 {
Andrey Andreev8a7078b2012-10-17 10:52:49 +03001772 if (is_array($this->_recipients))
1773 {
1774 $this->_recipients = implode(', ', $this->_recipients);
1775 }
1776
Alex Bilbied261b1e2012-06-02 11:12:16 +01001777 if ($this->_safe_mode === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001778 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001779 return mail($this->_recipients, $this->_subject, $this->_finalbody, $this->_header_str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001780 }
1781 else
1782 {
1783 // most documentation of sendmail using the "-f" flag lacks a space after it, however
1784 // we've encountered servers that seem to require it to be in place.
Melounek58dfc082012-06-29 08:43:47 +02001785 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 +00001786 }
1787 }
Barry Mienydd671972010-10-04 16:33:58 +02001788
Derek Allard2067d1a2008-11-13 22:59:24 +00001789 // --------------------------------------------------------------------
1790
1791 /**
1792 * Send using Sendmail
1793 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001794 * @return bool
1795 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001796 protected function _send_with_sendmail()
Derek Allard2067d1a2008-11-13 22:59:24 +00001797 {
Andrey Andreeve9d2dc82012-11-07 14:23:29 +02001798 // is popen() enabled?
1799 if ( ! function_usable('popen')
1800 OR FALSE === ($fp = @popen(
1801 $this->mailpath.' -oi -f '.$this->clean_email($this->_headers['From'])
1802 .' -t -r '.$this->clean_email($this->_headers['Return-Path'])
1803 , 'w'))
1804 ) // server probably has popen disabled, so nothing we can do to get a verbose error.
Derek Jones4cefaa42009-04-29 19:13:56 +00001805 {
Derek Jones4cefaa42009-04-29 19:13:56 +00001806 return FALSE;
1807 }
Derek Jones71141ce2010-03-02 16:41:20 -06001808
Derek Jonesc630bcf2008-11-17 21:09:45 +00001809 fputs($fp, $this->_header_str);
1810 fputs($fp, $this->_finalbody);
1811
Barry Mienydd671972010-10-04 16:33:58 +02001812 $status = pclose($fp);
Eric Barnes6113f542010-12-29 13:36:12 -05001813
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001814 if ($status !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001815 {
patworkb0707982011-04-08 15:10:05 +02001816 $this->_set_error_message('lang:email_exit_status', $status);
1817 $this->_set_error_message('lang:email_no_socket');
Derek Allard2067d1a2008-11-13 22:59:24 +00001818 return FALSE;
1819 }
1820
Derek Allard2067d1a2008-11-13 22:59:24 +00001821 return TRUE;
1822 }
Barry Mienydd671972010-10-04 16:33:58 +02001823
Derek Allard2067d1a2008-11-13 22:59:24 +00001824 // --------------------------------------------------------------------
1825
1826 /**
1827 * Send using SMTP
1828 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001829 * @return bool
1830 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001831 protected function _send_with_smtp()
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301832 {
1833 if ($this->smtp_host === '')
1834 {
1835 $this->_set_error_message('lang:email_no_hostname');
1836 return FALSE;
1837 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001838
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301839 if ( ! $this->_smtp_connect() OR ! $this->_smtp_authenticate())
1840 {
1841 return FALSE;
1842 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001843
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301844 $this->_send_command('from', $this->clean_email($this->_headers['From']));
Derek Allard2067d1a2008-11-13 22:59:24 +00001845
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301846 foreach ($this->_recipients as $val)
1847 {
1848 $this->_send_command('to', $val);
1849 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001850
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301851 if (count($this->_cc_array) > 0)
1852 {
1853 foreach ($this->_cc_array as $val)
1854 {
1855 if ($val !== '')
1856 {
1857 $this->_send_command('to', $val);
1858 }
1859 }
1860 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001861
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301862 if (count($this->_bcc_array) > 0)
1863 {
1864 foreach ($this->_bcc_array as $val)
1865 {
1866 if ($val !== '')
1867 {
1868 $this->_send_command('to', $val);
1869 }
1870 }
1871 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001872
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301873 $this->_send_command('data');
Derek Allard2067d1a2008-11-13 22:59:24 +00001874
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301875 // perform dot transformation on any lines that begin with a dot
1876 $this->_send_data($this->_header_str.preg_replace('/^\./m', '..$1', $this->_finalbody));
Derek Allard2067d1a2008-11-13 22:59:24 +00001877
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301878 $this->_send_data('.');
Derek Allard2067d1a2008-11-13 22:59:24 +00001879
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301880 $reply = $this->_get_smtp_data();
Derek Allard2067d1a2008-11-13 22:59:24 +00001881
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301882 $this->_set_error_message($reply);
Derek Allard2067d1a2008-11-13 22:59:24 +00001883
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301884 if (strpos($reply, '250') !== 0)
1885 {
1886 $this->_set_error_message('lang:email_smtp_error', $reply);
1887 return FALSE;
1888 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001889
nisheeth-barthwal758f40c2013-02-18 17:18:51 +05301890 if ($this->smtp_keepalive)
1891 {
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301892 $this->_send_command('reset');
nisheeth-barthwal758f40c2013-02-18 17:18:51 +05301893 }
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301894 else
nisheeth-barthwal758f40c2013-02-18 17:18:51 +05301895 {
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301896 $this->_send_command('quit');
nisheeth-barthwal758f40c2013-02-18 17:18:51 +05301897 }
Barry Mienydd671972010-10-04 16:33:58 +02001898
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301899 return TRUE;
1900 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001901
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301902 // --------------------------------------------------------------------
Radu Potop4c589ae2011-09-29 10:19:55 +03001903
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301904 /**
1905 * SMTP Connect
1906 *
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301907 * @return string
1908 */
nisheeth-barthwala44e6912013-02-18 18:07:03 +05301909 protected function _smtp_connect()
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301910 {
nisheeth-barthwala44e6912013-02-18 18:07:03 +05301911 if (is_resource($this->_smtp_connect))
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301912 {
nisheeth-barthwala44e6912013-02-18 18:07:03 +05301913 return TRUE;
1914 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001915
Andrey Andreev89b67b42013-03-12 19:34:23 +02001916 $ssl = ($this->smtp_crypto === 'ssl') ? 'ssl://' : '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001917
nisheeth-barthwala44e6912013-02-18 18:07:03 +05301918 $this->_smtp_connect = fsockopen($ssl.$this->smtp_host,
1919 $this->smtp_port,
1920 $errno,
1921 $errstr,
1922 $this->smtp_timeout);
1923
1924 if ( ! is_resource($this->_smtp_connect))
1925 {
1926 $this->_set_error_message('lang:email_smtp_error', $errno.' '.$errstr);
1927 return FALSE;
1928 }
1929
1930 stream_set_timeout($this->_smtp_connect, $this->smtp_timeout);
1931 $this->_set_error_message($this->_get_smtp_data());
1932
1933 if ($this->smtp_crypto === 'tls')
1934 {
1935 $this->_send_command('hello');
1936 $this->_send_command('starttls');
1937
1938 $crypto = stream_socket_enable_crypto($this->_smtp_connect, TRUE, STREAM_CRYPTO_METHOD_TLS_CLIENT);
1939
1940 if ($crypto !== TRUE)
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301941 {
nisheeth-barthwala44e6912013-02-18 18:07:03 +05301942 $this->_set_error_message('lang:email_smtp_error', $this->_get_smtp_data());
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301943 return FALSE;
1944 }
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301945 }
nisheeth-barthwala44e6912013-02-18 18:07:03 +05301946
1947 return $this->_send_command('hello');
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301948 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001949
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301950 // --------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +00001951
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301952 /**
1953 * Send SMTP command
1954 *
1955 * @param string
1956 * @param string
1957 * @return string
1958 */
1959 protected function _send_command($cmd, $data = '')
1960 {
1961 switch ($cmd)
1962 {
1963 case 'hello' :
Derek Allard2067d1a2008-11-13 22:59:24 +00001964
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301965 if ($this->_smtp_auth OR $this->_get_encoding() === '8bit')
1966 {
1967 $this->_send_data('EHLO '.$this->_get_hostname());
1968 }
1969 else
1970 {
1971 $this->_send_data('HELO '.$this->_get_hostname());
1972 }
Radu Potopbbf04b02011-09-28 13:57:51 +03001973
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301974 $resp = 250;
1975 break;
1976 case 'starttls' :
Derek Allard2067d1a2008-11-13 22:59:24 +00001977
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301978 $this->_send_data('STARTTLS');
1979 $resp = 220;
1980 break;
1981 case 'from' :
Andrey Andreev56454792012-05-17 14:32:19 +03001982
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301983 $this->_send_data('MAIL FROM:<'.$data.'>');
1984 $resp = 250;
1985 break;
1986 case 'to' :
Andrey Andreev56454792012-05-17 14:32:19 +03001987
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301988 if ($this->dsn)
1989 {
1990 $this->_send_data('RCPT TO:<'.$data.'> NOTIFY=SUCCESS,DELAY,FAILURE ORCPT=rfc822;'.$data);
1991 }
1992 else
1993 {
1994 $this->_send_data('RCPT TO:<'.$data.'>');
1995 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001996
nisheeth-barthwal59209de2013-02-18 17:02:13 +05301997 $resp = 250;
1998 break;
1999 case 'data' :
Derek Allard2067d1a2008-11-13 22:59:24 +00002000
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302001 $this->_send_data('DATA');
2002 $resp = 354;
2003 break;
2004 case 'reset':
Derek Allard2067d1a2008-11-13 22:59:24 +00002005
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302006 $this->_send_data('RSET');
2007 $resp = 250;
2008 break;
2009 case 'quit' :
Derek Allard2067d1a2008-11-13 22:59:24 +00002010
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302011 $this->_send_data('QUIT');
2012 $resp = 221;
2013 break;
2014 }
Derek Allard2067d1a2008-11-13 22:59:24 +00002015
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302016 $reply = $this->_get_smtp_data();
Derek Allard2067d1a2008-11-13 22:59:24 +00002017
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302018 $this->_debug_msg[] = '<pre>'.$cmd.': '.$reply.'</pre>';
Derek Allard2067d1a2008-11-13 22:59:24 +00002019
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302020 if ((int) substr($reply, 0, 3) !== $resp)
2021 {
2022 $this->_set_error_message('lang:email_smtp_error', $reply);
2023 return FALSE;
2024 }
Barry Mienydd671972010-10-04 16:33:58 +02002025
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302026 if ($cmd === 'quit')
2027 {
2028 fclose($this->_smtp_connect);
2029 }
Derek Allard2067d1a2008-11-13 22:59:24 +00002030
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302031 return TRUE;
2032 }
Derek Allard2067d1a2008-11-13 22:59:24 +00002033
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302034 // --------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +00002035
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302036 /**
2037 * SMTP Authenticate
2038 *
2039 * @return bool
2040 */
2041 protected function _smtp_authenticate()
2042 {
2043 if ( ! $this->_smtp_auth)
2044 {
2045 return TRUE;
2046 }
Derek Allard2067d1a2008-11-13 22:59:24 +00002047
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302048 if ($this->smtp_user === '' && $this->smtp_pass === '')
2049 {
2050 $this->_set_error_message('lang:email_no_smtp_unpw');
2051 return FALSE;
2052 }
Derek Allard2067d1a2008-11-13 22:59:24 +00002053
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302054 $this->_send_data('AUTH LOGIN');
Derek Allard2067d1a2008-11-13 22:59:24 +00002055
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302056 $reply = $this->_get_smtp_data();
Derek Allard2067d1a2008-11-13 22:59:24 +00002057
Andrey Andreevfa01ae42013-03-04 14:40:18 +02002058 if (strpos($reply, '503') === 0) // Already authenticated
nisheeth-barthwal758f40c2013-02-18 17:18:51 +05302059 {
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302060 return TRUE;
nisheeth-barthwal758f40c2013-02-18 17:18:51 +05302061 }
Andrey Andreevfa01ae42013-03-04 14:40:18 +02002062 elseif (strpos($reply, '334') !== 0)
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302063 {
2064 $this->_set_error_message('lang:email_failed_smtp_login', $reply);
2065 return FALSE;
2066 }
Derek Allard2067d1a2008-11-13 22:59:24 +00002067
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302068 $this->_send_data(base64_encode($this->smtp_user));
Derek Allard2067d1a2008-11-13 22:59:24 +00002069
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302070 $reply = $this->_get_smtp_data();
Derek Allard2067d1a2008-11-13 22:59:24 +00002071
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302072 if (strpos($reply, '334') !== 0)
2073 {
2074 $this->_set_error_message('lang:email_smtp_auth_un', $reply);
2075 return FALSE;
2076 }
Derek Allard2067d1a2008-11-13 22:59:24 +00002077
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302078 $this->_send_data(base64_encode($this->smtp_pass));
Derek Allard2067d1a2008-11-13 22:59:24 +00002079
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302080 $reply = $this->_get_smtp_data();
nisheeth-barthwalcf225572013-02-18 01:08:04 +05302081
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302082 if (strpos($reply, '235') !== 0)
2083 {
2084 $this->_set_error_message('lang:email_smtp_auth_pw', $reply);
2085 return FALSE;
2086 }
nisheeth-barthwalcf225572013-02-18 01:08:04 +05302087
nisheeth-barthwal59209de2013-02-18 17:02:13 +05302088 return TRUE;
2089 }
Barry Mienydd671972010-10-04 16:33:58 +02002090
Derek Allard2067d1a2008-11-13 22:59:24 +00002091 // --------------------------------------------------------------------
2092
2093 /**
2094 * Send SMTP data
2095 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03002096 * @param string $data
Derek Allard2067d1a2008-11-13 22:59:24 +00002097 * @return bool
2098 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06002099 protected function _send_data($data)
Derek Allard2067d1a2008-11-13 22:59:24 +00002100 {
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03002101 if ( ! fwrite($this->_smtp_connect, $data.$this->newline))
Derek Allard2067d1a2008-11-13 22:59:24 +00002102 {
patworkb0707982011-04-08 15:10:05 +02002103 $this->_set_error_message('lang:email_smtp_data_failure', $data);
Derek Allard2067d1a2008-11-13 22:59:24 +00002104 return FALSE;
2105 }
Andrey Andreev1bd3d882011-12-22 15:38:20 +02002106
2107 return TRUE;
Derek Allard2067d1a2008-11-13 22:59:24 +00002108 }
Barry Mienydd671972010-10-04 16:33:58 +02002109
Derek Allard2067d1a2008-11-13 22:59:24 +00002110 // --------------------------------------------------------------------
2111
2112 /**
2113 * Get SMTP data
2114 *
Derek Allard2067d1a2008-11-13 22:59:24 +00002115 * @return string
2116 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06002117 protected function _get_smtp_data()
Derek Allard2067d1a2008-11-13 22:59:24 +00002118 {
Andrey Andreev56454792012-05-17 14:32:19 +03002119 $data = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00002120
2121 while ($str = fgets($this->_smtp_connect, 512))
2122 {
2123 $data .= $str;
2124
Alex Bilbied261b1e2012-06-02 11:12:16 +01002125 if ($str[3] === ' ')
Derek Allard2067d1a2008-11-13 22:59:24 +00002126 {
2127 break;
2128 }
2129 }
2130
2131 return $data;
2132 }
Barry Mienydd671972010-10-04 16:33:58 +02002133
Derek Allard2067d1a2008-11-13 22:59:24 +00002134 // --------------------------------------------------------------------
2135
2136 /**
2137 * Get Hostname
2138 *
Derek Allard2067d1a2008-11-13 22:59:24 +00002139 * @return string
2140 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06002141 protected function _get_hostname()
Derek Allard2067d1a2008-11-13 22:59:24 +00002142 {
Andrey Andreev59c5b532012-03-01 14:09:51 +02002143 return isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : 'localhost.localdomain';
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 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00002149 * Get Debug Message
2150 *
Andrey Andreev61797f62012-11-26 16:15:12 +02002151 * @param array $include List of raw data chunks to include in the output
2152 * Valid options are: 'headers', 'subject', 'body'
Derek Allard2067d1a2008-11-13 22:59:24 +00002153 * @return string
2154 */
Andrey Andreev61797f62012-11-26 16:15:12 +02002155 public function print_debugger($include = array('headers', 'subject', 'body'))
Derek Allard2067d1a2008-11-13 22:59:24 +00002156 {
2157 $msg = '';
2158
2159 if (count($this->_debug_msg) > 0)
2160 {
2161 foreach ($this->_debug_msg as $val)
2162 {
2163 $msg .= $val;
2164 }
2165 }
2166
Andrey Andreev61797f62012-11-26 16:15:12 +02002167 // Determine which parts of our raw data needs to be printed
2168 $raw_data = '';
2169 is_array($include) OR $include = array($include);
2170
2171 if (in_array('headers', $include, TRUE))
2172 {
Andrey Andreev58f677f2013-07-16 11:01:37 +03002173 $raw_data = htmlspecialchars($this->_header_str)."\n";
Andrey Andreev61797f62012-11-26 16:15:12 +02002174 }
2175
2176 if (in_array('subject', $include, TRUE))
2177 {
2178 $raw_data .= htmlspecialchars($this->_subject)."\n";
2179 }
2180
2181 if (in_array('body', $include, TRUE))
2182 {
2183 $raw_data .= htmlspecialchars($this->_finalbody);
2184 }
2185
2186 return $msg.($raw_data === '' ? '' : '<pre>'.$raw_data.'</pre>');
Derek Allard2067d1a2008-11-13 22:59:24 +00002187 }
Barry Mienydd671972010-10-04 16:33:58 +02002188
Derek Allard2067d1a2008-11-13 22:59:24 +00002189 // --------------------------------------------------------------------
2190
2191 /**
2192 * Set Message
2193 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03002194 * @param string $msg
2195 * @param string $val = ''
Andrey Andreev081c9462012-03-01 12:58:11 +02002196 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +00002197 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06002198 protected function _set_error_message($msg, $val = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00002199 {
2200 $CI =& get_instance();
2201 $CI->lang->load('email');
2202
Andrey Andreev7a7ad782012-11-12 17:21:01 +02002203 if (sscanf($msg, 'lang:%s', $line) !== 1 OR FALSE === ($line = $CI->lang->line($line)))
Derek Allard2067d1a2008-11-13 22:59:24 +00002204 {
Andrey Andreev56454792012-05-17 14:32:19 +03002205 $this->_debug_msg[] = str_replace('%s', $val, $msg).'<br />';
Derek Allard2067d1a2008-11-13 22:59:24 +00002206 }
2207 else
2208 {
Andrey Andreev56454792012-05-17 14:32:19 +03002209 $this->_debug_msg[] = str_replace('%s', $val, $line).'<br />';
Derek Allard2067d1a2008-11-13 22:59:24 +00002210 }
2211 }
Barry Mienydd671972010-10-04 16:33:58 +02002212
Derek Allard2067d1a2008-11-13 22:59:24 +00002213 // --------------------------------------------------------------------
2214
2215 /**
2216 * Mime Types
2217 *
Derek Allard2067d1a2008-11-13 22:59:24 +00002218 * @param string
2219 * @return string
2220 */
Andrey Andreev59c5b532012-03-01 14:09:51 +02002221 protected function _mime_types($ext = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00002222 {
Andrey Andreev6ef498b2012-06-05 22:01:58 +03002223 static $mimes;
Derek Allard2067d1a2008-11-13 22:59:24 +00002224
Andrey Andreev6ef498b2012-06-05 22:01:58 +03002225 $ext = strtolower($ext);
2226
2227 if ( ! is_array($mimes))
2228 {
2229 $mimes =& get_mimes();
2230 }
2231
2232 if (isset($mimes[$ext]))
2233 {
2234 return is_array($mimes[$ext])
2235 ? current($mimes[$ext])
2236 : $mimes[$ext];
2237 }
2238
2239 return 'application/x-unknown-content-type';
Derek Allard2067d1a2008-11-13 22:59:24 +00002240 }
2241
2242}
Derek Allard2067d1a2008-11-13 22:59:24 +00002243
2244/* End of file Email.php */
Andrey Andreev50988592012-10-08 20:46:04 +03002245/* Location: ./system/libraries/Email.php */