blob: 795db2043862d3200f65baa37d488f7387d763ae [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.
50 public $wordwrap = TRUE; // TRUE/FALSE Turns word-wrap on/off
51 public $wrapchars = 76; // Number of characters to wrap at.
52 public $mailtype = 'text'; // text/html Defines email formatting
53 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
56 public $validate = FALSE; // TRUE/FALSE. Enables email validation
57 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)
59 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
Andrey Andreev1bd3d882011-12-22 15:38:20 +020063 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();
84 protected $_attach_name = array();
85 protected $_attach_type = array();
86 protected $_attach_disp = array();
87 protected $_protocols = array('mail', 'sendmail', 'smtp');
88 protected $_base_charsets = array('us-ascii', 'iso-2022-'); // 7-bit charsets (excluding language suffix)
89 protected $_bit_depths = array('7bit', '8bit');
90 protected $_priorities = array('1 (Highest)', '2 (High)', '3 (Normal)', '4 (Low)', '5 (Lowest)');
Derek Allard2067d1a2008-11-13 22:59:24 +000091
Derek Allard2067d1a2008-11-13 22:59:24 +000092 /**
93 * Constructor - Sets Email Preferences
94 *
95 * The constructor can be passed an array of config values
Andrey Andreev56454792012-05-17 14:32:19 +030096 *
97 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +000098 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +000099 public function __construct($config = array())
Derek Allard2067d1a2008-11-13 22:59:24 +0000100 {
Andrey Andreev925dd902012-10-19 11:06:31 +0300101 $this->charset = config_item('charset');
Andrey Andreev9f44c212012-10-10 16:07:17 +0300102
Derek Allard2067d1a2008-11-13 22:59:24 +0000103 if (count($config) > 0)
104 {
105 $this->initialize($config);
106 }
107 else
108 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100109 $this->_smtp_auth = ! ($this->smtp_user === '' && $this->smtp_pass === '');
Andrey Andreev59c5b532012-03-01 14:09:51 +0200110 $this->_safe_mode = (bool) @ini_get('safe_mode');
Derek Allard2067d1a2008-11-13 22:59:24 +0000111 }
112
Andrey Andreev925dd902012-10-19 11:06:31 +0300113 $this->charset = strtoupper($this->charset);
114
Andrey Andreev59c5b532012-03-01 14:09:51 +0200115 log_message('debug', 'Email Class Initialized');
Derek Allard2067d1a2008-11-13 22:59:24 +0000116 }
117
118 // --------------------------------------------------------------------
119
120 /**
121 * Initialize preferences
122 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000123 * @param array
124 * @return void
125 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000126 public function initialize($config = array())
Derek Allard2067d1a2008-11-13 22:59:24 +0000127 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000128 foreach ($config as $key => $val)
129 {
130 if (isset($this->$key))
131 {
132 $method = 'set_'.$key;
133
134 if (method_exists($this, $method))
135 {
136 $this->$method($val);
137 }
138 else
139 {
140 $this->$key = $val;
141 }
142 }
143 }
Eric Barnes6113f542010-12-29 13:36:12 -0500144 $this->clear();
Derek Allard2067d1a2008-11-13 22:59:24 +0000145
Alex Bilbied261b1e2012-06-02 11:12:16 +0100146 $this->_smtp_auth = ! ($this->smtp_user === '' && $this->smtp_pass === '');
Andrey Andreev59c5b532012-03-01 14:09:51 +0200147 $this->_safe_mode = (bool) @ini_get('safe_mode');
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000148
149 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000150 }
Barry Mienydd671972010-10-04 16:33:58 +0200151
Derek Allard2067d1a2008-11-13 22:59:24 +0000152 // --------------------------------------------------------------------
153
154 /**
155 * Initialize the Email Data
156 *
Bo-Yi Wu83320eb2011-09-15 13:28:02 +0800157 * @param bool
Andrey Andreev081c9462012-03-01 12:58:11 +0200158 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000159 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000160 public function clear($clear_attachments = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000161 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200162 $this->_subject = '';
163 $this->_body = '';
164 $this->_finalbody = '';
165 $this->_header_str = '';
166 $this->_replyto_flag = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000167 $this->_recipients = array();
Derek Jonesd1606352010-09-01 11:16:07 -0500168 $this->_cc_array = array();
169 $this->_bcc_array = array();
Derek Allard2067d1a2008-11-13 22:59:24 +0000170 $this->_headers = array();
171 $this->_debug_msg = array();
172
Mickey Wubfc1cad2012-05-31 22:28:40 -0700173 $this->set_header('User-Agent', $this->useragent);
174 $this->set_header('Date', $this->_set_date());
Derek Allard2067d1a2008-11-13 22:59:24 +0000175
176 if ($clear_attachments !== FALSE)
177 {
178 $this->_attach_name = array();
179 $this->_attach_type = array();
180 $this->_attach_disp = array();
181 }
Eric Barnes6113f542010-12-29 13:36:12 -0500182
Greg Akera769deb2010-11-10 15:47:29 -0600183 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000184 }
Barry Mienydd671972010-10-04 16:33:58 +0200185
Derek Allard2067d1a2008-11-13 22:59:24 +0000186 // --------------------------------------------------------------------
187
188 /**
189 * Set FROM
190 *
Andrey Andreev925dd902012-10-19 11:06:31 +0300191 * @param string From
192 * @param string Return-Path
Andrey Andreev081c9462012-03-01 12:58:11 +0200193 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000194 */
Andrey Andreev925dd902012-10-19 11:06:31 +0300195 public function from($from, $name = '', $return_path = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000196 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200197 if (preg_match('/\<(.*)\>/', $from, $match))
Derek Allard2067d1a2008-11-13 22:59:24 +0000198 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200199 $from = $match[1];
Derek Allard2067d1a2008-11-13 22:59:24 +0000200 }
201
202 if ($this->validate)
203 {
204 $this->validate_email($this->_str_to_array($from));
Andrey Andreevccd01c72012-10-05 17:12:55 +0300205 if ($return_path)
Melounek58dfc082012-06-29 08:43:47 +0200206 {
207 $this->validate_email($this->_str_to_array($return_path));
208 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000209 }
210
211 // prepare the display name
Alex Bilbied261b1e2012-06-02 11:12:16 +0100212 if ($name !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000213 {
214 // only use Q encoding if there are characters that would require it
215 if ( ! preg_match('/[\200-\377]/', $name))
216 {
217 // add slashes for non-printing characters, slashes, and double quotes, and surround it in double quotes
Derek Jonesc630bcf2008-11-17 21:09:45 +0000218 $name = '"'.addcslashes($name, "\0..\37\177'\"\\").'"';
Derek Allard2067d1a2008-11-13 22:59:24 +0000219 }
220 else
221 {
Andrey Andreev925dd902012-10-19 11:06:31 +0300222 $name = $this->_prep_q_encoding($name);
Derek Allard2067d1a2008-11-13 22:59:24 +0000223 }
224 }
225
Mickey Wubfc1cad2012-05-31 22:28:40 -0700226 $this->set_header('From', $name.' <'.$from.'>');
Melounek58dfc082012-06-29 08:43:47 +0200227
Andrey Andreev925dd902012-10-19 11:06:31 +0300228 isset($return_path) OR $return_path = $from;
Melounek58dfc082012-06-29 08:43:47 +0200229 $this->set_header('Return-Path', '<'.$return_path.'>');
Eric Barnes6113f542010-12-29 13:36:12 -0500230
Greg Akera769deb2010-11-10 15:47:29 -0600231 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000232 }
Barry Mienydd671972010-10-04 16:33:58 +0200233
Derek Allard2067d1a2008-11-13 22:59:24 +0000234 // --------------------------------------------------------------------
235
236 /**
237 * Set Reply-to
238 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000239 * @param string
240 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200241 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000242 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000243 public function reply_to($replyto, $name = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000244 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200245 if (preg_match('/\<(.*)\>/', $replyto, $match))
Derek Allard2067d1a2008-11-13 22:59:24 +0000246 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200247 $replyto = $match[1];
Derek Allard2067d1a2008-11-13 22:59:24 +0000248 }
249
250 if ($this->validate)
251 {
252 $this->validate_email($this->_str_to_array($replyto));
253 }
254
Alex Bilbied261b1e2012-06-02 11:12:16 +0100255 if ($name === '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000256 {
257 $name = $replyto;
258 }
259
Andrey Andreev3dad2e72012-06-14 15:10:56 +0300260 if (strpos($name, '"') !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000261 {
262 $name = '"'.$name.'"';
263 }
264
Mickey Wubfc1cad2012-05-31 22:28:40 -0700265 $this->set_header('Reply-To', $name.' <'.$replyto.'>');
Derek Allard2067d1a2008-11-13 22:59:24 +0000266 $this->_replyto_flag = TRUE;
Greg Akera769deb2010-11-10 15:47:29 -0600267
268 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000269 }
Barry Mienydd671972010-10-04 16:33:58 +0200270
Derek Allard2067d1a2008-11-13 22:59:24 +0000271 // --------------------------------------------------------------------
272
273 /**
274 * Set Recipients
275 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000276 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200277 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000278 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000279 public function to($to)
Derek Allard2067d1a2008-11-13 22:59:24 +0000280 {
281 $to = $this->_str_to_array($to);
282 $to = $this->clean_email($to);
283
284 if ($this->validate)
285 {
286 $this->validate_email($to);
287 }
288
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200289 if ($this->_get_protocol() !== 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +0000290 {
Mickey Wubfc1cad2012-05-31 22:28:40 -0700291 $this->set_header('To', implode(', ', $to));
Derek Allard2067d1a2008-11-13 22:59:24 +0000292 }
293
Andrey Andreev8a7078b2012-10-17 10:52:49 +0300294 $this->_recipients = $to;
Eric Barnes6113f542010-12-29 13:36:12 -0500295
Greg Akera769deb2010-11-10 15:47:29 -0600296 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000297 }
Barry Mienydd671972010-10-04 16:33:58 +0200298
Derek Allard2067d1a2008-11-13 22:59:24 +0000299 // --------------------------------------------------------------------
300
301 /**
302 * Set CC
303 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000304 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200305 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000306 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000307 public function cc($cc)
Derek Allard2067d1a2008-11-13 22:59:24 +0000308 {
Andrey Andreev56454792012-05-17 14:32:19 +0300309 $cc = $this->clean_email($this->_str_to_array($cc));
Derek Allard2067d1a2008-11-13 22:59:24 +0000310
311 if ($this->validate)
312 {
313 $this->validate_email($cc);
314 }
315
Mickey Wubfc1cad2012-05-31 22:28:40 -0700316 $this->set_header('Cc', implode(', ', $cc));
Derek Allard2067d1a2008-11-13 22:59:24 +0000317
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200318 if ($this->_get_protocol() === 'smtp')
Derek Allard2067d1a2008-11-13 22:59:24 +0000319 {
320 $this->_cc_array = $cc;
321 }
Eric Barnes6113f542010-12-29 13:36:12 -0500322
Greg Akera769deb2010-11-10 15:47:29 -0600323 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000324 }
Barry Mienydd671972010-10-04 16:33:58 +0200325
Derek Allard2067d1a2008-11-13 22:59:24 +0000326 // --------------------------------------------------------------------
327
328 /**
329 * Set BCC
330 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000331 * @param string
332 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200333 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000334 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000335 public function bcc($bcc, $limit = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000336 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100337 if ($limit !== '' && is_numeric($limit))
Derek Allard2067d1a2008-11-13 22:59:24 +0000338 {
339 $this->bcc_batch_mode = TRUE;
340 $this->bcc_batch_size = $limit;
341 }
342
Andrey Andreev56454792012-05-17 14:32:19 +0300343 $bcc = $this->clean_email($this->_str_to_array($bcc));
Derek Allard2067d1a2008-11-13 22:59:24 +0000344
345 if ($this->validate)
346 {
347 $this->validate_email($bcc);
348 }
349
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200350 if ($this->_get_protocol() === 'smtp' OR ($this->bcc_batch_mode && count($bcc) > $this->bcc_batch_size))
Derek Allard2067d1a2008-11-13 22:59:24 +0000351 {
352 $this->_bcc_array = $bcc;
353 }
354 else
355 {
Mickey Wubfc1cad2012-05-31 22:28:40 -0700356 $this->set_header('Bcc', implode(', ', $bcc));
Derek Allard2067d1a2008-11-13 22:59:24 +0000357 }
Eric Barnes6113f542010-12-29 13:36:12 -0500358
Greg Akera769deb2010-11-10 15:47:29 -0600359 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000360 }
Barry Mienydd671972010-10-04 16:33:58 +0200361
Derek Allard2067d1a2008-11-13 22:59:24 +0000362 // --------------------------------------------------------------------
363
364 /**
365 * Set Email Subject
366 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000367 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200368 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000369 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000370 public function subject($subject)
Derek Allard2067d1a2008-11-13 22:59:24 +0000371 {
372 $subject = $this->_prep_q_encoding($subject);
Mickey Wubfc1cad2012-05-31 22:28:40 -0700373 $this->set_header('Subject', $subject);
Greg Akera769deb2010-11-10 15:47:29 -0600374 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000375 }
Barry Mienydd671972010-10-04 16:33:58 +0200376
Derek Allard2067d1a2008-11-13 22:59:24 +0000377 // --------------------------------------------------------------------
378
379 /**
380 * Set Body
381 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000382 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200383 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000384 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000385 public function message($body)
Derek Allard2067d1a2008-11-13 22:59:24 +0000386 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200387 $this->_body = rtrim(str_replace("\r", '', $body));
diegorivera33c32802011-10-19 02:56:15 -0200388
Andrey Andreevaf728622011-10-20 10:11:59 +0300389 /* strip slashes only if magic quotes is ON
390 if we do it with magic quotes OFF, it strips real, user-inputted chars.
391
392 NOTE: In PHP 5.4 get_magic_quotes_gpc() will always return 0 and
393 it will probably not exist in future versions at all.
394 */
395 if ( ! is_php('5.4') && get_magic_quotes_gpc())
diegorivera9fca6152011-10-19 11:18:45 -0200396 {
diegorivera33c32802011-10-19 02:56:15 -0200397 $this->_body = stripslashes($this->_body);
diegorivera9fca6152011-10-19 11:18:45 -0200398 }
diegorivera33c32802011-10-19 02:56:15 -0200399
Greg Akera769deb2010-11-10 15:47:29 -0600400 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000401 }
Barry Mienydd671972010-10-04 16:33:58 +0200402
Derek Allard2067d1a2008-11-13 22:59:24 +0000403 // --------------------------------------------------------------------
404
405 /**
406 * Assign file attachments
407 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000408 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200409 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000410 */
Matteo Matteic3b36f42012-03-26 10:27:17 +0200411 public function attach($filename, $disposition = '', $newname = NULL, $mime = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000412 {
trit151fc682011-11-23 07:30:06 -0500413 $this->_attach_name[] = array($filename, $newname);
tritd5269982011-11-23 17:22:44 -0500414 $this->_attach_disp[] = empty($disposition) ? 'attachment' : $disposition; // Can also be 'inline' Not sure if it matters
Matteo Matteic3b36f42012-03-26 10:27:17 +0200415 $this->_attach_type[] = $mime;
Greg Akera769deb2010-11-10 15:47:29 -0600416 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000417 }
418
419 // --------------------------------------------------------------------
420
421 /**
422 * Add a Header Item
423 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000424 * @param string
425 * @param string
426 * @return void
427 */
Mickey Wubfc1cad2012-05-31 22:28:40 -0700428 public function set_header($header, $value)
Derek Allard2067d1a2008-11-13 22:59:24 +0000429 {
430 $this->_headers[$header] = $value;
431 }
Barry Mienydd671972010-10-04 16:33:58 +0200432
Derek Allard2067d1a2008-11-13 22:59:24 +0000433 // --------------------------------------------------------------------
434
435 /**
436 * Convert a String to an Array
437 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000438 * @param string
439 * @return array
440 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600441 protected function _str_to_array($email)
Derek Allard2067d1a2008-11-13 22:59:24 +0000442 {
443 if ( ! is_array($email))
444 {
Andrey Andreev56454792012-05-17 14:32:19 +0300445 return (strpos($email, ',') !== FALSE)
446 ? preg_split('/[\s,]/', $email, -1, PREG_SPLIT_NO_EMPTY)
447 : (array) trim($email);
Derek Allard2067d1a2008-11-13 22:59:24 +0000448 }
Andrey Andreev56454792012-05-17 14:32:19 +0300449
Derek Allard2067d1a2008-11-13 22:59:24 +0000450 return $email;
451 }
Barry Mienydd671972010-10-04 16:33:58 +0200452
Derek Allard2067d1a2008-11-13 22:59:24 +0000453 // --------------------------------------------------------------------
454
455 /**
456 * Set Multipart Value
457 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000458 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200459 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000460 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000461 public function set_alt_message($str = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000462 {
Dan Horrigand0ddeaf2011-08-21 09:07:27 -0400463 $this->alt_message = (string) $str;
Greg Akera769deb2010-11-10 15:47:29 -0600464 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000465 }
Barry Mienydd671972010-10-04 16:33:58 +0200466
Derek Allard2067d1a2008-11-13 22:59:24 +0000467 // --------------------------------------------------------------------
468
469 /**
470 * Set Mailtype
471 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000472 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200473 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000474 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000475 public function set_mailtype($type = 'text')
Derek Allard2067d1a2008-11-13 22:59:24 +0000476 {
Andrey Andreev56454792012-05-17 14:32:19 +0300477 $this->mailtype = ($type === 'html') ? 'html' : 'text';
Greg Akera769deb2010-11-10 15:47:29 -0600478 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000479 }
Barry Mienydd671972010-10-04 16:33:58 +0200480
Derek Allard2067d1a2008-11-13 22:59:24 +0000481 // --------------------------------------------------------------------
482
483 /**
484 * Set Wordwrap
485 *
Dan Horrigan628e6602011-08-21 09:08:31 -0400486 * @param bool
Andrey Andreev081c9462012-03-01 12:58:11 +0200487 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000488 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000489 public function set_wordwrap($wordwrap = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000490 {
Dan Horrigan628e6602011-08-21 09:08:31 -0400491 $this->wordwrap = (bool) $wordwrap;
Greg Akera769deb2010-11-10 15:47:29 -0600492 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000493 }
Barry Mienydd671972010-10-04 16:33:58 +0200494
Derek Allard2067d1a2008-11-13 22:59:24 +0000495 // --------------------------------------------------------------------
496
497 /**
498 * Set Protocol
499 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000500 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200501 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000502 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000503 public function set_protocol($protocol = 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +0000504 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200505 $this->protocol = in_array($protocol, $this->_protocols, TRUE) ? strtolower($protocol) : 'mail';
Greg Akera769deb2010-11-10 15:47:29 -0600506 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000507 }
Barry Mienydd671972010-10-04 16:33:58 +0200508
Derek Allard2067d1a2008-11-13 22:59:24 +0000509 // --------------------------------------------------------------------
510
511 /**
512 * Set Priority
513 *
Andrey Andreev081c9462012-03-01 12:58:11 +0200514 * @param int
515 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000516 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000517 public function set_priority($n = 3)
Derek Allard2067d1a2008-11-13 22:59:24 +0000518 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200519 $this->priority = preg_match('/^[1-5]$/', $n) ? (int) $n : 3;
Greg Akera769deb2010-11-10 15:47:29 -0600520 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000521 }
Barry Mienydd671972010-10-04 16:33:58 +0200522
Derek Allard2067d1a2008-11-13 22:59:24 +0000523 // --------------------------------------------------------------------
524
525 /**
526 * Set Newline Character
527 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000528 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200529 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000530 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000531 public function set_newline($newline = "\n")
Derek Allard2067d1a2008-11-13 22:59:24 +0000532 {
Andrey Andreevb71e06b2011-12-22 19:22:50 +0200533 $this->newline = in_array($newline, array("\n", "\r\n", "\r")) ? $newline : "\n";
Greg Akera769deb2010-11-10 15:47:29 -0600534 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000535 }
Barry Mienydd671972010-10-04 16:33:58 +0200536
Derek Allard2067d1a2008-11-13 22:59:24 +0000537 // --------------------------------------------------------------------
538
539 /**
540 * Set CRLF
541 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000542 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200543 * @return object
Derek Allard2067d1a2008-11-13 22:59:24 +0000544 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000545 public function set_crlf($crlf = "\n")
Derek Allard2067d1a2008-11-13 22:59:24 +0000546 {
Andrey Andreev76f15c92012-03-01 13:05:07 +0200547 $this->crlf = ($crlf !== "\n" && $crlf !== "\r\n" && $crlf !== "\r") ? "\n" : $crlf;
Greg Akera769deb2010-11-10 15:47:29 -0600548 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000549 }
Barry Mienydd671972010-10-04 16:33:58 +0200550
Derek Allard2067d1a2008-11-13 22:59:24 +0000551 // --------------------------------------------------------------------
552
553 /**
554 * Set Message Boundary
555 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000556 * @return void
557 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600558 protected function _set_boundaries()
Derek Allard2067d1a2008-11-13 22:59:24 +0000559 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200560 $this->_alt_boundary = 'B_ALT_'.uniqid(''); // multipart/alternative
561 $this->_atc_boundary = 'B_ATC_'.uniqid(''); // attachment boundary
Derek Allard2067d1a2008-11-13 22:59:24 +0000562 }
Barry Mienydd671972010-10-04 16:33:58 +0200563
Derek Allard2067d1a2008-11-13 22:59:24 +0000564 // --------------------------------------------------------------------
565
566 /**
567 * Get the Message ID
568 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000569 * @return string
570 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600571 protected function _get_message_id()
Derek Allard2067d1a2008-11-13 22:59:24 +0000572 {
Andrey Andreevb71e06b2011-12-22 19:22:50 +0200573 $from = str_replace(array('>', '<'), '', $this->_headers['Return-Path']);
Andrey Andreev56454792012-05-17 14:32:19 +0300574 return '<'.uniqid('').strstr($from, '@').'>';
Derek Allard2067d1a2008-11-13 22:59:24 +0000575 }
Barry Mienydd671972010-10-04 16:33:58 +0200576
Derek Allard2067d1a2008-11-13 22:59:24 +0000577 // --------------------------------------------------------------------
578
579 /**
580 * Get Mail Protocol
581 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000582 * @param bool
Andrey Andreev59c5b532012-03-01 14:09:51 +0200583 * @return mixed
Derek Allard2067d1a2008-11-13 22:59:24 +0000584 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600585 protected function _get_protocol($return = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000586 {
587 $this->protocol = strtolower($this->protocol);
Andrey Andreev59c5b532012-03-01 14:09:51 +0200588 in_array($this->protocol, $this->_protocols, TRUE) OR $this->protocol = 'mail';
Derek Allard2067d1a2008-11-13 22:59:24 +0000589
Alex Bilbied261b1e2012-06-02 11:12:16 +0100590 if ($return === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000591 {
592 return $this->protocol;
593 }
594 }
Barry Mienydd671972010-10-04 16:33:58 +0200595
Derek Allard2067d1a2008-11-13 22:59:24 +0000596 // --------------------------------------------------------------------
597
598 /**
599 * Get Mail Encoding
600 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000601 * @param bool
602 * @return string
603 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600604 protected function _get_encoding($return = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000605 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200606 in_array($this->_encoding, $this->_bit_depths) OR $this->_encoding = '8bit';
Derek Allard2067d1a2008-11-13 22:59:24 +0000607
608 foreach ($this->_base_charsets as $charset)
609 {
Andrey Andreev3dad2e72012-06-14 15:10:56 +0300610 if (strpos($charset, $this->charset) === 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000611 {
612 $this->_encoding = '7bit';
613 }
614 }
615
Alex Bilbied261b1e2012-06-02 11:12:16 +0100616 if ($return === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000617 {
618 return $this->_encoding;
619 }
620 }
621
622 // --------------------------------------------------------------------
623
624 /**
625 * Get content type (text/html/attachment)
626 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000627 * @return string
628 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600629 protected function _get_content_type()
Derek Allard2067d1a2008-11-13 22:59:24 +0000630 {
Andrey Andreev56454792012-05-17 14:32:19 +0300631 if ($this->mailtype === 'html')
Derek Allard2067d1a2008-11-13 22:59:24 +0000632 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100633 return (count($this->_attach_name) === 0) ? 'html' : 'html-attach';
Derek Allard2067d1a2008-11-13 22:59:24 +0000634 }
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200635 elseif ($this->mailtype === 'text' && count($this->_attach_name) > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000636 {
637 return 'plain-attach';
638 }
639 else
640 {
641 return 'plain';
642 }
643 }
Barry Mienydd671972010-10-04 16:33:58 +0200644
Derek Allard2067d1a2008-11-13 22:59:24 +0000645 // --------------------------------------------------------------------
646
647 /**
648 * Set RFC 822 Date
649 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000650 * @return string
651 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600652 protected function _set_date()
Derek Allard2067d1a2008-11-13 22:59:24 +0000653 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200654 $timezone = date('Z');
Andrey Andreev3dad2e72012-06-14 15:10:56 +0300655 $operator = ($timezone[0] === '-') ? '-' : '+';
Derek Allard2067d1a2008-11-13 22:59:24 +0000656 $timezone = abs($timezone);
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200657 $timezone = floor($timezone/3600) * 100 + ($timezone % 3600) / 60;
Derek Allard2067d1a2008-11-13 22:59:24 +0000658
Andrey Andreev59c5b532012-03-01 14:09:51 +0200659 return sprintf('%s %s%04d', date('D, j M Y H:i:s'), $operator, $timezone);
Derek Allard2067d1a2008-11-13 22:59:24 +0000660 }
Barry Mienydd671972010-10-04 16:33:58 +0200661
Derek Allard2067d1a2008-11-13 22:59:24 +0000662 // --------------------------------------------------------------------
663
664 /**
665 * Mime message
666 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000667 * @return string
668 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600669 protected function _get_mime_message()
Derek Allard2067d1a2008-11-13 22:59:24 +0000670 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200671 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 +0000672 }
Barry Mienydd671972010-10-04 16:33:58 +0200673
Derek Allard2067d1a2008-11-13 22:59:24 +0000674 // --------------------------------------------------------------------
675
676 /**
677 * Validate Email Address
678 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000679 * @param string
680 * @return bool
681 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000682 public function validate_email($email)
Derek Allard2067d1a2008-11-13 22:59:24 +0000683 {
684 if ( ! is_array($email))
685 {
patworkb0707982011-04-08 15:10:05 +0200686 $this->_set_error_message('lang:email_must_be_array');
Derek Allard2067d1a2008-11-13 22:59:24 +0000687 return FALSE;
688 }
689
690 foreach ($email as $val)
691 {
692 if ( ! $this->valid_email($val))
693 {
patworkb0707982011-04-08 15:10:05 +0200694 $this->_set_error_message('lang:email_invalid_address', $val);
Derek Allard2067d1a2008-11-13 22:59:24 +0000695 return FALSE;
696 }
697 }
698
699 return TRUE;
700 }
Barry Mienydd671972010-10-04 16:33:58 +0200701
Derek Allard2067d1a2008-11-13 22:59:24 +0000702 // --------------------------------------------------------------------
703
704 /**
705 * Email Validation
706 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000707 * @param string
708 * @return bool
709 */
Timothy Warrend37f0e92012-06-27 08:21:59 -0400710 public function valid_email($email)
Derek Allard2067d1a2008-11-13 22:59:24 +0000711 {
Andrey Andreev580388b2012-06-27 15:43:46 +0300712 return (bool) filter_var($email, FILTER_VALIDATE_EMAIL);
Derek Allard2067d1a2008-11-13 22:59:24 +0000713 }
Barry Mienydd671972010-10-04 16:33:58 +0200714
Derek Allard2067d1a2008-11-13 22:59:24 +0000715 // --------------------------------------------------------------------
716
717 /**
718 * Clean Extended Email Address: Joe Smith <joe@smith.com>
719 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000720 * @param string
721 * @return string
722 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000723 public function clean_email($email)
Derek Allard2067d1a2008-11-13 22:59:24 +0000724 {
725 if ( ! is_array($email))
726 {
Andrey Andreev56454792012-05-17 14:32:19 +0300727 return preg_match('/\<(.*)\>/', $email, $match) ? $match[1] : $email;
Derek Allard2067d1a2008-11-13 22:59:24 +0000728 }
729
730 $clean_email = array();
731
732 foreach ($email as $addy)
733 {
Andrey Andreev59c5b532012-03-01 14:09:51 +0200734 $clean_email[] = preg_match('/\<(.*)\>/', $addy, $match) ? $match[1] : $addy;
Derek Allard2067d1a2008-11-13 22:59:24 +0000735 }
736
737 return $clean_email;
738 }
Barry Mienydd671972010-10-04 16:33:58 +0200739
Derek Allard2067d1a2008-11-13 22:59:24 +0000740 // --------------------------------------------------------------------
741
742 /**
743 * Build alternative plain text message
744 *
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000745 * This public function provides the raw message for use
Derek Allard2067d1a2008-11-13 22:59:24 +0000746 * in plain-text headers of HTML-formatted emails.
747 * If the user hasn't specified his own alternative message
748 * it creates one by stripping the HTML
749 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000750 * @return string
751 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600752 protected function _get_alt_message()
Derek Allard2067d1a2008-11-13 22:59:24 +0000753 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100754 if ($this->alt_message !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000755 {
Andrey Andreev00ea2a92012-10-18 14:59:29 +0300756 return $this->word_wrap($this->alt_message, 76);
Derek Allard2067d1a2008-11-13 22:59:24 +0000757 }
758
Andrey Andreev56454792012-05-17 14:32:19 +0300759 $body = preg_match('/\<body.*?\>(.*)\<\/body\>/si', $this->_body, $match) ? $match[1] : $this->_body;
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200760 $body = str_replace("\t", '', preg_replace('#<!--(.*)--\>#', '', trim(strip_tags($body))));
Derek Allard2067d1a2008-11-13 22:59:24 +0000761
762 for ($i = 20; $i >= 3; $i--)
763 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200764 $body = str_replace(str_repeat("\n", $i), "\n\n", $body);
Derek Allard2067d1a2008-11-13 22:59:24 +0000765 }
766
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200767 return $this->word_wrap($body, 76);
Derek Allard2067d1a2008-11-13 22:59:24 +0000768 }
Barry Mienydd671972010-10-04 16:33:58 +0200769
Derek Allard2067d1a2008-11-13 22:59:24 +0000770 // --------------------------------------------------------------------
771
772 /**
773 * Word Wrap
774 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000775 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +0200776 * @param int
Derek Allard2067d1a2008-11-13 22:59:24 +0000777 * @return string
778 */
Andrey Andreev00ea2a92012-10-18 14:59:29 +0300779 public function word_wrap($str, $charlim = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000780 {
Andrey Andreev00ea2a92012-10-18 14:59:29 +0300781 // Set the character limit, if not already present
782 if (empty($charlim))
Derek Allard2067d1a2008-11-13 22:59:24 +0000783 {
Andrey Andreev00ea2a92012-10-18 14:59:29 +0300784 $charlim = empty($this->wrapchars) ? 76 : $this->wrapchars;
Derek Allard2067d1a2008-11-13 22:59:24 +0000785 }
786
787 // Reduce multiple spaces
Andrey Andreev56454792012-05-17 14:32:19 +0300788 $str = preg_replace('| +|', ' ', $str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000789
790 // Standardize newlines
791 if (strpos($str, "\r") !== FALSE)
792 {
Andrey Andreevb71e06b2011-12-22 19:22:50 +0200793 $str = str_replace(array("\r\n", "\r"), "\n", $str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000794 }
795
796 // If the current word is surrounded by {unwrap} tags we'll
797 // strip the entire chunk and replace it with a marker.
798 $unwrap = array();
Andrey Andreev56454792012-05-17 14:32:19 +0300799 if (preg_match_all('|(\{unwrap\}.+?\{/unwrap\})|s', $str, $matches))
Derek Allard2067d1a2008-11-13 22:59:24 +0000800 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200801 for ($i = 0, $c = count($matches[0]); $i < $c; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +0000802 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200803 $unwrap[] = $matches[1][$i];
Andrey Andreev56454792012-05-17 14:32:19 +0300804 $str = str_replace($matches[1][$i], '{{unwrapped'.$i.'}}', $str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000805 }
806 }
807
Phil Sturgeona0f980e2011-01-13 10:59:12 +0000808 // Use PHP's native public function to do the initial wordwrap.
Derek Allard2067d1a2008-11-13 22:59:24 +0000809 // We set the cut flag to FALSE so that any individual words that are
Andrey Andreev56454792012-05-17 14:32:19 +0300810 // too long get left alone. In the next step we'll deal with them.
Derek Allard2067d1a2008-11-13 22:59:24 +0000811 $str = wordwrap($str, $charlim, "\n", FALSE);
812
813 // Split the string into individual lines of text and cycle through them
Andrey Andreev56454792012-05-17 14:32:19 +0300814 $output = '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000815 foreach (explode("\n", $str) as $line)
816 {
817 // Is the line within the allowed character count?
818 // If so we'll join it to the output and continue
819 if (strlen($line) <= $charlim)
820 {
821 $output .= $line.$this->newline;
822 continue;
823 }
824
825 $temp = '';
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200826 do
Derek Allard2067d1a2008-11-13 22:59:24 +0000827 {
828 // If the over-length word is a URL we won't wrap it
Andrey Andreev56454792012-05-17 14:32:19 +0300829 if (preg_match('!\[url.+\]|://|wwww.!', $line))
Derek Allard2067d1a2008-11-13 22:59:24 +0000830 {
831 break;
832 }
833
834 // Trim the word down
835 $temp .= substr($line, 0, $charlim-1);
836 $line = substr($line, $charlim-1);
837 }
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200838 while (strlen($line) > $charlim);
Derek Allard2067d1a2008-11-13 22:59:24 +0000839
840 // If $temp contains data it means we had to split up an over-length
841 // word into smaller chunks so we'll add it back to our current line
Alex Bilbied261b1e2012-06-02 11:12:16 +0100842 if ($temp !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000843 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200844 $output .= $temp.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +0000845 }
846
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200847 $output .= $line.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +0000848 }
849
850 // Put our markers back
851 if (count($unwrap) > 0)
852 {
853 foreach ($unwrap as $key => $val)
854 {
Andrey Andreev56454792012-05-17 14:32:19 +0300855 $output = str_replace('{{unwrapped'.$key.'}}', $val, $output);
Derek Allard2067d1a2008-11-13 22:59:24 +0000856 }
857 }
858
859 return $output;
860 }
Barry Mienydd671972010-10-04 16:33:58 +0200861
Derek Allard2067d1a2008-11-13 22:59:24 +0000862 // --------------------------------------------------------------------
863
864 /**
865 * Build final headers
866 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000867 * @return string
868 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600869 protected function _build_headers()
Derek Allard2067d1a2008-11-13 22:59:24 +0000870 {
Mickey Wubfc1cad2012-05-31 22:28:40 -0700871 $this->set_header('X-Sender', $this->clean_email($this->_headers['From']));
872 $this->set_header('X-Mailer', $this->useragent);
873 $this->set_header('X-Priority', $this->_priorities[$this->priority - 1]);
874 $this->set_header('Message-ID', $this->_get_message_id());
875 $this->set_header('Mime-Version', '1.0');
Derek Allard2067d1a2008-11-13 22:59:24 +0000876 }
Barry Mienydd671972010-10-04 16:33:58 +0200877
Derek Allard2067d1a2008-11-13 22:59:24 +0000878 // --------------------------------------------------------------------
879
880 /**
881 * Write Headers as a string
882 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000883 * @return void
884 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600885 protected function _write_headers()
Derek Allard2067d1a2008-11-13 22:59:24 +0000886 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200887 if ($this->protocol === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +0000888 {
889 $this->_subject = $this->_headers['Subject'];
890 unset($this->_headers['Subject']);
891 }
892
893 reset($this->_headers);
Andrey Andreev56454792012-05-17 14:32:19 +0300894 $this->_header_str = '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000895
Pascal Kriete14287f32011-02-14 13:39:34 -0500896 foreach ($this->_headers as $key => $val)
Derek Allard2067d1a2008-11-13 22:59:24 +0000897 {
898 $val = trim($val);
899
Alex Bilbied261b1e2012-06-02 11:12:16 +0100900 if ($val !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000901 {
Andrey Andreev56454792012-05-17 14:32:19 +0300902 $this->_header_str .= $key.': '.$val.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +0000903 }
904 }
905
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200906 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +0000907 {
Derek Jones1d890882009-02-10 20:32:14 +0000908 $this->_header_str = rtrim($this->_header_str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000909 }
910 }
Barry Mienydd671972010-10-04 16:33:58 +0200911
Derek Allard2067d1a2008-11-13 22:59:24 +0000912 // --------------------------------------------------------------------
913
914 /**
915 * Build Final Body and attachments
916 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000917 * @return void
918 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -0600919 protected function _build_message()
Derek Allard2067d1a2008-11-13 22:59:24 +0000920 {
Andrey Andreev76f15c92012-03-01 13:05:07 +0200921 if ($this->wordwrap === TRUE && $this->mailtype !== 'html')
Derek Allard2067d1a2008-11-13 22:59:24 +0000922 {
923 $this->_body = $this->word_wrap($this->_body);
924 }
925
926 $this->_set_boundaries();
927 $this->_write_headers();
928
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200929 $hdr = ($this->_get_protocol() === 'mail') ? $this->newline : '';
Brandon Jones485d7412010-11-09 16:38:17 -0500930 $body = '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000931
932 switch ($this->_get_content_type())
933 {
934 case 'plain' :
935
Andrey Andreev56454792012-05-17 14:32:19 +0300936 $hdr .= 'Content-Type: text/plain; charset='.$this->charset.$this->newline
937 .'Content-Transfer-Encoding: '.$this->_get_encoding();
Derek Allard2067d1a2008-11-13 22:59:24 +0000938
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200939 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +0000940 {
941 $this->_header_str .= $hdr;
942 $this->_finalbody = $this->_body;
Derek Allard2067d1a2008-11-13 22:59:24 +0000943 }
Brandon Jones485d7412010-11-09 16:38:17 -0500944 else
945 {
946 $this->_finalbody = $hdr . $this->newline . $this->newline . $this->_body;
947 }
Eric Barnes6113f542010-12-29 13:36:12 -0500948
Derek Allard2067d1a2008-11-13 22:59:24 +0000949 return;
950
Derek Allard2067d1a2008-11-13 22:59:24 +0000951 case 'html' :
952
953 if ($this->send_multipart === FALSE)
954 {
Andrey Andreev56454792012-05-17 14:32:19 +0300955 $hdr .= 'Content-Type: text/html; charset='.$this->charset.$this->newline
956 .'Content-Transfer-Encoding: quoted-printable';
Derek Allard2067d1a2008-11-13 22:59:24 +0000957 }
958 else
959 {
Andrey Andreev56454792012-05-17 14:32:19 +0300960 $hdr .= 'Content-Type: multipart/alternative; boundary="'.$this->_alt_boundary.'"'.$this->newline.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +0000961
Andrey Andreev56454792012-05-17 14:32:19 +0300962 $body .= $this->_get_mime_message().$this->newline.$this->newline
963 .'--'.$this->_alt_boundary.$this->newline
Derek Allard2067d1a2008-11-13 22:59:24 +0000964
Andrey Andreev56454792012-05-17 14:32:19 +0300965 .'Content-Type: text/plain; charset='.$this->charset.$this->newline
966 .'Content-Transfer-Encoding: '.$this->_get_encoding().$this->newline.$this->newline
967 .$this->_get_alt_message().$this->newline.$this->newline.'--'.$this->_alt_boundary.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -0500968
Andrey Andreev56454792012-05-17 14:32:19 +0300969 .'Content-Type: text/html; charset='.$this->charset.$this->newline
970 .'Content-Transfer-Encoding: quoted-printable'.$this->newline.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +0000971 }
Eric Barnes6113f542010-12-29 13:36:12 -0500972
Andrey Andreev56454792012-05-17 14:32:19 +0300973 $this->_finalbody = $body.$this->_prep_quoted_printable($this->_body).$this->newline.$this->newline;
Eric Barnes6113f542010-12-29 13:36:12 -0500974
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200975 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +0000976 {
977 $this->_header_str .= $hdr;
Brandon Jones485d7412010-11-09 16:38:17 -0500978 }
979 else
980 {
Andrey Andreev56454792012-05-17 14:32:19 +0300981 $this->_finalbody = $hdr.$this->_finalbody;
Derek Allard2067d1a2008-11-13 22:59:24 +0000982 }
983
Derek Allard2067d1a2008-11-13 22:59:24 +0000984
985 if ($this->send_multipart !== FALSE)
986 {
Andrey Andreev56454792012-05-17 14:32:19 +0300987 $this->_finalbody .= '--'.$this->_alt_boundary.'--';
Derek Allard2067d1a2008-11-13 22:59:24 +0000988 }
989
Derek Allard2067d1a2008-11-13 22:59:24 +0000990 return;
991
Derek Allard2067d1a2008-11-13 22:59:24 +0000992 case 'plain-attach' :
993
Andrey Andreev56454792012-05-17 14:32:19 +0300994 $hdr .= 'Content-Type: multipart/'.$this->multipart.'; boundary="'.$this->_atc_boundary.'"'.$this->newline.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +0000995
Andrey Andreev1bd3d882011-12-22 15:38:20 +0200996 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +0000997 {
998 $this->_header_str .= $hdr;
Eric Barnes6113f542010-12-29 13:36:12 -0500999 }
1000
Andrey Andreev56454792012-05-17 14:32:19 +03001001 $body .= $this->_get_mime_message().$this->newline.$this->newline
1002 .'--'.$this->_atc_boundary.$this->newline
Derek Allard2067d1a2008-11-13 22:59:24 +00001003
Andrey Andreev56454792012-05-17 14:32:19 +03001004 .'Content-Type: text/plain; charset='.$this->charset.$this->newline
1005 .'Content-Transfer-Encoding: '.$this->_get_encoding().$this->newline.$this->newline
Derek Allard2067d1a2008-11-13 22:59:24 +00001006
Andrey Andreev56454792012-05-17 14:32:19 +03001007 .$this->_body.$this->newline.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001008
1009 break;
1010 case 'html-attach' :
1011
Andrey Andreev56454792012-05-17 14:32:19 +03001012 $hdr .= 'Content-Type: multipart/'.$this->multipart.'; boundary="'.$this->_atc_boundary.'"'.$this->newline.$this->newline;
Eric Barnes6113f542010-12-29 13:36:12 -05001013
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001014 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +00001015 {
1016 $this->_header_str .= $hdr;
Derek Allard2067d1a2008-11-13 22:59:24 +00001017 }
1018
Andrey Andreev56454792012-05-17 14:32:19 +03001019 $body .= $this->_get_mime_message().$this->newline.$this->newline
1020 .'--'.$this->_atc_boundary.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001021
Andrey Andreev56454792012-05-17 14:32:19 +03001022 .'Content-Type: multipart/alternative; boundary="'.$this->_alt_boundary.'"'.$this->newline.$this->newline
1023 .'--'.$this->_alt_boundary.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001024
Andrey Andreev56454792012-05-17 14:32:19 +03001025 .'Content-Type: text/plain; charset='.$this->charset.$this->newline
1026 .'Content-Transfer-Encoding: '.$this->_get_encoding().$this->newline.$this->newline
1027 .$this->_get_alt_message().$this->newline.$this->newline.'--'.$this->_alt_boundary.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001028
Andrey Andreev56454792012-05-17 14:32:19 +03001029 .'Content-Type: text/html; charset='.$this->charset.$this->newline
1030 .'Content-Transfer-Encoding: quoted-printable'.$this->newline.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001031
Andrey Andreev56454792012-05-17 14:32:19 +03001032 .$this->_prep_quoted_printable($this->_body).$this->newline.$this->newline
1033 .'--'.$this->_alt_boundary.'--'.$this->newline.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001034
1035 break;
1036 }
1037
1038 $attachment = array();
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001039 for ($i = 0, $c = count($this->_attach_name), $z = 0; $i < $c; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001040 {
tritbc4ac992011-11-23 07:19:41 -05001041 $filename = $this->_attach_name[$i][0];
Andrey Andreev56454792012-05-17 14:32:19 +03001042 $basename = is_null($this->_attach_name[$i][1]) ? basename($filename) : $this->_attach_name[$i][1];
Derek Allard2067d1a2008-11-13 22:59:24 +00001043 $ctype = $this->_attach_type[$i];
Matteo Mattei5688d582012-03-13 19:29:29 +01001044 $file_content = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001045
Alex Bilbied261b1e2012-06-02 11:12:16 +01001046 if ($this->_attach_type[$i] === '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001047 {
Matteo Mattei5688d582012-03-13 19:29:29 +01001048 if ( ! file_exists($filename))
1049 {
1050 $this->_set_error_message('lang:email_attachment_missing', $filename);
1051 return FALSE;
1052 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001053
Matteo Mattei5688d582012-03-13 19:29:29 +01001054 $file = filesize($filename) +1;
1055
1056 if ( ! $fp = fopen($filename, FOPEN_READ))
1057 {
1058 $this->_set_error_message('lang:email_attachment_unreadable', $filename);
1059 return FALSE;
1060 }
1061
Matteo Matteic3b36f42012-03-26 10:27:17 +02001062 $ctype = $this->_mime_types(pathinfo($filename, PATHINFO_EXTENSION));
Matteo Mattei5688d582012-03-13 19:29:29 +01001063 $file_content = fread($fp, $file);
1064 fclose($fp);
1065 }
1066 else
1067 {
1068 $file_content =& $this->_attach_content[$i];
1069 }
Andrey Andreev56454792012-05-17 14:32:19 +03001070
1071 $attachment[$z++] = '--'.$this->_atc_boundary.$this->newline
1072 .'Content-type: '.$ctype.'; '
1073 .'name="'.$basename.'"'.$this->newline
1074 .'Content-Disposition: '.$this->_attach_disp[$i].';'.$this->newline
1075 .'Content-Transfer-Encoding: base64'.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001076
Matteo Mattei5688d582012-03-13 19:29:29 +01001077 $attachment[$z++] = chunk_split(base64_encode($file_content));
Derek Allard2067d1a2008-11-13 22:59:24 +00001078 }
1079
Andrey Andreev56454792012-05-17 14:32:19 +03001080 $body .= implode($this->newline, $attachment).$this->newline.'--'.$this->_atc_boundary.'--';
1081 $this->_finalbody = ($this->_get_protocol() === 'mail') ? $body : $hdr.$body;
Derek Allard2067d1a2008-11-13 22:59:24 +00001082 return;
1083 }
Barry Mienydd671972010-10-04 16:33:58 +02001084
Derek Allard2067d1a2008-11-13 22:59:24 +00001085 // --------------------------------------------------------------------
1086
1087 /**
1088 * Prep Quoted Printable
1089 *
1090 * Prepares string for Quoted-Printable Content-Transfer-Encoding
1091 * Refer to RFC 2045 http://www.ietf.org/rfc/rfc2045.txt
1092 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001093 * @param string
Derek Allard2067d1a2008-11-13 22:59:24 +00001094 * @return string
1095 */
Andrey Andreev683b34d2012-10-09 15:00:00 +03001096 protected function _prep_quoted_printable($str)
Derek Allard2067d1a2008-11-13 22:59:24 +00001097 {
Andrey Andreev00ea2a92012-10-18 14:59:29 +03001098 // We are intentionally wrapping so mail servers will encode characters
1099 // properly and MUAs will behave, so {unwrap} must go!
1100 $str = str_replace(array('{unwrap}', '{/unwrap}'), '', $str);
1101
Andrey Andreev683b34d2012-10-09 15:00:00 +03001102 // RFC 2045 specifies CRLF as "\r\n".
1103 // However, many developers choose to override that and violate
1104 // the RFC rules due to (apparently) a bug in MS Exchange,
1105 // which only works with "\n".
Andrey Andreev26f0cf92012-10-11 13:52:39 +03001106 if ($this->crlf === "\r\n")
Andrey Andreev683b34d2012-10-09 15:00:00 +03001107 {
Andrey Andreev26f0cf92012-10-11 13:52:39 +03001108 if (is_php('5.3'))
1109 {
1110 return quoted_printable_encode($str);
1111 }
1112 elseif (function_exists('imap_8bit'))
1113 {
1114 return imap_8bit($str);
1115 }
Andrey Andreev683b34d2012-10-09 15:00:00 +03001116 }
1117
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001118 // Reduce multiple spaces & remove nulls
Andrey Andreev56454792012-05-17 14:32:19 +03001119 $str = preg_replace(array('| +|', '/\x00+/'), array(' ', ''), $str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001120
1121 // Standardize newlines
1122 if (strpos($str, "\r") !== FALSE)
1123 {
1124 $str = str_replace(array("\r\n", "\r"), "\n", $str);
1125 }
1126
Derek Allard2067d1a2008-11-13 22:59:24 +00001127 $escape = '=';
1128 $output = '';
1129
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001130 foreach (explode("\n", $str) as $line)
Derek Allard2067d1a2008-11-13 22:59:24 +00001131 {
1132 $length = strlen($line);
1133 $temp = '';
1134
1135 // Loop through each character in the line to add soft-wrap
1136 // characters at the end of a line " =\r\n" and add the newly
1137 // processed line(s) to the output (see comment on $crlf class property)
1138 for ($i = 0; $i < $length; $i++)
1139 {
1140 // Grab the next character
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001141 $char = $line[$i];
Derek Allard2067d1a2008-11-13 22:59:24 +00001142 $ascii = ord($char);
1143
1144 // Convert spaces and tabs but only if it's the end of the line
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001145 if ($i === ($length - 1) && ($ascii === 32 OR $ascii === 9))
Derek Allard2067d1a2008-11-13 22:59:24 +00001146 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001147 $char = $escape.sprintf('%02s', dechex($ascii));
Derek Allard2067d1a2008-11-13 22:59:24 +00001148 }
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001149 elseif ($ascii === 61) // encode = signs
Derek Allard2067d1a2008-11-13 22:59:24 +00001150 {
Derek Jones37f4b9c2011-07-01 17:56:50 -05001151 $char = $escape.strtoupper(sprintf('%02s', dechex($ascii))); // =3D
Derek Allard2067d1a2008-11-13 22:59:24 +00001152 }
1153
1154 // If we're at the character limit, add the line to the output,
1155 // reset our temp variable, and keep on chuggin'
Andrey Andreeve8bc5f42012-10-10 11:13:59 +03001156 if ((strlen($temp) + strlen($char)) >= 76)
Derek Allard2067d1a2008-11-13 22:59:24 +00001157 {
1158 $output .= $temp.$escape.$this->crlf;
1159 $temp = '';
1160 }
1161
1162 // Add the character to our temporary line
1163 $temp .= $char;
1164 }
1165
1166 // Add our completed line to the output
1167 $output .= $temp.$this->crlf;
1168 }
1169
1170 // get rid of extra CRLF tacked onto the end
Andrey Andreev59c5b532012-03-01 14:09:51 +02001171 return substr($output, 0, strlen($this->crlf) * -1);
Derek Allard2067d1a2008-11-13 22:59:24 +00001172 }
1173
1174 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001175
Derek Allard2067d1a2008-11-13 22:59:24 +00001176 /**
1177 * Prep Q Encoding
1178 *
Andrey Andreev925dd902012-10-19 11:06:31 +03001179 * Performs "Q Encoding" on a string for use in email headers.
1180 * It's related but not identical to quoted-printable, so it has its
1181 * own method.
Derek Allard2067d1a2008-11-13 22:59:24 +00001182 *
Andrey Andreev081c9462012-03-01 12:58:11 +02001183 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +02001184 * @return string
Derek Allard2067d1a2008-11-13 22:59:24 +00001185 */
Andrey Andreev925dd902012-10-19 11:06:31 +03001186 protected function _prep_q_encoding($str)
Derek Allard2067d1a2008-11-13 22:59:24 +00001187 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001188 $str = str_replace(array("\r", "\n"), '', $str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001189
Andrey Andreev925dd902012-10-19 11:06:31 +03001190 if ($this->charset === 'UTF-8')
Derek Allard2067d1a2008-11-13 22:59:24 +00001191 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001192 if (MB_ENABLED === TRUE)
1193 {
1194 return mb_encode_mimeheader($str, $this->charset, 'Q', $this->crlf);
1195 }
1196 elseif (extension_loaded('iconv'))
1197 {
1198 $output = @iconv_mime_encode('', $str,
1199 array(
1200 'scheme' => 'Q',
1201 'line-length' => 76,
1202 'input-charset' => $this->charset,
1203 'output-charset' => $this->charset,
1204 'line-break-chars' => $this->crlf
1205 )
1206 );
1207
1208 // There are reports that iconv_mime_encode() might fail and return FALSE
1209 if ($output !== FALSE)
1210 {
1211 // iconv_mime_encode() will always put a header field name.
1212 // We've passed it an empty one, but it still prepends our
1213 // encoded string with ': ', so we need to strip it.
1214 return substr($output, 2);
1215 }
1216
1217 $chars = iconv_strlen($str, 'UTF-8');
1218 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001219 }
1220
Andrey Andreev925dd902012-10-19 11:06:31 +03001221 // We might already have this set for UTF-8
1222 isset($chars) OR $chars = strlen($str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001223
Andrey Andreev925dd902012-10-19 11:06:31 +03001224 $output = '=?'.$this->charset.'?Q?';
1225 for ($i = 0, $length = strlen($output), $iconv = extension_loaded('iconv'); $i < $chars; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001226 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001227 $chr = ($this->charset === 'UTF-8' && $iconv === TRUE)
1228 ? '='.implode('=', str_split(strtoupper(bin2hex(iconv_substr($str, $i, 1, $this->charset))), 2))
1229 : '='.strtoupper(bin2hex($str[$i]));
Derek Allard2067d1a2008-11-13 22:59:24 +00001230
Andrey Andreev925dd902012-10-19 11:06:31 +03001231 // RFC 2045 sets a limit of 76 characters per line.
1232 // We'll append ?= to the end of each line though.
1233 if ($length + ($l = strlen($chr)) > 74)
Derek Allard2067d1a2008-11-13 22:59:24 +00001234 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001235 $output .= '?='.$this->crlf // EOL
1236 .' =?'.$this->charset.'?Q?'.$chr; // New line
1237 $length = 6 + strlen($this->charset) + $l; // Reset the length for the new line
Derek Allard2067d1a2008-11-13 22:59:24 +00001238 }
Andrey Andreev925dd902012-10-19 11:06:31 +03001239 else
Derek Allard2067d1a2008-11-13 22:59:24 +00001240 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001241 $output .= $chr;
1242 $length += $l;
Derek Allard2067d1a2008-11-13 22:59:24 +00001243 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001244 }
1245
Andrey Andreev925dd902012-10-19 11:06:31 +03001246 // End the header
1247 return $output.'?=';
Derek Allard2067d1a2008-11-13 22:59:24 +00001248 }
1249
1250 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001251
Derek Allard2067d1a2008-11-13 22:59:24 +00001252 /**
1253 * Send Email
1254 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001255 * @return bool
1256 */
Alex Bilbied7bc8d02012-07-30 09:46:20 +01001257 public function send($auto_clear = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001258 {
Alex Bilbied261b1e2012-06-02 11:12:16 +01001259 if ($this->_replyto_flag === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001260 {
1261 $this->reply_to($this->_headers['From']);
1262 }
1263
Andrey Andreev76f15c92012-03-01 13:05:07 +02001264 if ( ! isset($this->_recipients) && ! isset($this->_headers['To'])
1265 && ! isset($this->_bcc_array) && ! isset($this->_headers['Bcc'])
1266 && ! isset($this->_headers['Cc']))
Derek Allard2067d1a2008-11-13 22:59:24 +00001267 {
patworkb0707982011-04-08 15:10:05 +02001268 $this->_set_error_message('lang:email_no_recipients');
Derek Allard2067d1a2008-11-13 22:59:24 +00001269 return FALSE;
1270 }
1271
1272 $this->_build_headers();
1273
Andrey Andreev76f15c92012-03-01 13:05:07 +02001274 if ($this->bcc_batch_mode && count($this->_bcc_array) > $this->bcc_batch_size)
Derek Allard2067d1a2008-11-13 22:59:24 +00001275 {
Alex Bilbieb901e732012-07-30 09:44:57 +01001276 $result = $this->batch_bcc_send();
Alex Bilbied7bc8d02012-07-30 09:46:20 +01001277
Alex Bilbiea87aab32012-07-30 09:50:37 +01001278 if ($result && $auto_clear)
Alex Bilbied7bc8d02012-07-30 09:46:20 +01001279 {
1280 $this->clear();
1281 }
1282
Alex Bilbieb901e732012-07-30 09:44:57 +01001283 return $result;
Derek Allard2067d1a2008-11-13 22:59:24 +00001284 }
1285
1286 $this->_build_message();
Alex Bilbieb901e732012-07-30 09:44:57 +01001287 $result = $this->_spool_email();
Andrey Andreevbdb99992012-07-30 17:38:05 +03001288
Alex Bilbiea87aab32012-07-30 09:50:37 +01001289 if ($result && $auto_clear)
Alex Bilbied7bc8d02012-07-30 09:46:20 +01001290 {
1291 $this->clear();
1292 }
Alex Bilbiea87aab32012-07-30 09:50:37 +01001293
Alex Bilbieb901e732012-07-30 09:44:57 +01001294 return $result;
Derek Allard2067d1a2008-11-13 22:59:24 +00001295 }
Barry Mienydd671972010-10-04 16:33:58 +02001296
Derek Allard2067d1a2008-11-13 22:59:24 +00001297 // --------------------------------------------------------------------
1298
1299 /**
Andrey Andreev081c9462012-03-01 12:58:11 +02001300 * Batch Bcc Send. Sends groups of BCCs in batches
Derek Allard2067d1a2008-11-13 22:59:24 +00001301 *
Andrey Andreev081c9462012-03-01 12:58:11 +02001302 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +00001303 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +00001304 public function batch_bcc_send()
Derek Allard2067d1a2008-11-13 22:59:24 +00001305 {
Andrey Andreev59c5b532012-03-01 14:09:51 +02001306 $float = $this->bcc_batch_size - 1;
1307 $set = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001308 $chunk = array();
1309
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001310 for ($i = 0, $c = count($this->_bcc_array); $i < $c; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001311 {
1312 if (isset($this->_bcc_array[$i]))
1313 {
Andrey Andreev59c5b532012-03-01 14:09:51 +02001314 $set .= ', '.$this->_bcc_array[$i];
Derek Allard2067d1a2008-11-13 22:59:24 +00001315 }
1316
Alex Bilbied261b1e2012-06-02 11:12:16 +01001317 if ($i === $float)
Derek Allard2067d1a2008-11-13 22:59:24 +00001318 {
1319 $chunk[] = substr($set, 1);
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001320 $float += $this->bcc_batch_size;
Andrey Andreev59c5b532012-03-01 14:09:51 +02001321 $set = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001322 }
1323
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001324 if ($i === $c-1)
Derek Allard2067d1a2008-11-13 22:59:24 +00001325 {
1326 $chunk[] = substr($set, 1);
1327 }
1328 }
1329
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001330 for ($i = 0, $c = count($chunk); $i < $c; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001331 {
1332 unset($this->_headers['Bcc']);
Derek Allard2067d1a2008-11-13 22:59:24 +00001333
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001334 $bcc = $this->clean_email($this->_str_to_array($chunk[$i]));
Derek Allard2067d1a2008-11-13 22:59:24 +00001335
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001336 if ($this->protocol !== 'smtp')
Derek Allard2067d1a2008-11-13 22:59:24 +00001337 {
Mickey Wubfc1cad2012-05-31 22:28:40 -07001338 $this->set_header('Bcc', implode(', ', $bcc));
Derek Allard2067d1a2008-11-13 22:59:24 +00001339 }
1340 else
1341 {
1342 $this->_bcc_array = $bcc;
1343 }
1344
1345 $this->_build_message();
1346 $this->_spool_email();
1347 }
1348 }
Barry Mienydd671972010-10-04 16:33:58 +02001349
Derek Allard2067d1a2008-11-13 22:59:24 +00001350 // --------------------------------------------------------------------
1351
1352 /**
1353 * Unwrap special elements
1354 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001355 * @return void
1356 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001357 protected function _unwrap_specials()
Derek Allard2067d1a2008-11-13 22:59:24 +00001358 {
Andrey Andreev56454792012-05-17 14:32:19 +03001359 $this->_finalbody = preg_replace_callback('/\{unwrap\}(.*?)\{\/unwrap\}/si', array($this, '_remove_nl_callback'), $this->_finalbody);
Derek Allard2067d1a2008-11-13 22:59:24 +00001360 }
Barry Mienydd671972010-10-04 16:33:58 +02001361
Derek Allard2067d1a2008-11-13 22:59:24 +00001362 // --------------------------------------------------------------------
1363
1364 /**
1365 * Strip line-breaks via callback
1366 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001367 * @return string
1368 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001369 protected function _remove_nl_callback($matches)
Derek Allard2067d1a2008-11-13 22:59:24 +00001370 {
1371 if (strpos($matches[1], "\r") !== FALSE OR strpos($matches[1], "\n") !== FALSE)
1372 {
1373 $matches[1] = str_replace(array("\r\n", "\r", "\n"), '', $matches[1]);
1374 }
1375
1376 return $matches[1];
1377 }
Barry Mienydd671972010-10-04 16:33:58 +02001378
Derek Allard2067d1a2008-11-13 22:59:24 +00001379 // --------------------------------------------------------------------
1380
1381 /**
1382 * Spool mail to the mail server
1383 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001384 * @return bool
1385 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001386 protected function _spool_email()
Derek Allard2067d1a2008-11-13 22:59:24 +00001387 {
1388 $this->_unwrap_specials();
1389
Andrey Andreev56454792012-05-17 14:32:19 +03001390 $method = '_send_with_'.$this->_get_protocol();
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001391 if ( ! $this->$method())
Derek Allard2067d1a2008-11-13 22:59:24 +00001392 {
Andrey Andreev56454792012-05-17 14:32:19 +03001393 $this->_set_error_message('lang:email_send_failure_'.($this->_get_protocol() === 'mail' ? 'phpmail' : $this->_get_protocol()));
Diogo Osório7fcc7bd2012-03-02 16:54:52 +00001394 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001395 }
1396
patworkb0707982011-04-08 15:10:05 +02001397 $this->_set_error_message('lang:email_sent', $this->_get_protocol());
Derek Allard2067d1a2008-11-13 22:59:24 +00001398 return TRUE;
1399 }
Barry Mienydd671972010-10-04 16:33:58 +02001400
Derek Allard2067d1a2008-11-13 22:59:24 +00001401 // --------------------------------------------------------------------
1402
1403 /**
1404 * Send using mail()
1405 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001406 * @return bool
1407 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001408 protected function _send_with_mail()
Derek Allard2067d1a2008-11-13 22:59:24 +00001409 {
Andrey Andreev8a7078b2012-10-17 10:52:49 +03001410 if (is_array($this->_recipients))
1411 {
1412 $this->_recipients = implode(', ', $this->_recipients);
1413 }
1414
Alex Bilbied261b1e2012-06-02 11:12:16 +01001415 if ($this->_safe_mode === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001416 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001417 return mail($this->_recipients, $this->_subject, $this->_finalbody, $this->_header_str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001418 }
1419 else
1420 {
1421 // most documentation of sendmail using the "-f" flag lacks a space after it, however
1422 // we've encountered servers that seem to require it to be in place.
Melounek58dfc082012-06-29 08:43:47 +02001423 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 +00001424 }
1425 }
Barry Mienydd671972010-10-04 16:33:58 +02001426
Derek Allard2067d1a2008-11-13 22:59:24 +00001427 // --------------------------------------------------------------------
1428
1429 /**
1430 * Send using Sendmail
1431 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001432 * @return bool
1433 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001434 protected function _send_with_sendmail()
Derek Allard2067d1a2008-11-13 22:59:24 +00001435 {
Melounek58dfc082012-06-29 08:43:47 +02001436 $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 +00001437
Derek Jones4cefaa42009-04-29 19:13:56 +00001438 if ($fp === FALSE OR $fp === NULL)
1439 {
1440 // server probably has popen disabled, so nothing we can do to get a verbose error.
1441 return FALSE;
1442 }
Derek Jones71141ce2010-03-02 16:41:20 -06001443
Derek Jonesc630bcf2008-11-17 21:09:45 +00001444 fputs($fp, $this->_header_str);
1445 fputs($fp, $this->_finalbody);
1446
Barry Mienydd671972010-10-04 16:33:58 +02001447 $status = pclose($fp);
Eric Barnes6113f542010-12-29 13:36:12 -05001448
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001449 if ($status !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001450 {
patworkb0707982011-04-08 15:10:05 +02001451 $this->_set_error_message('lang:email_exit_status', $status);
1452 $this->_set_error_message('lang:email_no_socket');
Derek Allard2067d1a2008-11-13 22:59:24 +00001453 return FALSE;
1454 }
1455
Derek Allard2067d1a2008-11-13 22:59:24 +00001456 return TRUE;
1457 }
Barry Mienydd671972010-10-04 16:33:58 +02001458
Derek Allard2067d1a2008-11-13 22:59:24 +00001459 // --------------------------------------------------------------------
1460
1461 /**
1462 * Send using SMTP
1463 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001464 * @return bool
1465 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001466 protected function _send_with_smtp()
Derek Allard2067d1a2008-11-13 22:59:24 +00001467 {
Alex Bilbied261b1e2012-06-02 11:12:16 +01001468 if ($this->smtp_host === '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001469 {
patworkb0707982011-04-08 15:10:05 +02001470 $this->_set_error_message('lang:email_no_hostname');
Derek Allard2067d1a2008-11-13 22:59:24 +00001471 return FALSE;
1472 }
1473
Diogo Osório593f7982012-03-02 18:04:17 +00001474 if ( ! $this->_smtp_connect() OR ! $this->_smtp_authenticate())
Diogo Osório7fcc7bd2012-03-02 16:54:52 +00001475 {
1476 return FALSE;
1477 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001478
1479 $this->_send_command('from', $this->clean_email($this->_headers['From']));
1480
Pascal Kriete14287f32011-02-14 13:39:34 -05001481 foreach ($this->_recipients as $val)
Derek Allard2067d1a2008-11-13 22:59:24 +00001482 {
1483 $this->_send_command('to', $val);
1484 }
1485
1486 if (count($this->_cc_array) > 0)
1487 {
Pascal Kriete14287f32011-02-14 13:39:34 -05001488 foreach ($this->_cc_array as $val)
Derek Allard2067d1a2008-11-13 22:59:24 +00001489 {
Alex Bilbied261b1e2012-06-02 11:12:16 +01001490 if ($val !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001491 {
1492 $this->_send_command('to', $val);
1493 }
1494 }
1495 }
1496
1497 if (count($this->_bcc_array) > 0)
1498 {
Pascal Kriete14287f32011-02-14 13:39:34 -05001499 foreach ($this->_bcc_array as $val)
Derek Allard2067d1a2008-11-13 22:59:24 +00001500 {
Alex Bilbied261b1e2012-06-02 11:12:16 +01001501 if ($val !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001502 {
1503 $this->_send_command('to', $val);
1504 }
1505 }
1506 }
1507
1508 $this->_send_command('data');
1509
1510 // perform dot transformation on any lines that begin with a dot
Andrey Andreev56454792012-05-17 14:32:19 +03001511 $this->_send_data($this->_header_str.preg_replace('/^\./m', '..$1', $this->_finalbody));
Derek Allard2067d1a2008-11-13 22:59:24 +00001512
1513 $this->_send_data('.');
1514
1515 $reply = $this->_get_smtp_data();
1516
1517 $this->_set_error_message($reply);
1518
Andrey Andreev3dad2e72012-06-14 15:10:56 +03001519 if (strpos($reply, '250') !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001520 {
patworkb0707982011-04-08 15:10:05 +02001521 $this->_set_error_message('lang:email_smtp_error', $reply);
Derek Allard2067d1a2008-11-13 22:59:24 +00001522 return FALSE;
1523 }
1524
1525 $this->_send_command('quit');
1526 return TRUE;
1527 }
Barry Mienydd671972010-10-04 16:33:58 +02001528
Derek Allard2067d1a2008-11-13 22:59:24 +00001529 // --------------------------------------------------------------------
1530
1531 /**
1532 * SMTP Connect
1533 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001534 * @param string
1535 * @return string
1536 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001537 protected function _smtp_connect()
Derek Allard2067d1a2008-11-13 22:59:24 +00001538 {
Alex Bilbied261b1e2012-06-02 11:12:16 +01001539 $ssl = ($this->smtp_crypto === 'ssl') ? 'ssl://' : NULL;
Radu Potop4c589ae2011-09-29 10:19:55 +03001540
Radu Potopbbf04b02011-09-28 13:57:51 +03001541 $this->_smtp_connect = fsockopen($ssl.$this->smtp_host,
Andrey Andreev56454792012-05-17 14:32:19 +03001542 $this->smtp_port,
1543 $errno,
1544 $errstr,
1545 $this->smtp_timeout);
Derek Allard2067d1a2008-11-13 22:59:24 +00001546
Pascal Kriete14287f32011-02-14 13:39:34 -05001547 if ( ! is_resource($this->_smtp_connect))
Derek Allard2067d1a2008-11-13 22:59:24 +00001548 {
Andrey Andreev56454792012-05-17 14:32:19 +03001549 $this->_set_error_message('lang:email_smtp_error', $errno.' '.$errstr);
Derek Allard2067d1a2008-11-13 22:59:24 +00001550 return FALSE;
1551 }
1552
1553 $this->_set_error_message($this->_get_smtp_data());
Radu Potopbbf04b02011-09-28 13:57:51 +03001554
Alex Bilbied261b1e2012-06-02 11:12:16 +01001555 if ($this->smtp_crypto === 'tls')
Radu Potopbbf04b02011-09-28 13:57:51 +03001556 {
1557 $this->_send_command('hello');
1558 $this->_send_command('starttls');
Phil Sturgeonc00a5a02011-11-22 15:25:32 +00001559
Radu Potop4c589ae2011-09-29 10:19:55 +03001560 $crypto = stream_socket_enable_crypto($this->_smtp_connect, TRUE, STREAM_CRYPTO_METHOD_TLS_CLIENT);
Radu Potop4c589ae2011-09-29 10:19:55 +03001561
Sean Fishere862ddd2011-10-26 22:45:00 -03001562 if ($crypto !== TRUE)
1563 {
1564 $this->_set_error_message('lang:email_smtp_error', $this->_get_smtp_data());
1565 return FALSE;
1566 }
Radu Potopbbf04b02011-09-28 13:57:51 +03001567 }
1568
Derek Allard2067d1a2008-11-13 22:59:24 +00001569 return $this->_send_command('hello');
1570 }
Barry Mienydd671972010-10-04 16:33:58 +02001571
Derek Allard2067d1a2008-11-13 22:59:24 +00001572 // --------------------------------------------------------------------
1573
1574 /**
1575 * Send SMTP command
1576 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001577 * @param string
1578 * @param string
1579 * @return string
1580 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001581 protected function _send_command($cmd, $data = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001582 {
1583 switch ($cmd)
1584 {
1585 case 'hello' :
1586
Andrey Andreev56454792012-05-17 14:32:19 +03001587 if ($this->_smtp_auth OR $this->_get_encoding() === '8bit')
1588 {
1589 $this->_send_data('EHLO '.$this->_get_hostname());
1590 }
1591 else
1592 {
1593 $this->_send_data('HELO '.$this->_get_hostname());
1594 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001595
1596 $resp = 250;
1597 break;
Radu Potopbbf04b02011-09-28 13:57:51 +03001598 case 'starttls' :
1599
1600 $this->_send_data('STARTTLS');
Radu Potopbbf04b02011-09-28 13:57:51 +03001601 $resp = 220;
1602 break;
Derek Allard2067d1a2008-11-13 22:59:24 +00001603 case 'from' :
1604
1605 $this->_send_data('MAIL FROM:<'.$data.'>');
Derek Allard2067d1a2008-11-13 22:59:24 +00001606 $resp = 250;
1607 break;
Andrey Andreev56454792012-05-17 14:32:19 +03001608 case 'to' :
1609
leandronf7686c122012-03-22 08:07:31 -03001610 if ($this->dsn)
1611 {
leandronfb4552942012-03-21 23:54:26 -03001612 $this->_send_data('RCPT TO:<'.$data.'> NOTIFY=SUCCESS,DELAY,FAILURE ORCPT=rfc822;'.$data);
leandronf7686c122012-03-22 08:07:31 -03001613 }
leandronfb4552942012-03-21 23:54:26 -03001614 else
leandronf7686c122012-03-22 08:07:31 -03001615 {
leandronfb4552942012-03-21 23:54:26 -03001616 $this->_send_data('RCPT TO:<'.$data.'>');
leandronf7686c122012-03-22 08:07:31 -03001617 }
Andrey Andreev56454792012-05-17 14:32:19 +03001618
Derek Allard2067d1a2008-11-13 22:59:24 +00001619 $resp = 250;
1620 break;
1621 case 'data' :
1622
1623 $this->_send_data('DATA');
Derek Allard2067d1a2008-11-13 22:59:24 +00001624 $resp = 354;
1625 break;
1626 case 'quit' :
1627
1628 $this->_send_data('QUIT');
Derek Allard2067d1a2008-11-13 22:59:24 +00001629 $resp = 221;
1630 break;
1631 }
1632
1633 $reply = $this->_get_smtp_data();
1634
Andrey Andreev56454792012-05-17 14:32:19 +03001635 $this->_debug_msg[] = '<pre>'.$cmd.': '.$reply.'</pre>';
Derek Allard2067d1a2008-11-13 22:59:24 +00001636
Andrey Andreevba261762012-06-11 14:11:35 +03001637 if ( (int) substr($reply, 0, 3) !== $resp)
Derek Allard2067d1a2008-11-13 22:59:24 +00001638 {
patworkb0707982011-04-08 15:10:05 +02001639 $this->_set_error_message('lang:email_smtp_error', $reply);
Derek Allard2067d1a2008-11-13 22:59:24 +00001640 return FALSE;
1641 }
1642
Alex Bilbied261b1e2012-06-02 11:12:16 +01001643 if ($cmd === 'quit')
Derek Allard2067d1a2008-11-13 22:59:24 +00001644 {
1645 fclose($this->_smtp_connect);
1646 }
1647
1648 return TRUE;
1649 }
Barry Mienydd671972010-10-04 16:33:58 +02001650
Derek Allard2067d1a2008-11-13 22:59:24 +00001651 // --------------------------------------------------------------------
1652
1653 /**
Derek Jones37f4b9c2011-07-01 17:56:50 -05001654 * SMTP Authenticate
Derek Allard2067d1a2008-11-13 22:59:24 +00001655 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001656 * @return bool
1657 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001658 protected function _smtp_authenticate()
Derek Allard2067d1a2008-11-13 22:59:24 +00001659 {
1660 if ( ! $this->_smtp_auth)
1661 {
1662 return TRUE;
1663 }
1664
Alex Bilbied261b1e2012-06-02 11:12:16 +01001665 if ($this->smtp_user === '' && $this->smtp_pass === '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001666 {
patworkb0707982011-04-08 15:10:05 +02001667 $this->_set_error_message('lang:email_no_smtp_unpw');
Derek Allard2067d1a2008-11-13 22:59:24 +00001668 return FALSE;
1669 }
1670
1671 $this->_send_data('AUTH LOGIN');
1672
1673 $reply = $this->_get_smtp_data();
1674
Andrey Andreev3dad2e72012-06-14 15:10:56 +03001675 if (strpos($reply, '334') !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001676 {
patworkb0707982011-04-08 15:10:05 +02001677 $this->_set_error_message('lang:email_failed_smtp_login', $reply);
Derek Allard2067d1a2008-11-13 22:59:24 +00001678 return FALSE;
1679 }
1680
1681 $this->_send_data(base64_encode($this->smtp_user));
1682
1683 $reply = $this->_get_smtp_data();
1684
Andrey Andreev3dad2e72012-06-14 15:10:56 +03001685 if (strpos($reply, '334') !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001686 {
patworkb0707982011-04-08 15:10:05 +02001687 $this->_set_error_message('lang:email_smtp_auth_un', $reply);
Derek Allard2067d1a2008-11-13 22:59:24 +00001688 return FALSE;
1689 }
1690
1691 $this->_send_data(base64_encode($this->smtp_pass));
1692
1693 $reply = $this->_get_smtp_data();
1694
Andrey Andreev3dad2e72012-06-14 15:10:56 +03001695 if (strpos($reply, '235') !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001696 {
patworkb0707982011-04-08 15:10:05 +02001697 $this->_set_error_message('lang:email_smtp_auth_pw', $reply);
Derek Allard2067d1a2008-11-13 22:59:24 +00001698 return FALSE;
1699 }
1700
1701 return TRUE;
1702 }
Barry Mienydd671972010-10-04 16:33:58 +02001703
Derek Allard2067d1a2008-11-13 22:59:24 +00001704 // --------------------------------------------------------------------
1705
1706 /**
1707 * Send SMTP data
1708 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001709 * @return bool
1710 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001711 protected function _send_data($data)
Derek Allard2067d1a2008-11-13 22:59:24 +00001712 {
1713 if ( ! fwrite($this->_smtp_connect, $data . $this->newline))
1714 {
patworkb0707982011-04-08 15:10:05 +02001715 $this->_set_error_message('lang:email_smtp_data_failure', $data);
Derek Allard2067d1a2008-11-13 22:59:24 +00001716 return FALSE;
1717 }
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001718
1719 return TRUE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001720 }
Barry Mienydd671972010-10-04 16:33:58 +02001721
Derek Allard2067d1a2008-11-13 22:59:24 +00001722 // --------------------------------------------------------------------
1723
1724 /**
1725 * Get SMTP data
1726 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001727 * @return string
1728 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001729 protected function _get_smtp_data()
Derek Allard2067d1a2008-11-13 22:59:24 +00001730 {
Andrey Andreev56454792012-05-17 14:32:19 +03001731 $data = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001732
1733 while ($str = fgets($this->_smtp_connect, 512))
1734 {
1735 $data .= $str;
1736
Alex Bilbied261b1e2012-06-02 11:12:16 +01001737 if ($str[3] === ' ')
Derek Allard2067d1a2008-11-13 22:59:24 +00001738 {
1739 break;
1740 }
1741 }
1742
1743 return $data;
1744 }
Barry Mienydd671972010-10-04 16:33:58 +02001745
Derek Allard2067d1a2008-11-13 22:59:24 +00001746 // --------------------------------------------------------------------
1747
1748 /**
1749 * Get Hostname
1750 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001751 * @return string
1752 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001753 protected function _get_hostname()
Derek Allard2067d1a2008-11-13 22:59:24 +00001754 {
Andrey Andreev59c5b532012-03-01 14:09:51 +02001755 return isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : 'localhost.localdomain';
Derek Allard2067d1a2008-11-13 22:59:24 +00001756 }
Barry Mienydd671972010-10-04 16:33:58 +02001757
Derek Allard2067d1a2008-11-13 22:59:24 +00001758 // --------------------------------------------------------------------
1759
1760 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001761 * Get Debug Message
1762 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001763 * @return string
1764 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +00001765 public function print_debugger()
Derek Allard2067d1a2008-11-13 22:59:24 +00001766 {
1767 $msg = '';
1768
1769 if (count($this->_debug_msg) > 0)
1770 {
1771 foreach ($this->_debug_msg as $val)
1772 {
1773 $msg .= $val;
1774 }
1775 }
1776
Andrey Andreev59c5b532012-03-01 14:09:51 +02001777 return $msg.'<pre>'.$this->_header_str."\n".htmlspecialchars($this->_subject)."\n".htmlspecialchars($this->_finalbody).'</pre>';
Derek Allard2067d1a2008-11-13 22:59:24 +00001778 }
Barry Mienydd671972010-10-04 16:33:58 +02001779
Derek Allard2067d1a2008-11-13 22:59:24 +00001780 // --------------------------------------------------------------------
1781
1782 /**
1783 * Set Message
1784 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001785 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +02001786 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +00001787 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001788 protected function _set_error_message($msg, $val = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001789 {
1790 $CI =& get_instance();
1791 $CI->lang->load('email');
1792
Andrey Andreev76f15c92012-03-01 13:05:07 +02001793 if (substr($msg, 0, 5) !== 'lang:' OR FALSE === ($line = $CI->lang->line(substr($msg, 5))))
Derek Allard2067d1a2008-11-13 22:59:24 +00001794 {
Andrey Andreev56454792012-05-17 14:32:19 +03001795 $this->_debug_msg[] = str_replace('%s', $val, $msg).'<br />';
Derek Allard2067d1a2008-11-13 22:59:24 +00001796 }
1797 else
1798 {
Andrey Andreev56454792012-05-17 14:32:19 +03001799 $this->_debug_msg[] = str_replace('%s', $val, $line).'<br />';
Derek Allard2067d1a2008-11-13 22:59:24 +00001800 }
1801 }
Barry Mienydd671972010-10-04 16:33:58 +02001802
Derek Allard2067d1a2008-11-13 22:59:24 +00001803 // --------------------------------------------------------------------
1804
1805 /**
1806 * Mime Types
1807 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001808 * @param string
1809 * @return string
1810 */
Andrey Andreev59c5b532012-03-01 14:09:51 +02001811 protected function _mime_types($ext = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001812 {
Andrey Andreev6ef498b2012-06-05 22:01:58 +03001813 static $mimes;
Derek Allard2067d1a2008-11-13 22:59:24 +00001814
Andrey Andreev6ef498b2012-06-05 22:01:58 +03001815 $ext = strtolower($ext);
1816
1817 if ( ! is_array($mimes))
1818 {
1819 $mimes =& get_mimes();
1820 }
1821
1822 if (isset($mimes[$ext]))
1823 {
1824 return is_array($mimes[$ext])
1825 ? current($mimes[$ext])
1826 : $mimes[$ext];
1827 }
1828
1829 return 'application/x-unknown-content-type';
Derek Allard2067d1a2008-11-13 22:59:24 +00001830 }
1831
1832}
Derek Allard2067d1a2008-11-13 22:59:24 +00001833
1834/* End of file Email.php */
Andrey Andreev50988592012-10-08 20:46:04 +03001835/* Location: ./system/libraries/Email.php */