blob: edca303ff6bc87def18861825e7020cdde7ba8e6 [file] [log] [blame]
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
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
Greg Aker0defe5d2012-01-01 18:46:41 -060021 * @copyright Copyright (c) 2008 - 2012, 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 */
27
Derek Allard2067d1a2008-11-13 22:59:24 +000028/**
29 * CodeIgniter Email Class
30 *
31 * Permits email to be sent using Mail, Sendmail, or SMTP.
32 *
33 * @package CodeIgniter
34 * @subpackage Libraries
35 * @category Libraries
Derek Jonesf4a4bd82011-10-20 12:18:42 -050036 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000037 * @link http://codeigniter.com/user_guide/libraries/email.html
38 */
trita15dd4f2011-11-23 07:40:05 -050039class CI_Email {
Derek Allard2067d1a2008-11-13 22:59:24 +000040
Andrey Andreev59c5b532012-03-01 14:09:51 +020041 public $useragent = 'CodeIgniter';
42 public $mailpath = '/usr/sbin/sendmail'; // Sendmail path
43 public $protocol = 'mail'; // mail/sendmail/smtp
44 public $smtp_host = ''; // SMTP Server. Example: mail.earthlink.net
45 public $smtp_user = ''; // SMTP Username
46 public $smtp_pass = ''; // SMTP Password
47 public $smtp_port = 25; // SMTP Port
48 public $smtp_timeout = 5; // SMTP Timeout in seconds
49 public $smtp_crypto = ''; // SMTP Encryption. Can be null, tls or ssl.
vkeranov7e4356b2012-10-27 18:41:00 +030050 public $wordwrap = TRUE; // TRUE/FALSE - Turns word-wrap on/off
Andrey Andreev59c5b532012-03-01 14:09:51 +020051 public $wrapchars = 76; // Number of characters to wrap at.
vkeranov7e4356b2012-10-27 18:41:00 +030052 public $mailtype = 'text'; // text/html - Defines email formatting
Andrey Andreev59c5b532012-03-01 14:09:51 +020053 public $charset = 'utf-8'; // Default char set: iso-8859-1 or us-ascii
54 public $multipart = 'mixed'; // "mixed" (in the body) or "related" (separate)
55 public $alt_message = ''; // Alternative message for HTML emails
vkeranov7e4356b2012-10-27 18:41:00 +030056 public $validate = FALSE; // TRUE/FALSE - Enables email validation
Andrey Andreev59c5b532012-03-01 14:09:51 +020057 public $priority = 3; // Default priority (1 - 5)
58 public $newline = "\n"; // Default newline. "\r\n" or "\n" (Use "\r\n" to comply with RFC 822)
vkeranov7e4356b2012-10-27 18:41:00 +030059 public $crlf = "\n"; // The RFC 2045 compliant CRLF for quoted-printable is "\r\n". Apparently some servers,
Derek Allard2067d1a2008-11-13 22:59:24 +000060 // even on the receiving end think they need to muck with CRLFs, so using "\n", while
61 // distasteful, is the only thing that seems to work for all environments.
leandronf7686c122012-03-22 08:07:31 -030062 public $dsn = FALSE; // Delivery Status Notification
vkeranov7e4356b2012-10-27 18:41:00 +030063 public $send_multipart = TRUE; // TRUE/FALSE - Yahoo does not like multipart alternative, so this is an override. Set to FALSE for Yahoo.
Andrey Andreev59c5b532012-03-01 14:09:51 +020064 public $bcc_batch_mode = FALSE; // TRUE/FALSE - Turns on/off Bcc batch feature
Andrey Andreev1bd3d882011-12-22 15:38:20 +020065 public $bcc_batch_size = 200; // If bcc_batch_mode = TRUE, sets max number of Bccs in each batch
Andrey Andreev50814092012-03-01 12:36:12 +020066
67 protected $_safe_mode = FALSE;
68 protected $_subject = '';
69 protected $_body = '';
70 protected $_finalbody = '';
71 protected $_alt_boundary = '';
72 protected $_atc_boundary = '';
73 protected $_header_str = '';
74 protected $_smtp_connect = '';
75 protected $_encoding = '8bit';
76 protected $_IP = FALSE;
77 protected $_smtp_auth = FALSE;
78 protected $_replyto_flag = FALSE;
79 protected $_debug_msg = array();
80 protected $_recipients = array();
81 protected $_cc_array = array();
82 protected $_bcc_array = array();
83 protected $_headers = array();
Andrey Andreevb8f9a152012-10-27 01:36:51 +030084 protected $_attachments = array();
Andrey Andreev50814092012-03-01 12:36:12 +020085 protected $_protocols = array('mail', 'sendmail', 'smtp');
86 protected $_base_charsets = array('us-ascii', 'iso-2022-'); // 7-bit charsets (excluding language suffix)
87 protected $_bit_depths = array('7bit', '8bit');
88 protected $_priorities = array('1 (Highest)', '2 (High)', '3 (Normal)', '4 (Low)', '5 (Lowest)');
Derek Allard2067d1a2008-11-13 22:59:24 +000089
Derek Allard2067d1a2008-11-13 22:59:24 +000090 /**
91 * Constructor - Sets Email Preferences
92 *
93 * The constructor can be passed an array of config values
Andrey Andreev56454792012-05-17 14:32:19 +030094 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +030095 * @param array $config = array()
Andrey Andreev56454792012-05-17 14:32:19 +030096 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +000097 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +000098 public function __construct($config = array())
Derek Allard2067d1a2008-11-13 22:59:24 +000099 {
Andrey Andreev925dd902012-10-19 11:06:31 +0300100 $this->charset = config_item('charset');
Andrey Andreev9f44c212012-10-10 16:07:17 +0300101
Derek Allard2067d1a2008-11-13 22:59:24 +0000102 if (count($config) > 0)
103 {
104 $this->initialize($config);
105 }
106 else
107 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100108 $this->_smtp_auth = ! ($this->smtp_user === '' && $this->smtp_pass === '');
Andrey Andreev59c5b532012-03-01 14:09:51 +0200109 $this->_safe_mode = (bool) @ini_get('safe_mode');
Derek Allard2067d1a2008-11-13 22:59:24 +0000110 }
111
Andrey Andreev925dd902012-10-19 11:06:31 +0300112 $this->charset = strtoupper($this->charset);
113
Andrey Andreev59c5b532012-03-01 14:09:51 +0200114 log_message('debug', 'Email Class Initialized');
Derek Allard2067d1a2008-11-13 22:59:24 +0000115 }
116
117 // --------------------------------------------------------------------
118
119 /**
120 * Initialize preferences
121 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000122 * @param array
123 * @return void
124 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000125 public function initialize($config = array())
Derek Allard2067d1a2008-11-13 22:59:24 +0000126 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000127 foreach ($config as $key => $val)
128 {
129 if (isset($this->$key))
130 {
131 $method = 'set_'.$key;
132
133 if (method_exists($this, $method))
134 {
135 $this->$method($val);
136 }
137 else
138 {
139 $this->$key = $val;
140 }
141 }
142 }
Eric Barnes6113f542010-12-29 13:36:12 -0500143 $this->clear();
Derek Allard2067d1a2008-11-13 22:59:24 +0000144
Alex Bilbied261b1e2012-06-02 11:12:16 +0100145 $this->_smtp_auth = ! ($this->smtp_user === '' && $this->smtp_pass === '');
Andrey Andreev59c5b532012-03-01 14:09:51 +0200146 $this->_safe_mode = (bool) @ini_get('safe_mode');
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000147
148 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000149 }
Barry Mienydd671972010-10-04 16:33:58 +0200150
Derek Allard2067d1a2008-11-13 22:59:24 +0000151 // --------------------------------------------------------------------
152
153 /**
154 * Initialize the Email Data
155 *
Bo-Yi Wu83320eb2011-09-15 13:28:02 +0800156 * @param bool
Andrey Andreev081c9462012-03-01 12:58:11 +0200157 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000158 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000159 public function clear($clear_attachments = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000160 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200161 $this->_subject = '';
162 $this->_body = '';
163 $this->_finalbody = '';
164 $this->_header_str = '';
165 $this->_replyto_flag = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000166 $this->_recipients = array();
Derek Jonesd1606352010-09-01 11:16:07 -0500167 $this->_cc_array = array();
168 $this->_bcc_array = array();
Derek Allard2067d1a2008-11-13 22:59:24 +0000169 $this->_headers = array();
170 $this->_debug_msg = array();
171
Mickey Wubfc1cad2012-05-31 22:28:40 -0700172 $this->set_header('User-Agent', $this->useragent);
173 $this->set_header('Date', $this->_set_date());
Derek Allard2067d1a2008-11-13 22:59:24 +0000174
175 if ($clear_attachments !== FALSE)
176 {
Andrey Andreevb8f9a152012-10-27 01:36:51 +0300177 $this->_attachments = array();
Derek Allard2067d1a2008-11-13 22:59:24 +0000178 }
Eric Barnes6113f542010-12-29 13:36:12 -0500179
Greg Akera769deb2010-11-10 15:47:29 -0600180 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000181 }
Barry Mienydd671972010-10-04 16:33:58 +0200182
Derek Allard2067d1a2008-11-13 22:59:24 +0000183 // --------------------------------------------------------------------
184
185 /**
186 * Set FROM
187 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +0300188 * @param string $from
189 * @param string $name
190 * @param string $return_path = NULL Return-Path
Andrey Andreev081c9462012-03-01 12:58:11 +0200191 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000192 */
Andrey Andreev925dd902012-10-19 11:06:31 +0300193 public function from($from, $name = '', $return_path = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000194 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200195 if (preg_match('/\<(.*)\>/', $from, $match))
Derek Allard2067d1a2008-11-13 22:59:24 +0000196 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200197 $from = $match[1];
Derek Allard2067d1a2008-11-13 22:59:24 +0000198 }
199
200 if ($this->validate)
201 {
202 $this->validate_email($this->_str_to_array($from));
Andrey Andreevccd01c72012-10-05 17:12:55 +0300203 if ($return_path)
Melounek58dfc082012-06-29 08:43:47 +0200204 {
205 $this->validate_email($this->_str_to_array($return_path));
206 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000207 }
208
209 // prepare the display name
Alex Bilbied261b1e2012-06-02 11:12:16 +0100210 if ($name !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000211 {
212 // only use Q encoding if there are characters that would require it
213 if ( ! preg_match('/[\200-\377]/', $name))
214 {
215 // add slashes for non-printing characters, slashes, and double quotes, and surround it in double quotes
Derek Jonesc630bcf2008-11-17 21:09:45 +0000216 $name = '"'.addcslashes($name, "\0..\37\177'\"\\").'"';
Derek Allard2067d1a2008-11-13 22:59:24 +0000217 }
218 else
219 {
Andrey Andreev925dd902012-10-19 11:06:31 +0300220 $name = $this->_prep_q_encoding($name);
Derek Allard2067d1a2008-11-13 22:59:24 +0000221 }
222 }
223
Mickey Wubfc1cad2012-05-31 22:28:40 -0700224 $this->set_header('From', $name.' <'.$from.'>');
Melounek58dfc082012-06-29 08:43:47 +0200225
Andrey Andreev925dd902012-10-19 11:06:31 +0300226 isset($return_path) OR $return_path = $from;
Melounek58dfc082012-06-29 08:43:47 +0200227 $this->set_header('Return-Path', '<'.$return_path.'>');
Eric Barnes6113f542010-12-29 13:36:12 -0500228
Greg Akera769deb2010-11-10 15:47:29 -0600229 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000230 }
Barry Mienydd671972010-10-04 16:33:58 +0200231
Derek Allard2067d1a2008-11-13 22:59:24 +0000232 // --------------------------------------------------------------------
233
234 /**
235 * Set Reply-to
236 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000237 * @param string
238 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200239 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000240 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000241 public function reply_to($replyto, $name = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000242 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200243 if (preg_match('/\<(.*)\>/', $replyto, $match))
Derek Allard2067d1a2008-11-13 22:59:24 +0000244 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200245 $replyto = $match[1];
Derek Allard2067d1a2008-11-13 22:59:24 +0000246 }
247
248 if ($this->validate)
249 {
250 $this->validate_email($this->_str_to_array($replyto));
251 }
252
Alex Bilbied261b1e2012-06-02 11:12:16 +0100253 if ($name === '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000254 {
255 $name = $replyto;
256 }
257
Andrey Andreev3dad2e72012-06-14 15:10:56 +0300258 if (strpos($name, '"') !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000259 {
260 $name = '"'.$name.'"';
261 }
262
Mickey Wubfc1cad2012-05-31 22:28:40 -0700263 $this->set_header('Reply-To', $name.' <'.$replyto.'>');
Derek Allard2067d1a2008-11-13 22:59:24 +0000264 $this->_replyto_flag = TRUE;
Greg Akera769deb2010-11-10 15:47:29 -0600265
266 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000267 }
Barry Mienydd671972010-10-04 16:33:58 +0200268
Derek Allard2067d1a2008-11-13 22:59:24 +0000269 // --------------------------------------------------------------------
270
271 /**
272 * Set Recipients
273 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000274 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200275 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000276 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000277 public function to($to)
Derek Allard2067d1a2008-11-13 22:59:24 +0000278 {
279 $to = $this->_str_to_array($to);
280 $to = $this->clean_email($to);
281
282 if ($this->validate)
283 {
284 $this->validate_email($to);
285 }
286
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200287 if ($this->_get_protocol() !== 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +0000288 {
Mickey Wubfc1cad2012-05-31 22:28:40 -0700289 $this->set_header('To', implode(', ', $to));
Derek Allard2067d1a2008-11-13 22:59:24 +0000290 }
291
Andrey Andreev8a7078b2012-10-17 10:52:49 +0300292 $this->_recipients = $to;
Eric Barnes6113f542010-12-29 13:36:12 -0500293
Greg Akera769deb2010-11-10 15:47:29 -0600294 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000295 }
Barry Mienydd671972010-10-04 16:33:58 +0200296
Derek Allard2067d1a2008-11-13 22:59:24 +0000297 // --------------------------------------------------------------------
298
299 /**
300 * Set CC
301 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000302 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200303 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000304 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000305 public function cc($cc)
Derek Allard2067d1a2008-11-13 22:59:24 +0000306 {
Andrey Andreev56454792012-05-17 14:32:19 +0300307 $cc = $this->clean_email($this->_str_to_array($cc));
Derek Allard2067d1a2008-11-13 22:59:24 +0000308
309 if ($this->validate)
310 {
311 $this->validate_email($cc);
312 }
313
Mickey Wubfc1cad2012-05-31 22:28:40 -0700314 $this->set_header('Cc', implode(', ', $cc));
Derek Allard2067d1a2008-11-13 22:59:24 +0000315
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200316 if ($this->_get_protocol() === 'smtp')
Derek Allard2067d1a2008-11-13 22:59:24 +0000317 {
318 $this->_cc_array = $cc;
319 }
Eric Barnes6113f542010-12-29 13:36:12 -0500320
Greg Akera769deb2010-11-10 15:47:29 -0600321 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000322 }
Barry Mienydd671972010-10-04 16:33:58 +0200323
Derek Allard2067d1a2008-11-13 22:59:24 +0000324 // --------------------------------------------------------------------
325
326 /**
327 * Set BCC
328 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000329 * @param string
330 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200331 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000332 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000333 public function bcc($bcc, $limit = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000334 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100335 if ($limit !== '' && is_numeric($limit))
Derek Allard2067d1a2008-11-13 22:59:24 +0000336 {
337 $this->bcc_batch_mode = TRUE;
338 $this->bcc_batch_size = $limit;
339 }
340
Andrey Andreev56454792012-05-17 14:32:19 +0300341 $bcc = $this->clean_email($this->_str_to_array($bcc));
Derek Allard2067d1a2008-11-13 22:59:24 +0000342
343 if ($this->validate)
344 {
345 $this->validate_email($bcc);
346 }
347
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200348 if ($this->_get_protocol() === 'smtp' OR ($this->bcc_batch_mode && count($bcc) > $this->bcc_batch_size))
Derek Allard2067d1a2008-11-13 22:59:24 +0000349 {
350 $this->_bcc_array = $bcc;
351 }
352 else
353 {
Mickey Wubfc1cad2012-05-31 22:28:40 -0700354 $this->set_header('Bcc', implode(', ', $bcc));
Derek Allard2067d1a2008-11-13 22:59:24 +0000355 }
Eric Barnes6113f542010-12-29 13:36:12 -0500356
Greg Akera769deb2010-11-10 15:47:29 -0600357 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000358 }
Barry Mienydd671972010-10-04 16:33:58 +0200359
Derek Allard2067d1a2008-11-13 22:59:24 +0000360 // --------------------------------------------------------------------
361
362 /**
363 * Set Email Subject
364 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000365 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200366 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000367 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000368 public function subject($subject)
Derek Allard2067d1a2008-11-13 22:59:24 +0000369 {
370 $subject = $this->_prep_q_encoding($subject);
Mickey Wubfc1cad2012-05-31 22:28:40 -0700371 $this->set_header('Subject', $subject);
Greg Akera769deb2010-11-10 15:47:29 -0600372 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000373 }
Barry Mienydd671972010-10-04 16:33:58 +0200374
Derek Allard2067d1a2008-11-13 22:59:24 +0000375 // --------------------------------------------------------------------
376
377 /**
378 * Set Body
379 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000380 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200381 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000382 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000383 public function message($body)
Derek Allard2067d1a2008-11-13 22:59:24 +0000384 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200385 $this->_body = rtrim(str_replace("\r", '', $body));
diegorivera33c32802011-10-19 02:56:15 -0200386
Andrey Andreevaf728622011-10-20 10:11:59 +0300387 /* strip slashes only if magic quotes is ON
388 if we do it with magic quotes OFF, it strips real, user-inputted chars.
389
390 NOTE: In PHP 5.4 get_magic_quotes_gpc() will always return 0 and
391 it will probably not exist in future versions at all.
392 */
393 if ( ! is_php('5.4') && get_magic_quotes_gpc())
diegorivera9fca6152011-10-19 11:18:45 -0200394 {
diegorivera33c32802011-10-19 02:56:15 -0200395 $this->_body = stripslashes($this->_body);
diegorivera9fca6152011-10-19 11:18:45 -0200396 }
diegorivera33c32802011-10-19 02:56:15 -0200397
Greg Akera769deb2010-11-10 15:47:29 -0600398 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000399 }
Barry Mienydd671972010-10-04 16:33:58 +0200400
Derek Allard2067d1a2008-11-13 22:59:24 +0000401 // --------------------------------------------------------------------
402
403 /**
404 * Assign file attachments
405 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +0300406 * @param string $filename
407 * @param string $disposition = 'attachment'
408 * @param string $newname = NULL
409 * @param string $mime = ''
Andrey Andreev081c9462012-03-01 12:58:11 +0200410 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000411 */
Matteo Matteic3b36f42012-03-26 10:27:17 +0200412 public function attach($filename, $disposition = '', $newname = NULL, $mime = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000413 {
Andrey Andreevb8f9a152012-10-27 01:36:51 +0300414 $this->_attachments[] = array(
415 'name' => array($filename, $newname),
416 'disposition' => empty($disposition) ? 'attachment' : $disposition, // Can also be 'inline' Not sure if it matters
417 'type' => $mime
418 );
419
Greg Akera769deb2010-11-10 15:47:29 -0600420 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000421 }
422
423 // --------------------------------------------------------------------
424
425 /**
426 * Add a Header Item
427 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000428 * @param string
429 * @param string
430 * @return void
431 */
Mickey Wubfc1cad2012-05-31 22:28:40 -0700432 public function set_header($header, $value)
Derek Allard2067d1a2008-11-13 22:59:24 +0000433 {
434 $this->_headers[$header] = $value;
435 }
Barry Mienydd671972010-10-04 16:33:58 +0200436
Derek Allard2067d1a2008-11-13 22:59:24 +0000437 // --------------------------------------------------------------------
438
439 /**
440 * Convert a String to an Array
441 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000442 * @param string
443 * @return array
444 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600445 protected function _str_to_array($email)
Derek Allard2067d1a2008-11-13 22:59:24 +0000446 {
447 if ( ! is_array($email))
448 {
Andrey Andreev56454792012-05-17 14:32:19 +0300449 return (strpos($email, ',') !== FALSE)
450 ? preg_split('/[\s,]/', $email, -1, PREG_SPLIT_NO_EMPTY)
451 : (array) trim($email);
Derek Allard2067d1a2008-11-13 22:59:24 +0000452 }
Andrey Andreev56454792012-05-17 14:32:19 +0300453
Derek Allard2067d1a2008-11-13 22:59:24 +0000454 return $email;
455 }
Barry Mienydd671972010-10-04 16:33:58 +0200456
Derek Allard2067d1a2008-11-13 22:59:24 +0000457 // --------------------------------------------------------------------
458
459 /**
460 * Set Multipart Value
461 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000462 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200463 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000464 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000465 public function set_alt_message($str = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000466 {
Dan Horrigand0ddeaf2011-08-21 09:07:27 -0400467 $this->alt_message = (string) $str;
Greg Akera769deb2010-11-10 15:47:29 -0600468 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000469 }
Barry Mienydd671972010-10-04 16:33:58 +0200470
Derek Allard2067d1a2008-11-13 22:59:24 +0000471 // --------------------------------------------------------------------
472
473 /**
474 * Set Mailtype
475 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000476 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200477 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000478 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000479 public function set_mailtype($type = 'text')
Derek Allard2067d1a2008-11-13 22:59:24 +0000480 {
Andrey Andreev56454792012-05-17 14:32:19 +0300481 $this->mailtype = ($type === 'html') ? 'html' : 'text';
Greg Akera769deb2010-11-10 15:47:29 -0600482 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000483 }
Barry Mienydd671972010-10-04 16:33:58 +0200484
Derek Allard2067d1a2008-11-13 22:59:24 +0000485 // --------------------------------------------------------------------
486
487 /**
488 * Set Wordwrap
489 *
Dan Horrigan628e6602011-08-21 09:08:31 -0400490 * @param bool
Andrey Andreev081c9462012-03-01 12:58:11 +0200491 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000492 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000493 public function set_wordwrap($wordwrap = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000494 {
Dan Horrigan628e6602011-08-21 09:08:31 -0400495 $this->wordwrap = (bool) $wordwrap;
Greg Akera769deb2010-11-10 15:47:29 -0600496 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000497 }
Barry Mienydd671972010-10-04 16:33:58 +0200498
Derek Allard2067d1a2008-11-13 22:59:24 +0000499 // --------------------------------------------------------------------
500
501 /**
502 * Set Protocol
503 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000504 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200505 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000506 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000507 public function set_protocol($protocol = 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +0000508 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200509 $this->protocol = in_array($protocol, $this->_protocols, TRUE) ? strtolower($protocol) : 'mail';
Greg Akera769deb2010-11-10 15:47:29 -0600510 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000511 }
Barry Mienydd671972010-10-04 16:33:58 +0200512
Derek Allard2067d1a2008-11-13 22:59:24 +0000513 // --------------------------------------------------------------------
514
515 /**
516 * Set Priority
517 *
Andrey Andreev081c9462012-03-01 12:58:11 +0200518 * @param int
519 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000520 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000521 public function set_priority($n = 3)
Derek Allard2067d1a2008-11-13 22:59:24 +0000522 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200523 $this->priority = preg_match('/^[1-5]$/', $n) ? (int) $n : 3;
Greg Akera769deb2010-11-10 15:47:29 -0600524 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000525 }
Barry Mienydd671972010-10-04 16:33:58 +0200526
Derek Allard2067d1a2008-11-13 22:59:24 +0000527 // --------------------------------------------------------------------
528
529 /**
530 * Set Newline Character
531 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000532 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200533 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000534 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000535 public function set_newline($newline = "\n")
Derek Allard2067d1a2008-11-13 22:59:24 +0000536 {
Andrey Andreevb71e06b2011-12-22 19:22:50 +0200537 $this->newline = in_array($newline, array("\n", "\r\n", "\r")) ? $newline : "\n";
Greg Akera769deb2010-11-10 15:47:29 -0600538 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000539 }
Barry Mienydd671972010-10-04 16:33:58 +0200540
Derek Allard2067d1a2008-11-13 22:59:24 +0000541 // --------------------------------------------------------------------
542
543 /**
544 * Set CRLF
545 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000546 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200547 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000548 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000549 public function set_crlf($crlf = "\n")
Derek Allard2067d1a2008-11-13 22:59:24 +0000550 {
Andrey Andreev76f15c92012-03-01 13:05:07 +0200551 $this->crlf = ($crlf !== "\n" && $crlf !== "\r\n" && $crlf !== "\r") ? "\n" : $crlf;
Greg Akera769deb2010-11-10 15:47:29 -0600552 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000553 }
Barry Mienydd671972010-10-04 16:33:58 +0200554
Derek Allard2067d1a2008-11-13 22:59:24 +0000555 // --------------------------------------------------------------------
556
557 /**
558 * Set Message Boundary
559 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000560 * @return void
561 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600562 protected function _set_boundaries()
Derek Allard2067d1a2008-11-13 22:59:24 +0000563 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200564 $this->_alt_boundary = 'B_ALT_'.uniqid(''); // multipart/alternative
565 $this->_atc_boundary = 'B_ATC_'.uniqid(''); // attachment boundary
Derek Allard2067d1a2008-11-13 22:59:24 +0000566 }
Barry Mienydd671972010-10-04 16:33:58 +0200567
Derek Allard2067d1a2008-11-13 22:59:24 +0000568 // --------------------------------------------------------------------
569
570 /**
571 * Get the Message ID
572 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000573 * @return string
574 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600575 protected function _get_message_id()
Derek Allard2067d1a2008-11-13 22:59:24 +0000576 {
Andrey Andreevb71e06b2011-12-22 19:22:50 +0200577 $from = str_replace(array('>', '<'), '', $this->_headers['Return-Path']);
Andrey Andreev56454792012-05-17 14:32:19 +0300578 return '<'.uniqid('').strstr($from, '@').'>';
Derek Allard2067d1a2008-11-13 22:59:24 +0000579 }
Barry Mienydd671972010-10-04 16:33:58 +0200580
Derek Allard2067d1a2008-11-13 22:59:24 +0000581 // --------------------------------------------------------------------
582
583 /**
584 * Get Mail Protocol
585 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000586 * @param bool
Andrey Andreev59c5b532012-03-01 14:09:51 +0200587 * @return mixed
Derek Allard2067d1a2008-11-13 22:59:24 +0000588 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600589 protected function _get_protocol($return = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000590 {
591 $this->protocol = strtolower($this->protocol);
Andrey Andreev59c5b532012-03-01 14:09:51 +0200592 in_array($this->protocol, $this->_protocols, TRUE) OR $this->protocol = 'mail';
Derek Allard2067d1a2008-11-13 22:59:24 +0000593
Alex Bilbied261b1e2012-06-02 11:12:16 +0100594 if ($return === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000595 {
596 return $this->protocol;
597 }
598 }
Barry Mienydd671972010-10-04 16:33:58 +0200599
Derek Allard2067d1a2008-11-13 22:59:24 +0000600 // --------------------------------------------------------------------
601
602 /**
603 * Get Mail Encoding
604 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000605 * @param bool
606 * @return string
607 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600608 protected function _get_encoding($return = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000609 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200610 in_array($this->_encoding, $this->_bit_depths) OR $this->_encoding = '8bit';
Derek Allard2067d1a2008-11-13 22:59:24 +0000611
612 foreach ($this->_base_charsets as $charset)
613 {
Andrey Andreev3dad2e72012-06-14 15:10:56 +0300614 if (strpos($charset, $this->charset) === 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000615 {
616 $this->_encoding = '7bit';
617 }
618 }
619
Alex Bilbied261b1e2012-06-02 11:12:16 +0100620 if ($return === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000621 {
622 return $this->_encoding;
623 }
624 }
625
626 // --------------------------------------------------------------------
627
628 /**
629 * Get content type (text/html/attachment)
630 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000631 * @return string
632 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600633 protected function _get_content_type()
Derek Allard2067d1a2008-11-13 22:59:24 +0000634 {
Andrey Andreev56454792012-05-17 14:32:19 +0300635 if ($this->mailtype === 'html')
Derek Allard2067d1a2008-11-13 22:59:24 +0000636 {
Andrey Andreevb8f9a152012-10-27 01:36:51 +0300637 return (count($this->_attachments) === 0) ? 'html' : 'html-attach';
Derek Allard2067d1a2008-11-13 22:59:24 +0000638 }
Andrey Andreevb8f9a152012-10-27 01:36:51 +0300639 elseif ($this->mailtype === 'text' && count($this->_attachments) > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000640 {
641 return 'plain-attach';
642 }
643 else
644 {
645 return 'plain';
646 }
647 }
Barry Mienydd671972010-10-04 16:33:58 +0200648
Derek Allard2067d1a2008-11-13 22:59:24 +0000649 // --------------------------------------------------------------------
650
651 /**
652 * Set RFC 822 Date
653 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000654 * @return string
655 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600656 protected function _set_date()
Derek Allard2067d1a2008-11-13 22:59:24 +0000657 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200658 $timezone = date('Z');
Andrey Andreev3dad2e72012-06-14 15:10:56 +0300659 $operator = ($timezone[0] === '-') ? '-' : '+';
Derek Allard2067d1a2008-11-13 22:59:24 +0000660 $timezone = abs($timezone);
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200661 $timezone = floor($timezone/3600) * 100 + ($timezone % 3600) / 60;
Derek Allard2067d1a2008-11-13 22:59:24 +0000662
Andrey Andreev59c5b532012-03-01 14:09:51 +0200663 return sprintf('%s %s%04d', date('D, j M Y H:i:s'), $operator, $timezone);
Derek Allard2067d1a2008-11-13 22:59:24 +0000664 }
Barry Mienydd671972010-10-04 16:33:58 +0200665
Derek Allard2067d1a2008-11-13 22:59:24 +0000666 // --------------------------------------------------------------------
667
668 /**
669 * Mime message
670 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000671 * @return string
672 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600673 protected function _get_mime_message()
Derek Allard2067d1a2008-11-13 22:59:24 +0000674 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200675 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 +0000676 }
Barry Mienydd671972010-10-04 16:33:58 +0200677
Derek Allard2067d1a2008-11-13 22:59:24 +0000678 // --------------------------------------------------------------------
679
680 /**
681 * Validate Email Address
682 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000683 * @param string
684 * @return bool
685 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000686 public function validate_email($email)
Derek Allard2067d1a2008-11-13 22:59:24 +0000687 {
688 if ( ! is_array($email))
689 {
patworkb0707982011-04-08 15:10:05 +0200690 $this->_set_error_message('lang:email_must_be_array');
Derek Allard2067d1a2008-11-13 22:59:24 +0000691 return FALSE;
692 }
693
694 foreach ($email as $val)
695 {
696 if ( ! $this->valid_email($val))
697 {
patworkb0707982011-04-08 15:10:05 +0200698 $this->_set_error_message('lang:email_invalid_address', $val);
Derek Allard2067d1a2008-11-13 22:59:24 +0000699 return FALSE;
700 }
701 }
702
703 return TRUE;
704 }
Barry Mienydd671972010-10-04 16:33:58 +0200705
Derek Allard2067d1a2008-11-13 22:59:24 +0000706 // --------------------------------------------------------------------
707
708 /**
709 * Email Validation
710 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000711 * @param string
712 * @return bool
713 */
Timothy Warrend37f0e92012-06-27 08:21:59 -0400714 public function valid_email($email)
Derek Allard2067d1a2008-11-13 22:59:24 +0000715 {
Andrey Andreev580388b2012-06-27 15:43:46 +0300716 return (bool) filter_var($email, FILTER_VALIDATE_EMAIL);
Derek Allard2067d1a2008-11-13 22:59:24 +0000717 }
Barry Mienydd671972010-10-04 16:33:58 +0200718
Derek Allard2067d1a2008-11-13 22:59:24 +0000719 // --------------------------------------------------------------------
720
721 /**
722 * Clean Extended Email Address: Joe Smith <joe@smith.com>
723 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000724 * @param string
725 * @return string
726 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000727 public function clean_email($email)
Derek Allard2067d1a2008-11-13 22:59:24 +0000728 {
729 if ( ! is_array($email))
730 {
Andrey Andreev56454792012-05-17 14:32:19 +0300731 return preg_match('/\<(.*)\>/', $email, $match) ? $match[1] : $email;
Derek Allard2067d1a2008-11-13 22:59:24 +0000732 }
733
734 $clean_email = array();
735
736 foreach ($email as $addy)
737 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200738 $clean_email[] = preg_match('/\<(.*)\>/', $addy, $match) ? $match[1] : $addy;
Derek Allard2067d1a2008-11-13 22:59:24 +0000739 }
740
741 return $clean_email;
742 }
Barry Mienydd671972010-10-04 16:33:58 +0200743
Derek Allard2067d1a2008-11-13 22:59:24 +0000744 // --------------------------------------------------------------------
745
746 /**
747 * Build alternative plain text message
748 *
Andrey Andreev8df1ae22012-10-19 11:20:54 +0300749 * Provides the raw message for use in plain-text headers of
750 * HTML-formatted emails.
Derek Allard2067d1a2008-11-13 22:59:24 +0000751 * If the user hasn't specified his own alternative message
752 * it creates one by stripping the HTML
753 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000754 * @return string
755 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600756 protected function _get_alt_message()
Derek Allard2067d1a2008-11-13 22:59:24 +0000757 {
Andrey Andreev8df1ae22012-10-19 11:20:54 +0300758 if ( ! empty($this->alt_message))
Derek Allard2067d1a2008-11-13 22:59:24 +0000759 {
Andrey Andreev8df1ae22012-10-19 11:20:54 +0300760 return ($this->wordwrap)
761 ? $this->word_wrap($this->alt_message, 76)
762 : $this->alt_message;
Derek Allard2067d1a2008-11-13 22:59:24 +0000763 }
764
Andrey Andreev56454792012-05-17 14:32:19 +0300765 $body = preg_match('/\<body.*?\>(.*)\<\/body\>/si', $this->_body, $match) ? $match[1] : $this->_body;
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200766 $body = str_replace("\t", '', preg_replace('#<!--(.*)--\>#', '', trim(strip_tags($body))));
Derek Allard2067d1a2008-11-13 22:59:24 +0000767
768 for ($i = 20; $i >= 3; $i--)
769 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200770 $body = str_replace(str_repeat("\n", $i), "\n\n", $body);
Derek Allard2067d1a2008-11-13 22:59:24 +0000771 }
772
Andrey Andreev8df1ae22012-10-19 11:20:54 +0300773 return ($this->wordwrap)
774 ? $this->word_wrap($body, 76)
775 : $body;
Derek Allard2067d1a2008-11-13 22:59:24 +0000776 }
Barry Mienydd671972010-10-04 16:33:58 +0200777
Derek Allard2067d1a2008-11-13 22:59:24 +0000778 // --------------------------------------------------------------------
779
780 /**
781 * Word Wrap
782 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000783 * @param string
Andrey Andreev8df1ae22012-10-19 11:20:54 +0300784 * @param int line-length limit
Derek Allard2067d1a2008-11-13 22:59:24 +0000785 * @return string
786 */
Andrey Andreev00ea2a92012-10-18 14:59:29 +0300787 public function word_wrap($str, $charlim = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000788 {
Andrey Andreev00ea2a92012-10-18 14:59:29 +0300789 // Set the character limit, if not already present
790 if (empty($charlim))
Derek Allard2067d1a2008-11-13 22:59:24 +0000791 {
Andrey Andreev00ea2a92012-10-18 14:59:29 +0300792 $charlim = empty($this->wrapchars) ? 76 : $this->wrapchars;
Derek Allard2067d1a2008-11-13 22:59:24 +0000793 }
794
795 // Reduce multiple spaces
Andrey Andreev56454792012-05-17 14:32:19 +0300796 $str = preg_replace('| +|', ' ', $str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000797
798 // Standardize newlines
799 if (strpos($str, "\r") !== FALSE)
800 {
Andrey Andreevb71e06b2011-12-22 19:22:50 +0200801 $str = str_replace(array("\r\n", "\r"), "\n", $str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000802 }
803
804 // If the current word is surrounded by {unwrap} tags we'll
805 // strip the entire chunk and replace it with a marker.
806 $unwrap = array();
Andrey Andreev56454792012-05-17 14:32:19 +0300807 if (preg_match_all('|(\{unwrap\}.+?\{/unwrap\})|s', $str, $matches))
Derek Allard2067d1a2008-11-13 22:59:24 +0000808 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200809 for ($i = 0, $c = count($matches[0]); $i < $c; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +0000810 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200811 $unwrap[] = $matches[1][$i];
Andrey Andreev56454792012-05-17 14:32:19 +0300812 $str = str_replace($matches[1][$i], '{{unwrapped'.$i.'}}', $str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000813 }
814 }
815
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000816 // Use PHP's native public function to do the initial wordwrap.
Derek Allard2067d1a2008-11-13 22:59:24 +0000817 // We set the cut flag to FALSE so that any individual words that are
Andrey Andreev56454792012-05-17 14:32:19 +0300818 // too long get left alone. In the next step we'll deal with them.
Derek Allard2067d1a2008-11-13 22:59:24 +0000819 $str = wordwrap($str, $charlim, "\n", FALSE);
820
821 // Split the string into individual lines of text and cycle through them
Andrey Andreev56454792012-05-17 14:32:19 +0300822 $output = '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000823 foreach (explode("\n", $str) as $line)
824 {
825 // Is the line within the allowed character count?
826 // If so we'll join it to the output and continue
827 if (strlen($line) <= $charlim)
828 {
829 $output .= $line.$this->newline;
830 continue;
831 }
832
833 $temp = '';
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200834 do
Derek Allard2067d1a2008-11-13 22:59:24 +0000835 {
836 // If the over-length word is a URL we won't wrap it
Andrey Andreev56454792012-05-17 14:32:19 +0300837 if (preg_match('!\[url.+\]|://|wwww.!', $line))
Derek Allard2067d1a2008-11-13 22:59:24 +0000838 {
839 break;
840 }
841
842 // Trim the word down
843 $temp .= substr($line, 0, $charlim-1);
844 $line = substr($line, $charlim-1);
845 }
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200846 while (strlen($line) > $charlim);
Derek Allard2067d1a2008-11-13 22:59:24 +0000847
848 // If $temp contains data it means we had to split up an over-length
849 // word into smaller chunks so we'll add it back to our current line
Alex Bilbied261b1e2012-06-02 11:12:16 +0100850 if ($temp !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000851 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200852 $output .= $temp.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +0000853 }
854
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200855 $output .= $line.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +0000856 }
857
858 // Put our markers back
859 if (count($unwrap) > 0)
860 {
861 foreach ($unwrap as $key => $val)
862 {
Andrey Andreev56454792012-05-17 14:32:19 +0300863 $output = str_replace('{{unwrapped'.$key.'}}', $val, $output);
Derek Allard2067d1a2008-11-13 22:59:24 +0000864 }
865 }
866
867 return $output;
868 }
Barry Mienydd671972010-10-04 16:33:58 +0200869
Derek Allard2067d1a2008-11-13 22:59:24 +0000870 // --------------------------------------------------------------------
871
872 /**
873 * Build final headers
874 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000875 * @return string
876 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600877 protected function _build_headers()
Derek Allard2067d1a2008-11-13 22:59:24 +0000878 {
Mickey Wubfc1cad2012-05-31 22:28:40 -0700879 $this->set_header('X-Sender', $this->clean_email($this->_headers['From']));
880 $this->set_header('X-Mailer', $this->useragent);
881 $this->set_header('X-Priority', $this->_priorities[$this->priority - 1]);
882 $this->set_header('Message-ID', $this->_get_message_id());
883 $this->set_header('Mime-Version', '1.0');
Derek Allard2067d1a2008-11-13 22:59:24 +0000884 }
Barry Mienydd671972010-10-04 16:33:58 +0200885
Derek Allard2067d1a2008-11-13 22:59:24 +0000886 // --------------------------------------------------------------------
887
888 /**
889 * Write Headers as a string
890 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000891 * @return void
892 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600893 protected function _write_headers()
Derek Allard2067d1a2008-11-13 22:59:24 +0000894 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200895 if ($this->protocol === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +0000896 {
897 $this->_subject = $this->_headers['Subject'];
898 unset($this->_headers['Subject']);
899 }
900
901 reset($this->_headers);
Andrey Andreev56454792012-05-17 14:32:19 +0300902 $this->_header_str = '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000903
Pascal Kriete14287f32011-02-14 13:39:34 -0500904 foreach ($this->_headers as $key => $val)
Derek Allard2067d1a2008-11-13 22:59:24 +0000905 {
906 $val = trim($val);
907
Alex Bilbied261b1e2012-06-02 11:12:16 +0100908 if ($val !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000909 {
Andrey Andreev56454792012-05-17 14:32:19 +0300910 $this->_header_str .= $key.': '.$val.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +0000911 }
912 }
913
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200914 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +0000915 {
Derek Jones1d890882009-02-10 20:32:14 +0000916 $this->_header_str = rtrim($this->_header_str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000917 }
918 }
Barry Mienydd671972010-10-04 16:33:58 +0200919
Derek Allard2067d1a2008-11-13 22:59:24 +0000920 // --------------------------------------------------------------------
921
922 /**
923 * Build Final Body and attachments
924 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000925 * @return void
926 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600927 protected function _build_message()
Derek Allard2067d1a2008-11-13 22:59:24 +0000928 {
Andrey Andreev76f15c92012-03-01 13:05:07 +0200929 if ($this->wordwrap === TRUE && $this->mailtype !== 'html')
Derek Allard2067d1a2008-11-13 22:59:24 +0000930 {
931 $this->_body = $this->word_wrap($this->_body);
932 }
933
934 $this->_set_boundaries();
935 $this->_write_headers();
936
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200937 $hdr = ($this->_get_protocol() === 'mail') ? $this->newline : '';
Brandon Jones485d7412010-11-09 16:38:17 -0500938 $body = '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000939
940 switch ($this->_get_content_type())
941 {
942 case 'plain' :
943
Andrey Andreev56454792012-05-17 14:32:19 +0300944 $hdr .= 'Content-Type: text/plain; charset='.$this->charset.$this->newline
945 .'Content-Transfer-Encoding: '.$this->_get_encoding();
Derek Allard2067d1a2008-11-13 22:59:24 +0000946
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200947 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +0000948 {
949 $this->_header_str .= $hdr;
950 $this->_finalbody = $this->_body;
Derek Allard2067d1a2008-11-13 22:59:24 +0000951 }
Brandon Jones485d7412010-11-09 16:38:17 -0500952 else
953 {
954 $this->_finalbody = $hdr . $this->newline . $this->newline . $this->_body;
955 }
Eric Barnes6113f542010-12-29 13:36:12 -0500956
Derek Allard2067d1a2008-11-13 22:59:24 +0000957 return;
958
Derek Allard2067d1a2008-11-13 22:59:24 +0000959 case 'html' :
960
961 if ($this->send_multipart === FALSE)
962 {
Andrey Andreev56454792012-05-17 14:32:19 +0300963 $hdr .= 'Content-Type: text/html; charset='.$this->charset.$this->newline
964 .'Content-Transfer-Encoding: quoted-printable';
Derek Allard2067d1a2008-11-13 22:59:24 +0000965 }
966 else
967 {
Andrey Andreev56454792012-05-17 14:32:19 +0300968 $hdr .= 'Content-Type: multipart/alternative; boundary="'.$this->_alt_boundary.'"'.$this->newline.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +0000969
Andrey Andreev56454792012-05-17 14:32:19 +0300970 $body .= $this->_get_mime_message().$this->newline.$this->newline
971 .'--'.$this->_alt_boundary.$this->newline
Derek Allard2067d1a2008-11-13 22:59:24 +0000972
Andrey Andreev56454792012-05-17 14:32:19 +0300973 .'Content-Type: text/plain; charset='.$this->charset.$this->newline
974 .'Content-Transfer-Encoding: '.$this->_get_encoding().$this->newline.$this->newline
975 .$this->_get_alt_message().$this->newline.$this->newline.'--'.$this->_alt_boundary.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -0500976
Andrey Andreev56454792012-05-17 14:32:19 +0300977 .'Content-Type: text/html; charset='.$this->charset.$this->newline
978 .'Content-Transfer-Encoding: quoted-printable'.$this->newline.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +0000979 }
Eric Barnes6113f542010-12-29 13:36:12 -0500980
Andrey Andreev56454792012-05-17 14:32:19 +0300981 $this->_finalbody = $body.$this->_prep_quoted_printable($this->_body).$this->newline.$this->newline;
Eric Barnes6113f542010-12-29 13:36:12 -0500982
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200983 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +0000984 {
985 $this->_header_str .= $hdr;
Brandon Jones485d7412010-11-09 16:38:17 -0500986 }
987 else
988 {
Andrey Andreev56454792012-05-17 14:32:19 +0300989 $this->_finalbody = $hdr.$this->_finalbody;
Derek Allard2067d1a2008-11-13 22:59:24 +0000990 }
991
Derek Allard2067d1a2008-11-13 22:59:24 +0000992 if ($this->send_multipart !== FALSE)
993 {
Andrey Andreev56454792012-05-17 14:32:19 +0300994 $this->_finalbody .= '--'.$this->_alt_boundary.'--';
Derek Allard2067d1a2008-11-13 22:59:24 +0000995 }
996
Derek Allard2067d1a2008-11-13 22:59:24 +0000997 return;
998
Derek Allard2067d1a2008-11-13 22:59:24 +0000999 case 'plain-attach' :
1000
Andrey Andreev56454792012-05-17 14:32:19 +03001001 $hdr .= 'Content-Type: multipart/'.$this->multipart.'; boundary="'.$this->_atc_boundary.'"'.$this->newline.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001002
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001003 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +00001004 {
1005 $this->_header_str .= $hdr;
Eric Barnes6113f542010-12-29 13:36:12 -05001006 }
1007
Andrey Andreev56454792012-05-17 14:32:19 +03001008 $body .= $this->_get_mime_message().$this->newline.$this->newline
1009 .'--'.$this->_atc_boundary.$this->newline
Derek Allard2067d1a2008-11-13 22:59:24 +00001010
Andrey Andreev56454792012-05-17 14:32:19 +03001011 .'Content-Type: text/plain; charset='.$this->charset.$this->newline
1012 .'Content-Transfer-Encoding: '.$this->_get_encoding().$this->newline.$this->newline
Derek Allard2067d1a2008-11-13 22:59:24 +00001013
Andrey Andreev56454792012-05-17 14:32:19 +03001014 .$this->_body.$this->newline.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001015
1016 break;
1017 case 'html-attach' :
1018
Andrey Andreev56454792012-05-17 14:32:19 +03001019 $hdr .= 'Content-Type: multipart/'.$this->multipart.'; boundary="'.$this->_atc_boundary.'"'.$this->newline.$this->newline;
Eric Barnes6113f542010-12-29 13:36:12 -05001020
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001021 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +00001022 {
1023 $this->_header_str .= $hdr;
Derek Allard2067d1a2008-11-13 22:59:24 +00001024 }
1025
Andrey Andreev56454792012-05-17 14:32:19 +03001026 $body .= $this->_get_mime_message().$this->newline.$this->newline
1027 .'--'.$this->_atc_boundary.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001028
Andrey Andreev56454792012-05-17 14:32:19 +03001029 .'Content-Type: multipart/alternative; boundary="'.$this->_alt_boundary.'"'.$this->newline.$this->newline
1030 .'--'.$this->_alt_boundary.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001031
Andrey Andreev56454792012-05-17 14:32:19 +03001032 .'Content-Type: text/plain; charset='.$this->charset.$this->newline
1033 .'Content-Transfer-Encoding: '.$this->_get_encoding().$this->newline.$this->newline
1034 .$this->_get_alt_message().$this->newline.$this->newline.'--'.$this->_alt_boundary.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001035
Andrey Andreev56454792012-05-17 14:32:19 +03001036 .'Content-Type: text/html; charset='.$this->charset.$this->newline
1037 .'Content-Transfer-Encoding: quoted-printable'.$this->newline.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001038
Andrey Andreev56454792012-05-17 14:32:19 +03001039 .$this->_prep_quoted_printable($this->_body).$this->newline.$this->newline
1040 .'--'.$this->_alt_boundary.'--'.$this->newline.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001041
1042 break;
1043 }
1044
1045 $attachment = array();
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001046 for ($i = 0, $c = count($this->_attachments), $z = 0; $i < $c; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001047 {
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001048 $filename = $this->_attachments[$i]['name'][0];
1049 $basename = is_null($this->_attachments[$i]['name'][1])
1050 ? basename($filename) : $this->_attachments[$i]['name'][1];
1051 $ctype = $this->_attachments[$i]['type'];
Matteo Mattei5688d582012-03-13 19:29:29 +01001052 $file_content = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001053
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001054 if ($ctype === '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001055 {
Matteo Mattei5688d582012-03-13 19:29:29 +01001056 if ( ! file_exists($filename))
1057 {
1058 $this->_set_error_message('lang:email_attachment_missing', $filename);
1059 return FALSE;
1060 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001061
Matteo Mattei5688d582012-03-13 19:29:29 +01001062 $file = filesize($filename) +1;
1063
1064 if ( ! $fp = fopen($filename, FOPEN_READ))
1065 {
1066 $this->_set_error_message('lang:email_attachment_unreadable', $filename);
1067 return FALSE;
1068 }
1069
Matteo Matteic3b36f42012-03-26 10:27:17 +02001070 $ctype = $this->_mime_types(pathinfo($filename, PATHINFO_EXTENSION));
Matteo Mattei5688d582012-03-13 19:29:29 +01001071 $file_content = fread($fp, $file);
1072 fclose($fp);
1073 }
1074 else
1075 {
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001076 $file_content =& $this->_attachments[$i]['name'][0];
Matteo Mattei5688d582012-03-13 19:29:29 +01001077 }
Andrey Andreev56454792012-05-17 14:32:19 +03001078
1079 $attachment[$z++] = '--'.$this->_atc_boundary.$this->newline
1080 .'Content-type: '.$ctype.'; '
1081 .'name="'.$basename.'"'.$this->newline
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001082 .'Content-Disposition: '.$this->_attachments[$i]['disposition'].';'.$this->newline
Andrey Andreev56454792012-05-17 14:32:19 +03001083 .'Content-Transfer-Encoding: base64'.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001084
Matteo Mattei5688d582012-03-13 19:29:29 +01001085 $attachment[$z++] = chunk_split(base64_encode($file_content));
Derek Allard2067d1a2008-11-13 22:59:24 +00001086 }
1087
Andrey Andreev56454792012-05-17 14:32:19 +03001088 $body .= implode($this->newline, $attachment).$this->newline.'--'.$this->_atc_boundary.'--';
1089 $this->_finalbody = ($this->_get_protocol() === 'mail') ? $body : $hdr.$body;
Derek Allard2067d1a2008-11-13 22:59:24 +00001090 return;
1091 }
Barry Mienydd671972010-10-04 16:33:58 +02001092
Derek Allard2067d1a2008-11-13 22:59:24 +00001093 // --------------------------------------------------------------------
1094
1095 /**
1096 * Prep Quoted Printable
1097 *
1098 * Prepares string for Quoted-Printable Content-Transfer-Encoding
1099 * Refer to RFC 2045 http://www.ietf.org/rfc/rfc2045.txt
1100 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001101 * @param string
Derek Allard2067d1a2008-11-13 22:59:24 +00001102 * @return string
1103 */
Andrey Andreev683b34d2012-10-09 15:00:00 +03001104 protected function _prep_quoted_printable($str)
Derek Allard2067d1a2008-11-13 22:59:24 +00001105 {
Andrey Andreev00ea2a92012-10-18 14:59:29 +03001106 // We are intentionally wrapping so mail servers will encode characters
1107 // properly and MUAs will behave, so {unwrap} must go!
1108 $str = str_replace(array('{unwrap}', '{/unwrap}'), '', $str);
1109
Andrey Andreev683b34d2012-10-09 15:00:00 +03001110 // RFC 2045 specifies CRLF as "\r\n".
1111 // However, many developers choose to override that and violate
1112 // the RFC rules due to (apparently) a bug in MS Exchange,
1113 // which only works with "\n".
Andrey Andreev26f0cf92012-10-11 13:52:39 +03001114 if ($this->crlf === "\r\n")
Andrey Andreev683b34d2012-10-09 15:00:00 +03001115 {
Andrey Andreev26f0cf92012-10-11 13:52:39 +03001116 if (is_php('5.3'))
1117 {
1118 return quoted_printable_encode($str);
1119 }
1120 elseif (function_exists('imap_8bit'))
1121 {
1122 return imap_8bit($str);
1123 }
Andrey Andreev683b34d2012-10-09 15:00:00 +03001124 }
1125
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001126 // Reduce multiple spaces & remove nulls
Andrey Andreev56454792012-05-17 14:32:19 +03001127 $str = preg_replace(array('| +|', '/\x00+/'), array(' ', ''), $str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001128
1129 // Standardize newlines
1130 if (strpos($str, "\r") !== FALSE)
1131 {
1132 $str = str_replace(array("\r\n", "\r"), "\n", $str);
1133 }
1134
Derek Allard2067d1a2008-11-13 22:59:24 +00001135 $escape = '=';
1136 $output = '';
1137
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001138 foreach (explode("\n", $str) as $line)
Derek Allard2067d1a2008-11-13 22:59:24 +00001139 {
1140 $length = strlen($line);
1141 $temp = '';
1142
1143 // Loop through each character in the line to add soft-wrap
1144 // characters at the end of a line " =\r\n" and add the newly
1145 // processed line(s) to the output (see comment on $crlf class property)
1146 for ($i = 0; $i < $length; $i++)
1147 {
1148 // Grab the next character
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001149 $char = $line[$i];
Derek Allard2067d1a2008-11-13 22:59:24 +00001150 $ascii = ord($char);
1151
1152 // Convert spaces and tabs but only if it's the end of the line
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001153 if ($i === ($length - 1) && ($ascii === 32 OR $ascii === 9))
Derek Allard2067d1a2008-11-13 22:59:24 +00001154 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001155 $char = $escape.sprintf('%02s', dechex($ascii));
Derek Allard2067d1a2008-11-13 22:59:24 +00001156 }
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001157 elseif ($ascii === 61) // encode = signs
Derek Allard2067d1a2008-11-13 22:59:24 +00001158 {
Derek Jones37f4b9c2011-07-01 17:56:50 -05001159 $char = $escape.strtoupper(sprintf('%02s', dechex($ascii))); // =3D
Derek Allard2067d1a2008-11-13 22:59:24 +00001160 }
1161
1162 // If we're at the character limit, add the line to the output,
1163 // reset our temp variable, and keep on chuggin'
Andrey Andreeve8bc5f42012-10-10 11:13:59 +03001164 if ((strlen($temp) + strlen($char)) >= 76)
Derek Allard2067d1a2008-11-13 22:59:24 +00001165 {
1166 $output .= $temp.$escape.$this->crlf;
1167 $temp = '';
1168 }
1169
1170 // Add the character to our temporary line
1171 $temp .= $char;
1172 }
1173
1174 // Add our completed line to the output
1175 $output .= $temp.$this->crlf;
1176 }
1177
1178 // get rid of extra CRLF tacked onto the end
Andrey Andreev59c5b532012-03-01 14:09:51 +02001179 return substr($output, 0, strlen($this->crlf) * -1);
Derek Allard2067d1a2008-11-13 22:59:24 +00001180 }
1181
1182 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001183
Derek Allard2067d1a2008-11-13 22:59:24 +00001184 /**
1185 * Prep Q Encoding
1186 *
Andrey Andreev925dd902012-10-19 11:06:31 +03001187 * Performs "Q Encoding" on a string for use in email headers.
1188 * It's related but not identical to quoted-printable, so it has its
1189 * own method.
Derek Allard2067d1a2008-11-13 22:59:24 +00001190 *
Andrey Andreev081c9462012-03-01 12:58:11 +02001191 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +02001192 * @return string
Derek Allard2067d1a2008-11-13 22:59:24 +00001193 */
Andrey Andreev925dd902012-10-19 11:06:31 +03001194 protected function _prep_q_encoding($str)
Derek Allard2067d1a2008-11-13 22:59:24 +00001195 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001196 $str = str_replace(array("\r", "\n"), '', $str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001197
Andrey Andreev925dd902012-10-19 11:06:31 +03001198 if ($this->charset === 'UTF-8')
Derek Allard2067d1a2008-11-13 22:59:24 +00001199 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001200 if (MB_ENABLED === TRUE)
1201 {
1202 return mb_encode_mimeheader($str, $this->charset, 'Q', $this->crlf);
1203 }
1204 elseif (extension_loaded('iconv'))
1205 {
1206 $output = @iconv_mime_encode('', $str,
1207 array(
1208 'scheme' => 'Q',
1209 'line-length' => 76,
1210 'input-charset' => $this->charset,
1211 'output-charset' => $this->charset,
1212 'line-break-chars' => $this->crlf
1213 )
1214 );
1215
1216 // There are reports that iconv_mime_encode() might fail and return FALSE
1217 if ($output !== FALSE)
1218 {
1219 // iconv_mime_encode() will always put a header field name.
1220 // We've passed it an empty one, but it still prepends our
1221 // encoded string with ': ', so we need to strip it.
1222 return substr($output, 2);
1223 }
1224
1225 $chars = iconv_strlen($str, 'UTF-8');
1226 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001227 }
1228
Andrey Andreev925dd902012-10-19 11:06:31 +03001229 // We might already have this set for UTF-8
1230 isset($chars) OR $chars = strlen($str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001231
Andrey Andreev925dd902012-10-19 11:06:31 +03001232 $output = '=?'.$this->charset.'?Q?';
1233 for ($i = 0, $length = strlen($output), $iconv = extension_loaded('iconv'); $i < $chars; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001234 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001235 $chr = ($this->charset === 'UTF-8' && $iconv === TRUE)
1236 ? '='.implode('=', str_split(strtoupper(bin2hex(iconv_substr($str, $i, 1, $this->charset))), 2))
1237 : '='.strtoupper(bin2hex($str[$i]));
Derek Allard2067d1a2008-11-13 22:59:24 +00001238
Andrey Andreev925dd902012-10-19 11:06:31 +03001239 // RFC 2045 sets a limit of 76 characters per line.
1240 // We'll append ?= to the end of each line though.
1241 if ($length + ($l = strlen($chr)) > 74)
Derek Allard2067d1a2008-11-13 22:59:24 +00001242 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001243 $output .= '?='.$this->crlf // EOL
1244 .' =?'.$this->charset.'?Q?'.$chr; // New line
1245 $length = 6 + strlen($this->charset) + $l; // Reset the length for the new line
Derek Allard2067d1a2008-11-13 22:59:24 +00001246 }
Andrey Andreev925dd902012-10-19 11:06:31 +03001247 else
Derek Allard2067d1a2008-11-13 22:59:24 +00001248 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001249 $output .= $chr;
1250 $length += $l;
Derek Allard2067d1a2008-11-13 22:59:24 +00001251 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001252 }
1253
Andrey Andreev925dd902012-10-19 11:06:31 +03001254 // End the header
1255 return $output.'?=';
Derek Allard2067d1a2008-11-13 22:59:24 +00001256 }
1257
1258 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001259
Derek Allard2067d1a2008-11-13 22:59:24 +00001260 /**
1261 * Send Email
1262 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001263 * @param bool $auto_clear = TRUE
Derek Allard2067d1a2008-11-13 22:59:24 +00001264 * @return bool
1265 */
Alex Bilbied7bc8d02012-07-30 09:46:20 +01001266 public function send($auto_clear = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001267 {
Alex Bilbied261b1e2012-06-02 11:12:16 +01001268 if ($this->_replyto_flag === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001269 {
1270 $this->reply_to($this->_headers['From']);
1271 }
1272
Andrey Andreev76f15c92012-03-01 13:05:07 +02001273 if ( ! isset($this->_recipients) && ! isset($this->_headers['To'])
1274 && ! isset($this->_bcc_array) && ! isset($this->_headers['Bcc'])
1275 && ! isset($this->_headers['Cc']))
Derek Allard2067d1a2008-11-13 22:59:24 +00001276 {
patworkb0707982011-04-08 15:10:05 +02001277 $this->_set_error_message('lang:email_no_recipients');
Derek Allard2067d1a2008-11-13 22:59:24 +00001278 return FALSE;
1279 }
1280
1281 $this->_build_headers();
1282
Andrey Andreev76f15c92012-03-01 13:05:07 +02001283 if ($this->bcc_batch_mode && count($this->_bcc_array) > $this->bcc_batch_size)
Derek Allard2067d1a2008-11-13 22:59:24 +00001284 {
Alex Bilbieb901e732012-07-30 09:44:57 +01001285 $result = $this->batch_bcc_send();
Alex Bilbied7bc8d02012-07-30 09:46:20 +01001286
Alex Bilbiea87aab32012-07-30 09:50:37 +01001287 if ($result && $auto_clear)
Alex Bilbied7bc8d02012-07-30 09:46:20 +01001288 {
1289 $this->clear();
1290 }
1291
Alex Bilbieb901e732012-07-30 09:44:57 +01001292 return $result;
Derek Allard2067d1a2008-11-13 22:59:24 +00001293 }
1294
1295 $this->_build_message();
Alex Bilbieb901e732012-07-30 09:44:57 +01001296 $result = $this->_spool_email();
Andrey Andreevbdb99992012-07-30 17:38:05 +03001297
Alex Bilbiea87aab32012-07-30 09:50:37 +01001298 if ($result && $auto_clear)
Alex Bilbied7bc8d02012-07-30 09:46:20 +01001299 {
1300 $this->clear();
1301 }
Alex Bilbiea87aab32012-07-30 09:50:37 +01001302
Alex Bilbieb901e732012-07-30 09:44:57 +01001303 return $result;
Derek Allard2067d1a2008-11-13 22:59:24 +00001304 }
Barry Mienydd671972010-10-04 16:33:58 +02001305
Derek Allard2067d1a2008-11-13 22:59:24 +00001306 // --------------------------------------------------------------------
1307
1308 /**
Andrey Andreev081c9462012-03-01 12:58:11 +02001309 * Batch Bcc Send. Sends groups of BCCs in batches
Derek Allard2067d1a2008-11-13 22:59:24 +00001310 *
Andrey Andreev081c9462012-03-01 12:58:11 +02001311 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +00001312 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +00001313 public function batch_bcc_send()
Derek Allard2067d1a2008-11-13 22:59:24 +00001314 {
Andrey Andreev59c5b532012-03-01 14:09:51 +02001315 $float = $this->bcc_batch_size - 1;
1316 $set = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001317 $chunk = array();
1318
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001319 for ($i = 0, $c = count($this->_bcc_array); $i < $c; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001320 {
1321 if (isset($this->_bcc_array[$i]))
1322 {
Andrey Andreev59c5b532012-03-01 14:09:51 +02001323 $set .= ', '.$this->_bcc_array[$i];
Derek Allard2067d1a2008-11-13 22:59:24 +00001324 }
1325
Alex Bilbied261b1e2012-06-02 11:12:16 +01001326 if ($i === $float)
Derek Allard2067d1a2008-11-13 22:59:24 +00001327 {
1328 $chunk[] = substr($set, 1);
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001329 $float += $this->bcc_batch_size;
Andrey Andreev59c5b532012-03-01 14:09:51 +02001330 $set = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001331 }
1332
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001333 if ($i === $c-1)
Derek Allard2067d1a2008-11-13 22:59:24 +00001334 {
1335 $chunk[] = substr($set, 1);
1336 }
1337 }
1338
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001339 for ($i = 0, $c = count($chunk); $i < $c; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001340 {
1341 unset($this->_headers['Bcc']);
Derek Allard2067d1a2008-11-13 22:59:24 +00001342
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001343 $bcc = $this->clean_email($this->_str_to_array($chunk[$i]));
Derek Allard2067d1a2008-11-13 22:59:24 +00001344
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001345 if ($this->protocol !== 'smtp')
Derek Allard2067d1a2008-11-13 22:59:24 +00001346 {
Mickey Wubfc1cad2012-05-31 22:28:40 -07001347 $this->set_header('Bcc', implode(', ', $bcc));
Derek Allard2067d1a2008-11-13 22:59:24 +00001348 }
1349 else
1350 {
1351 $this->_bcc_array = $bcc;
1352 }
1353
1354 $this->_build_message();
1355 $this->_spool_email();
1356 }
1357 }
Barry Mienydd671972010-10-04 16:33:58 +02001358
Derek Allard2067d1a2008-11-13 22:59:24 +00001359 // --------------------------------------------------------------------
1360
1361 /**
1362 * Unwrap special elements
1363 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001364 * @return void
1365 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001366 protected function _unwrap_specials()
Derek Allard2067d1a2008-11-13 22:59:24 +00001367 {
Andrey Andreev56454792012-05-17 14:32:19 +03001368 $this->_finalbody = preg_replace_callback('/\{unwrap\}(.*?)\{\/unwrap\}/si', array($this, '_remove_nl_callback'), $this->_finalbody);
Derek Allard2067d1a2008-11-13 22:59:24 +00001369 }
Barry Mienydd671972010-10-04 16:33:58 +02001370
Derek Allard2067d1a2008-11-13 22:59:24 +00001371 // --------------------------------------------------------------------
1372
1373 /**
1374 * Strip line-breaks via callback
1375 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001376 * @param string $matches
Derek Allard2067d1a2008-11-13 22:59:24 +00001377 * @return string
1378 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001379 protected function _remove_nl_callback($matches)
Derek Allard2067d1a2008-11-13 22:59:24 +00001380 {
1381 if (strpos($matches[1], "\r") !== FALSE OR strpos($matches[1], "\n") !== FALSE)
1382 {
1383 $matches[1] = str_replace(array("\r\n", "\r", "\n"), '', $matches[1]);
1384 }
1385
1386 return $matches[1];
1387 }
Barry Mienydd671972010-10-04 16:33:58 +02001388
Derek Allard2067d1a2008-11-13 22:59:24 +00001389 // --------------------------------------------------------------------
1390
1391 /**
1392 * Spool mail to the mail server
1393 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001394 * @return bool
1395 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001396 protected function _spool_email()
Derek Allard2067d1a2008-11-13 22:59:24 +00001397 {
1398 $this->_unwrap_specials();
1399
Andrey Andreev56454792012-05-17 14:32:19 +03001400 $method = '_send_with_'.$this->_get_protocol();
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001401 if ( ! $this->$method())
Derek Allard2067d1a2008-11-13 22:59:24 +00001402 {
Andrey Andreev56454792012-05-17 14:32:19 +03001403 $this->_set_error_message('lang:email_send_failure_'.($this->_get_protocol() === 'mail' ? 'phpmail' : $this->_get_protocol()));
Diogo Osório7fcc7bd2012-03-02 16:54:52 +00001404 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001405 }
1406
patworkb0707982011-04-08 15:10:05 +02001407 $this->_set_error_message('lang:email_sent', $this->_get_protocol());
Derek Allard2067d1a2008-11-13 22:59:24 +00001408 return TRUE;
1409 }
Barry Mienydd671972010-10-04 16:33:58 +02001410
Derek Allard2067d1a2008-11-13 22:59:24 +00001411 // --------------------------------------------------------------------
1412
1413 /**
1414 * Send using mail()
1415 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001416 * @return bool
1417 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001418 protected function _send_with_mail()
Derek Allard2067d1a2008-11-13 22:59:24 +00001419 {
Andrey Andreev8a7078b2012-10-17 10:52:49 +03001420 if (is_array($this->_recipients))
1421 {
1422 $this->_recipients = implode(', ', $this->_recipients);
1423 }
1424
Alex Bilbied261b1e2012-06-02 11:12:16 +01001425 if ($this->_safe_mode === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001426 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001427 return mail($this->_recipients, $this->_subject, $this->_finalbody, $this->_header_str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001428 }
1429 else
1430 {
1431 // most documentation of sendmail using the "-f" flag lacks a space after it, however
1432 // we've encountered servers that seem to require it to be in place.
Melounek58dfc082012-06-29 08:43:47 +02001433 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 +00001434 }
1435 }
Barry Mienydd671972010-10-04 16:33:58 +02001436
Derek Allard2067d1a2008-11-13 22:59:24 +00001437 // --------------------------------------------------------------------
1438
1439 /**
1440 * Send using Sendmail
1441 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001442 * @return bool
1443 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001444 protected function _send_with_sendmail()
Derek Allard2067d1a2008-11-13 22:59:24 +00001445 {
Melounek58dfc082012-06-29 08:43:47 +02001446 $fp = @popen($this->mailpath.' -oi -f '.$this->clean_email($this->_headers['From']).' -t'.' -r '.$this->clean_email($this->_headers['Return-Path']), 'w');
Derek Allard2067d1a2008-11-13 22:59:24 +00001447
Derek Jones4cefaa42009-04-29 19:13:56 +00001448 if ($fp === FALSE OR $fp === NULL)
1449 {
1450 // server probably has popen disabled, so nothing we can do to get a verbose error.
1451 return FALSE;
1452 }
Derek Jones71141ce2010-03-02 16:41:20 -06001453
Derek Jonesc630bcf2008-11-17 21:09:45 +00001454 fputs($fp, $this->_header_str);
1455 fputs($fp, $this->_finalbody);
1456
Barry Mienydd671972010-10-04 16:33:58 +02001457 $status = pclose($fp);
Eric Barnes6113f542010-12-29 13:36:12 -05001458
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001459 if ($status !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001460 {
patworkb0707982011-04-08 15:10:05 +02001461 $this->_set_error_message('lang:email_exit_status', $status);
1462 $this->_set_error_message('lang:email_no_socket');
Derek Allard2067d1a2008-11-13 22:59:24 +00001463 return FALSE;
1464 }
1465
Derek Allard2067d1a2008-11-13 22:59:24 +00001466 return TRUE;
1467 }
Barry Mienydd671972010-10-04 16:33:58 +02001468
Derek Allard2067d1a2008-11-13 22:59:24 +00001469 // --------------------------------------------------------------------
1470
1471 /**
1472 * Send using SMTP
1473 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001474 * @return bool
1475 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001476 protected function _send_with_smtp()
Derek Allard2067d1a2008-11-13 22:59:24 +00001477 {
Alex Bilbied261b1e2012-06-02 11:12:16 +01001478 if ($this->smtp_host === '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001479 {
patworkb0707982011-04-08 15:10:05 +02001480 $this->_set_error_message('lang:email_no_hostname');
Derek Allard2067d1a2008-11-13 22:59:24 +00001481 return FALSE;
1482 }
1483
Diogo Osório593f7982012-03-02 18:04:17 +00001484 if ( ! $this->_smtp_connect() OR ! $this->_smtp_authenticate())
Diogo Osório7fcc7bd2012-03-02 16:54:52 +00001485 {
1486 return FALSE;
1487 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001488
1489 $this->_send_command('from', $this->clean_email($this->_headers['From']));
1490
Pascal Kriete14287f32011-02-14 13:39:34 -05001491 foreach ($this->_recipients as $val)
Derek Allard2067d1a2008-11-13 22:59:24 +00001492 {
1493 $this->_send_command('to', $val);
1494 }
1495
1496 if (count($this->_cc_array) > 0)
1497 {
Pascal Kriete14287f32011-02-14 13:39:34 -05001498 foreach ($this->_cc_array as $val)
Derek Allard2067d1a2008-11-13 22:59:24 +00001499 {
Alex Bilbied261b1e2012-06-02 11:12:16 +01001500 if ($val !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001501 {
1502 $this->_send_command('to', $val);
1503 }
1504 }
1505 }
1506
1507 if (count($this->_bcc_array) > 0)
1508 {
Pascal Kriete14287f32011-02-14 13:39:34 -05001509 foreach ($this->_bcc_array as $val)
Derek Allard2067d1a2008-11-13 22:59:24 +00001510 {
Alex Bilbied261b1e2012-06-02 11:12:16 +01001511 if ($val !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001512 {
1513 $this->_send_command('to', $val);
1514 }
1515 }
1516 }
1517
1518 $this->_send_command('data');
1519
1520 // perform dot transformation on any lines that begin with a dot
Andrey Andreev56454792012-05-17 14:32:19 +03001521 $this->_send_data($this->_header_str.preg_replace('/^\./m', '..$1', $this->_finalbody));
Derek Allard2067d1a2008-11-13 22:59:24 +00001522
1523 $this->_send_data('.');
1524
1525 $reply = $this->_get_smtp_data();
1526
1527 $this->_set_error_message($reply);
1528
Andrey Andreev3dad2e72012-06-14 15:10:56 +03001529 if (strpos($reply, '250') !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001530 {
patworkb0707982011-04-08 15:10:05 +02001531 $this->_set_error_message('lang:email_smtp_error', $reply);
Derek Allard2067d1a2008-11-13 22:59:24 +00001532 return FALSE;
1533 }
1534
1535 $this->_send_command('quit');
1536 return TRUE;
1537 }
Barry Mienydd671972010-10-04 16:33:58 +02001538
Derek Allard2067d1a2008-11-13 22:59:24 +00001539 // --------------------------------------------------------------------
1540
1541 /**
1542 * SMTP Connect
1543 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001544 * @return string
1545 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001546 protected function _smtp_connect()
Derek Allard2067d1a2008-11-13 22:59:24 +00001547 {
Alex Bilbied261b1e2012-06-02 11:12:16 +01001548 $ssl = ($this->smtp_crypto === 'ssl') ? 'ssl://' : NULL;
Radu Potop4c589ae2011-09-29 10:19:55 +03001549
Radu Potopbbf04b02011-09-28 13:57:51 +03001550 $this->_smtp_connect = fsockopen($ssl.$this->smtp_host,
Andrey Andreev56454792012-05-17 14:32:19 +03001551 $this->smtp_port,
1552 $errno,
1553 $errstr,
1554 $this->smtp_timeout);
Derek Allard2067d1a2008-11-13 22:59:24 +00001555
Pascal Kriete14287f32011-02-14 13:39:34 -05001556 if ( ! is_resource($this->_smtp_connect))
Derek Allard2067d1a2008-11-13 22:59:24 +00001557 {
Andrey Andreev56454792012-05-17 14:32:19 +03001558 $this->_set_error_message('lang:email_smtp_error', $errno.' '.$errstr);
Derek Allard2067d1a2008-11-13 22:59:24 +00001559 return FALSE;
1560 }
1561
1562 $this->_set_error_message($this->_get_smtp_data());
Radu Potopbbf04b02011-09-28 13:57:51 +03001563
Alex Bilbied261b1e2012-06-02 11:12:16 +01001564 if ($this->smtp_crypto === 'tls')
Radu Potopbbf04b02011-09-28 13:57:51 +03001565 {
1566 $this->_send_command('hello');
1567 $this->_send_command('starttls');
Phil Sturgeonc00a5a02011-11-22 15:25:32 +00001568
Radu Potop4c589ae2011-09-29 10:19:55 +03001569 $crypto = stream_socket_enable_crypto($this->_smtp_connect, TRUE, STREAM_CRYPTO_METHOD_TLS_CLIENT);
Radu Potop4c589ae2011-09-29 10:19:55 +03001570
Sean Fishere862ddd2011-10-26 22:45:00 -03001571 if ($crypto !== TRUE)
1572 {
1573 $this->_set_error_message('lang:email_smtp_error', $this->_get_smtp_data());
1574 return FALSE;
1575 }
Radu Potopbbf04b02011-09-28 13:57:51 +03001576 }
1577
Derek Allard2067d1a2008-11-13 22:59:24 +00001578 return $this->_send_command('hello');
1579 }
Barry Mienydd671972010-10-04 16:33:58 +02001580
Derek Allard2067d1a2008-11-13 22:59:24 +00001581 // --------------------------------------------------------------------
1582
1583 /**
1584 * Send SMTP command
1585 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001586 * @param string
1587 * @param string
1588 * @return string
1589 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001590 protected function _send_command($cmd, $data = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001591 {
1592 switch ($cmd)
1593 {
1594 case 'hello' :
1595
Andrey Andreev56454792012-05-17 14:32:19 +03001596 if ($this->_smtp_auth OR $this->_get_encoding() === '8bit')
1597 {
1598 $this->_send_data('EHLO '.$this->_get_hostname());
1599 }
1600 else
1601 {
1602 $this->_send_data('HELO '.$this->_get_hostname());
1603 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001604
1605 $resp = 250;
1606 break;
Radu Potopbbf04b02011-09-28 13:57:51 +03001607 case 'starttls' :
1608
1609 $this->_send_data('STARTTLS');
Radu Potopbbf04b02011-09-28 13:57:51 +03001610 $resp = 220;
1611 break;
Derek Allard2067d1a2008-11-13 22:59:24 +00001612 case 'from' :
1613
1614 $this->_send_data('MAIL FROM:<'.$data.'>');
Derek Allard2067d1a2008-11-13 22:59:24 +00001615 $resp = 250;
1616 break;
Andrey Andreev56454792012-05-17 14:32:19 +03001617 case 'to' :
1618
leandronf7686c122012-03-22 08:07:31 -03001619 if ($this->dsn)
1620 {
leandronfb4552942012-03-21 23:54:26 -03001621 $this->_send_data('RCPT TO:<'.$data.'> NOTIFY=SUCCESS,DELAY,FAILURE ORCPT=rfc822;'.$data);
leandronf7686c122012-03-22 08:07:31 -03001622 }
leandronfb4552942012-03-21 23:54:26 -03001623 else
leandronf7686c122012-03-22 08:07:31 -03001624 {
leandronfb4552942012-03-21 23:54:26 -03001625 $this->_send_data('RCPT TO:<'.$data.'>');
leandronf7686c122012-03-22 08:07:31 -03001626 }
Andrey Andreev56454792012-05-17 14:32:19 +03001627
Derek Allard2067d1a2008-11-13 22:59:24 +00001628 $resp = 250;
1629 break;
1630 case 'data' :
1631
1632 $this->_send_data('DATA');
Derek Allard2067d1a2008-11-13 22:59:24 +00001633 $resp = 354;
1634 break;
1635 case 'quit' :
1636
1637 $this->_send_data('QUIT');
Derek Allard2067d1a2008-11-13 22:59:24 +00001638 $resp = 221;
1639 break;
1640 }
1641
1642 $reply = $this->_get_smtp_data();
1643
Andrey Andreev56454792012-05-17 14:32:19 +03001644 $this->_debug_msg[] = '<pre>'.$cmd.': '.$reply.'</pre>';
Derek Allard2067d1a2008-11-13 22:59:24 +00001645
Andrey Andreevba261762012-06-11 14:11:35 +03001646 if ( (int) substr($reply, 0, 3) !== $resp)
Derek Allard2067d1a2008-11-13 22:59:24 +00001647 {
patworkb0707982011-04-08 15:10:05 +02001648 $this->_set_error_message('lang:email_smtp_error', $reply);
Derek Allard2067d1a2008-11-13 22:59:24 +00001649 return FALSE;
1650 }
1651
Alex Bilbied261b1e2012-06-02 11:12:16 +01001652 if ($cmd === 'quit')
Derek Allard2067d1a2008-11-13 22:59:24 +00001653 {
1654 fclose($this->_smtp_connect);
1655 }
1656
1657 return TRUE;
1658 }
Barry Mienydd671972010-10-04 16:33:58 +02001659
Derek Allard2067d1a2008-11-13 22:59:24 +00001660 // --------------------------------------------------------------------
1661
1662 /**
vkeranov7e4356b2012-10-27 18:41:00 +03001663 * SMTP Authenticate
Derek Allard2067d1a2008-11-13 22:59:24 +00001664 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001665 * @return bool
1666 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001667 protected function _smtp_authenticate()
Derek Allard2067d1a2008-11-13 22:59:24 +00001668 {
1669 if ( ! $this->_smtp_auth)
1670 {
1671 return TRUE;
1672 }
1673
Alex Bilbied261b1e2012-06-02 11:12:16 +01001674 if ($this->smtp_user === '' && $this->smtp_pass === '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001675 {
patworkb0707982011-04-08 15:10:05 +02001676 $this->_set_error_message('lang:email_no_smtp_unpw');
Derek Allard2067d1a2008-11-13 22:59:24 +00001677 return FALSE;
1678 }
1679
1680 $this->_send_data('AUTH LOGIN');
1681
1682 $reply = $this->_get_smtp_data();
1683
Andrey Andreev3dad2e72012-06-14 15:10:56 +03001684 if (strpos($reply, '334') !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001685 {
patworkb0707982011-04-08 15:10:05 +02001686 $this->_set_error_message('lang:email_failed_smtp_login', $reply);
Derek Allard2067d1a2008-11-13 22:59:24 +00001687 return FALSE;
1688 }
1689
1690 $this->_send_data(base64_encode($this->smtp_user));
1691
1692 $reply = $this->_get_smtp_data();
1693
Andrey Andreev3dad2e72012-06-14 15:10:56 +03001694 if (strpos($reply, '334') !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001695 {
patworkb0707982011-04-08 15:10:05 +02001696 $this->_set_error_message('lang:email_smtp_auth_un', $reply);
Derek Allard2067d1a2008-11-13 22:59:24 +00001697 return FALSE;
1698 }
1699
1700 $this->_send_data(base64_encode($this->smtp_pass));
1701
1702 $reply = $this->_get_smtp_data();
1703
Andrey Andreev3dad2e72012-06-14 15:10:56 +03001704 if (strpos($reply, '235') !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001705 {
patworkb0707982011-04-08 15:10:05 +02001706 $this->_set_error_message('lang:email_smtp_auth_pw', $reply);
Derek Allard2067d1a2008-11-13 22:59:24 +00001707 return FALSE;
1708 }
1709
1710 return TRUE;
1711 }
Barry Mienydd671972010-10-04 16:33:58 +02001712
Derek Allard2067d1a2008-11-13 22:59:24 +00001713 // --------------------------------------------------------------------
1714
1715 /**
1716 * Send SMTP data
1717 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001718 * @param string $data
Derek Allard2067d1a2008-11-13 22:59:24 +00001719 * @return bool
1720 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001721 protected function _send_data($data)
Derek Allard2067d1a2008-11-13 22:59:24 +00001722 {
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001723 if ( ! fwrite($this->_smtp_connect, $data.$this->newline))
Derek Allard2067d1a2008-11-13 22:59:24 +00001724 {
patworkb0707982011-04-08 15:10:05 +02001725 $this->_set_error_message('lang:email_smtp_data_failure', $data);
Derek Allard2067d1a2008-11-13 22:59:24 +00001726 return FALSE;
1727 }
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001728
1729 return TRUE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001730 }
Barry Mienydd671972010-10-04 16:33:58 +02001731
Derek Allard2067d1a2008-11-13 22:59:24 +00001732 // --------------------------------------------------------------------
1733
1734 /**
1735 * Get SMTP data
1736 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001737 * @return string
1738 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001739 protected function _get_smtp_data()
Derek Allard2067d1a2008-11-13 22:59:24 +00001740 {
Andrey Andreev56454792012-05-17 14:32:19 +03001741 $data = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001742
1743 while ($str = fgets($this->_smtp_connect, 512))
1744 {
1745 $data .= $str;
1746
Alex Bilbied261b1e2012-06-02 11:12:16 +01001747 if ($str[3] === ' ')
Derek Allard2067d1a2008-11-13 22:59:24 +00001748 {
1749 break;
1750 }
1751 }
1752
1753 return $data;
1754 }
Barry Mienydd671972010-10-04 16:33:58 +02001755
Derek Allard2067d1a2008-11-13 22:59:24 +00001756 // --------------------------------------------------------------------
1757
1758 /**
1759 * Get Hostname
1760 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001761 * @return string
1762 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001763 protected function _get_hostname()
Derek Allard2067d1a2008-11-13 22:59:24 +00001764 {
Andrey Andreev59c5b532012-03-01 14:09:51 +02001765 return isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : 'localhost.localdomain';
Derek Allard2067d1a2008-11-13 22:59:24 +00001766 }
Barry Mienydd671972010-10-04 16:33:58 +02001767
Derek Allard2067d1a2008-11-13 22:59:24 +00001768 // --------------------------------------------------------------------
1769
1770 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001771 * Get Debug Message
1772 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001773 * @return string
1774 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +00001775 public function print_debugger()
Derek Allard2067d1a2008-11-13 22:59:24 +00001776 {
1777 $msg = '';
1778
1779 if (count($this->_debug_msg) > 0)
1780 {
1781 foreach ($this->_debug_msg as $val)
1782 {
1783 $msg .= $val;
1784 }
1785 }
1786
Andrey Andreev59c5b532012-03-01 14:09:51 +02001787 return $msg.'<pre>'.$this->_header_str."\n".htmlspecialchars($this->_subject)."\n".htmlspecialchars($this->_finalbody).'</pre>';
Derek Allard2067d1a2008-11-13 22:59:24 +00001788 }
Barry Mienydd671972010-10-04 16:33:58 +02001789
Derek Allard2067d1a2008-11-13 22:59:24 +00001790 // --------------------------------------------------------------------
1791
1792 /**
1793 * Set Message
1794 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001795 * @param string $msg
1796 * @param string $val = ''
Andrey Andreev081c9462012-03-01 12:58:11 +02001797 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +00001798 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001799 protected function _set_error_message($msg, $val = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001800 {
1801 $CI =& get_instance();
1802 $CI->lang->load('email');
1803
Andrey Andreev76f15c92012-03-01 13:05:07 +02001804 if (substr($msg, 0, 5) !== 'lang:' OR FALSE === ($line = $CI->lang->line(substr($msg, 5))))
Derek Allard2067d1a2008-11-13 22:59:24 +00001805 {
Andrey Andreev56454792012-05-17 14:32:19 +03001806 $this->_debug_msg[] = str_replace('%s', $val, $msg).'<br />';
Derek Allard2067d1a2008-11-13 22:59:24 +00001807 }
1808 else
1809 {
Andrey Andreev56454792012-05-17 14:32:19 +03001810 $this->_debug_msg[] = str_replace('%s', $val, $line).'<br />';
Derek Allard2067d1a2008-11-13 22:59:24 +00001811 }
1812 }
Barry Mienydd671972010-10-04 16:33:58 +02001813
Derek Allard2067d1a2008-11-13 22:59:24 +00001814 // --------------------------------------------------------------------
1815
1816 /**
1817 * Mime Types
1818 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001819 * @param string
1820 * @return string
1821 */
Andrey Andreev59c5b532012-03-01 14:09:51 +02001822 protected function _mime_types($ext = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001823 {
Andrey Andreev6ef498b2012-06-05 22:01:58 +03001824 static $mimes;
Derek Allard2067d1a2008-11-13 22:59:24 +00001825
Andrey Andreev6ef498b2012-06-05 22:01:58 +03001826 $ext = strtolower($ext);
1827
1828 if ( ! is_array($mimes))
1829 {
1830 $mimes =& get_mimes();
1831 }
1832
1833 if (isset($mimes[$ext]))
1834 {
1835 return is_array($mimes[$ext])
1836 ? current($mimes[$ext])
1837 : $mimes[$ext];
1838 }
1839
1840 return 'application/x-unknown-content-type';
Derek Allard2067d1a2008-11-13 22:59:24 +00001841 }
1842
1843}
Derek Allard2067d1a2008-11-13 22:59:24 +00001844
1845/* End of file Email.php */
Andrey Andreev50988592012-10-08 20:46:04 +03001846/* Location: ./system/libraries/Email.php */