blob: 9207fc9f0b295f484f2c29cafaf610a3aa4bfedb [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();
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
993 if ($this->send_multipart !== FALSE)
994 {
Andrey Andreev56454792012-05-17 14:32:19 +0300995 $this->_finalbody .= '--'.$this->_alt_boundary.'--';
Derek Allard2067d1a2008-11-13 22:59:24 +0000996 }
997
Derek Allard2067d1a2008-11-13 22:59:24 +0000998 return;
999
Derek Allard2067d1a2008-11-13 22:59:24 +00001000 case 'plain-attach' :
1001
Andrey Andreev56454792012-05-17 14:32:19 +03001002 $hdr .= 'Content-Type: multipart/'.$this->multipart.'; boundary="'.$this->_atc_boundary.'"'.$this->newline.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001003
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001004 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +00001005 {
1006 $this->_header_str .= $hdr;
Eric Barnes6113f542010-12-29 13:36:12 -05001007 }
1008
Andrey Andreev56454792012-05-17 14:32:19 +03001009 $body .= $this->_get_mime_message().$this->newline.$this->newline
1010 .'--'.$this->_atc_boundary.$this->newline
Derek Allard2067d1a2008-11-13 22:59:24 +00001011
Andrey Andreev56454792012-05-17 14:32:19 +03001012 .'Content-Type: text/plain; charset='.$this->charset.$this->newline
1013 .'Content-Transfer-Encoding: '.$this->_get_encoding().$this->newline.$this->newline
Derek Allard2067d1a2008-11-13 22:59:24 +00001014
Andrey Andreev56454792012-05-17 14:32:19 +03001015 .$this->_body.$this->newline.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001016
1017 break;
1018 case 'html-attach' :
1019
Andrey Andreev56454792012-05-17 14:32:19 +03001020 $hdr .= 'Content-Type: multipart/'.$this->multipart.'; boundary="'.$this->_atc_boundary.'"'.$this->newline.$this->newline;
Eric Barnes6113f542010-12-29 13:36:12 -05001021
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001022 if ($this->_get_protocol() === 'mail')
Derek Allard2067d1a2008-11-13 22:59:24 +00001023 {
1024 $this->_header_str .= $hdr;
Derek Allard2067d1a2008-11-13 22:59:24 +00001025 }
1026
Andrey Andreev56454792012-05-17 14:32:19 +03001027 $body .= $this->_get_mime_message().$this->newline.$this->newline
1028 .'--'.$this->_atc_boundary.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001029
Andrey Andreev56454792012-05-17 14:32:19 +03001030 .'Content-Type: multipart/alternative; boundary="'.$this->_alt_boundary.'"'.$this->newline.$this->newline
1031 .'--'.$this->_alt_boundary.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001032
Andrey Andreev56454792012-05-17 14:32:19 +03001033 .'Content-Type: text/plain; charset='.$this->charset.$this->newline
1034 .'Content-Transfer-Encoding: '.$this->_get_encoding().$this->newline.$this->newline
1035 .$this->_get_alt_message().$this->newline.$this->newline.'--'.$this->_alt_boundary.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001036
Andrey Andreev56454792012-05-17 14:32:19 +03001037 .'Content-Type: text/html; charset='.$this->charset.$this->newline
1038 .'Content-Transfer-Encoding: quoted-printable'.$this->newline.$this->newline
Brandon Jones485d7412010-11-09 16:38:17 -05001039
Andrey Andreev56454792012-05-17 14:32:19 +03001040 .$this->_prep_quoted_printable($this->_body).$this->newline.$this->newline
1041 .'--'.$this->_alt_boundary.'--'.$this->newline.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001042
1043 break;
1044 }
1045
1046 $attachment = array();
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001047 for ($i = 0, $c = count($this->_attachments), $z = 0; $i < $c; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001048 {
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001049 $filename = $this->_attachments[$i]['name'][0];
1050 $basename = is_null($this->_attachments[$i]['name'][1])
1051 ? basename($filename) : $this->_attachments[$i]['name'][1];
1052 $ctype = $this->_attachments[$i]['type'];
Matteo Mattei5688d582012-03-13 19:29:29 +01001053 $file_content = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001054
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001055 if ($ctype === '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001056 {
Matteo Mattei5688d582012-03-13 19:29:29 +01001057 if ( ! file_exists($filename))
1058 {
1059 $this->_set_error_message('lang:email_attachment_missing', $filename);
1060 return FALSE;
1061 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001062
Matteo Mattei5688d582012-03-13 19:29:29 +01001063 $file = filesize($filename) +1;
1064
1065 if ( ! $fp = fopen($filename, FOPEN_READ))
1066 {
1067 $this->_set_error_message('lang:email_attachment_unreadable', $filename);
1068 return FALSE;
1069 }
1070
Matteo Matteic3b36f42012-03-26 10:27:17 +02001071 $ctype = $this->_mime_types(pathinfo($filename, PATHINFO_EXTENSION));
Matteo Mattei5688d582012-03-13 19:29:29 +01001072 $file_content = fread($fp, $file);
1073 fclose($fp);
1074 }
1075 else
1076 {
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001077 $file_content =& $this->_attachments[$i]['name'][0];
Matteo Mattei5688d582012-03-13 19:29:29 +01001078 }
Andrey Andreev56454792012-05-17 14:32:19 +03001079
1080 $attachment[$z++] = '--'.$this->_atc_boundary.$this->newline
1081 .'Content-type: '.$ctype.'; '
1082 .'name="'.$basename.'"'.$this->newline
Andrey Andreevb8f9a152012-10-27 01:36:51 +03001083 .'Content-Disposition: '.$this->_attachments[$i]['disposition'].';'.$this->newline
Andrey Andreev56454792012-05-17 14:32:19 +03001084 .'Content-Transfer-Encoding: base64'.$this->newline;
Derek Allard2067d1a2008-11-13 22:59:24 +00001085
Matteo Mattei5688d582012-03-13 19:29:29 +01001086 $attachment[$z++] = chunk_split(base64_encode($file_content));
Derek Allard2067d1a2008-11-13 22:59:24 +00001087 }
1088
Andrey Andreev56454792012-05-17 14:32:19 +03001089 $body .= implode($this->newline, $attachment).$this->newline.'--'.$this->_atc_boundary.'--';
1090 $this->_finalbody = ($this->_get_protocol() === 'mail') ? $body : $hdr.$body;
Derek Allard2067d1a2008-11-13 22:59:24 +00001091 return;
1092 }
Barry Mienydd671972010-10-04 16:33:58 +02001093
Derek Allard2067d1a2008-11-13 22:59:24 +00001094 // --------------------------------------------------------------------
1095
1096 /**
1097 * Prep Quoted Printable
1098 *
1099 * Prepares string for Quoted-Printable Content-Transfer-Encoding
1100 * Refer to RFC 2045 http://www.ietf.org/rfc/rfc2045.txt
1101 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001102 * @param string
Derek Allard2067d1a2008-11-13 22:59:24 +00001103 * @return string
1104 */
Andrey Andreev683b34d2012-10-09 15:00:00 +03001105 protected function _prep_quoted_printable($str)
Derek Allard2067d1a2008-11-13 22:59:24 +00001106 {
Andrey Andreev00ea2a92012-10-18 14:59:29 +03001107 // We are intentionally wrapping so mail servers will encode characters
1108 // properly and MUAs will behave, so {unwrap} must go!
1109 $str = str_replace(array('{unwrap}', '{/unwrap}'), '', $str);
1110
Andrey Andreev683b34d2012-10-09 15:00:00 +03001111 // RFC 2045 specifies CRLF as "\r\n".
1112 // However, many developers choose to override that and violate
1113 // the RFC rules due to (apparently) a bug in MS Exchange,
1114 // which only works with "\n".
Andrey Andreev26f0cf92012-10-11 13:52:39 +03001115 if ($this->crlf === "\r\n")
Andrey Andreev683b34d2012-10-09 15:00:00 +03001116 {
Andrey Andreev26f0cf92012-10-11 13:52:39 +03001117 if (is_php('5.3'))
1118 {
1119 return quoted_printable_encode($str);
1120 }
1121 elseif (function_exists('imap_8bit'))
1122 {
1123 return imap_8bit($str);
1124 }
Andrey Andreev683b34d2012-10-09 15:00:00 +03001125 }
1126
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001127 // Reduce multiple spaces & remove nulls
Andrey Andreev56454792012-05-17 14:32:19 +03001128 $str = preg_replace(array('| +|', '/\x00+/'), array(' ', ''), $str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001129
1130 // Standardize newlines
1131 if (strpos($str, "\r") !== FALSE)
1132 {
1133 $str = str_replace(array("\r\n", "\r"), "\n", $str);
1134 }
1135
Derek Allard2067d1a2008-11-13 22:59:24 +00001136 $escape = '=';
1137 $output = '';
1138
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001139 foreach (explode("\n", $str) as $line)
Derek Allard2067d1a2008-11-13 22:59:24 +00001140 {
1141 $length = strlen($line);
1142 $temp = '';
1143
1144 // Loop through each character in the line to add soft-wrap
1145 // characters at the end of a line " =\r\n" and add the newly
1146 // processed line(s) to the output (see comment on $crlf class property)
1147 for ($i = 0; $i < $length; $i++)
1148 {
1149 // Grab the next character
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001150 $char = $line[$i];
Derek Allard2067d1a2008-11-13 22:59:24 +00001151 $ascii = ord($char);
1152
1153 // Convert spaces and tabs but only if it's the end of the line
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001154 if ($i === ($length - 1) && ($ascii === 32 OR $ascii === 9))
Derek Allard2067d1a2008-11-13 22:59:24 +00001155 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001156 $char = $escape.sprintf('%02s', dechex($ascii));
Derek Allard2067d1a2008-11-13 22:59:24 +00001157 }
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001158 elseif ($ascii === 61) // encode = signs
Derek Allard2067d1a2008-11-13 22:59:24 +00001159 {
Derek Jones37f4b9c2011-07-01 17:56:50 -05001160 $char = $escape.strtoupper(sprintf('%02s', dechex($ascii))); // =3D
Derek Allard2067d1a2008-11-13 22:59:24 +00001161 }
1162
1163 // If we're at the character limit, add the line to the output,
1164 // reset our temp variable, and keep on chuggin'
Andrey Andreeve8bc5f42012-10-10 11:13:59 +03001165 if ((strlen($temp) + strlen($char)) >= 76)
Derek Allard2067d1a2008-11-13 22:59:24 +00001166 {
1167 $output .= $temp.$escape.$this->crlf;
1168 $temp = '';
1169 }
1170
1171 // Add the character to our temporary line
1172 $temp .= $char;
1173 }
1174
1175 // Add our completed line to the output
1176 $output .= $temp.$this->crlf;
1177 }
1178
1179 // get rid of extra CRLF tacked onto the end
Andrey Andreev59c5b532012-03-01 14:09:51 +02001180 return substr($output, 0, strlen($this->crlf) * -1);
Derek Allard2067d1a2008-11-13 22:59:24 +00001181 }
1182
1183 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001184
Derek Allard2067d1a2008-11-13 22:59:24 +00001185 /**
1186 * Prep Q Encoding
1187 *
Andrey Andreev925dd902012-10-19 11:06:31 +03001188 * Performs "Q Encoding" on a string for use in email headers.
1189 * It's related but not identical to quoted-printable, so it has its
1190 * own method.
Derek Allard2067d1a2008-11-13 22:59:24 +00001191 *
Andrey Andreev081c9462012-03-01 12:58:11 +02001192 * @param string
Andrey Andreev081c9462012-03-01 12:58:11 +02001193 * @return string
Derek Allard2067d1a2008-11-13 22:59:24 +00001194 */
Andrey Andreev925dd902012-10-19 11:06:31 +03001195 protected function _prep_q_encoding($str)
Derek Allard2067d1a2008-11-13 22:59:24 +00001196 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001197 $str = str_replace(array("\r", "\n"), '', $str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001198
Andrey Andreev925dd902012-10-19 11:06:31 +03001199 if ($this->charset === 'UTF-8')
Derek Allard2067d1a2008-11-13 22:59:24 +00001200 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001201 if (MB_ENABLED === TRUE)
1202 {
1203 return mb_encode_mimeheader($str, $this->charset, 'Q', $this->crlf);
1204 }
1205 elseif (extension_loaded('iconv'))
1206 {
1207 $output = @iconv_mime_encode('', $str,
1208 array(
1209 'scheme' => 'Q',
1210 'line-length' => 76,
1211 'input-charset' => $this->charset,
1212 'output-charset' => $this->charset,
1213 'line-break-chars' => $this->crlf
1214 )
1215 );
1216
1217 // There are reports that iconv_mime_encode() might fail and return FALSE
1218 if ($output !== FALSE)
1219 {
1220 // iconv_mime_encode() will always put a header field name.
1221 // We've passed it an empty one, but it still prepends our
1222 // encoded string with ': ', so we need to strip it.
1223 return substr($output, 2);
1224 }
1225
1226 $chars = iconv_strlen($str, 'UTF-8');
1227 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001228 }
1229
Andrey Andreev925dd902012-10-19 11:06:31 +03001230 // We might already have this set for UTF-8
1231 isset($chars) OR $chars = strlen($str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001232
Andrey Andreev925dd902012-10-19 11:06:31 +03001233 $output = '=?'.$this->charset.'?Q?';
1234 for ($i = 0, $length = strlen($output), $iconv = extension_loaded('iconv'); $i < $chars; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001235 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001236 $chr = ($this->charset === 'UTF-8' && $iconv === TRUE)
1237 ? '='.implode('=', str_split(strtoupper(bin2hex(iconv_substr($str, $i, 1, $this->charset))), 2))
1238 : '='.strtoupper(bin2hex($str[$i]));
Derek Allard2067d1a2008-11-13 22:59:24 +00001239
Andrey Andreev925dd902012-10-19 11:06:31 +03001240 // RFC 2045 sets a limit of 76 characters per line.
1241 // We'll append ?= to the end of each line though.
1242 if ($length + ($l = strlen($chr)) > 74)
Derek Allard2067d1a2008-11-13 22:59:24 +00001243 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001244 $output .= '?='.$this->crlf // EOL
1245 .' =?'.$this->charset.'?Q?'.$chr; // New line
1246 $length = 6 + strlen($this->charset) + $l; // Reset the length for the new line
Derek Allard2067d1a2008-11-13 22:59:24 +00001247 }
Andrey Andreev925dd902012-10-19 11:06:31 +03001248 else
Derek Allard2067d1a2008-11-13 22:59:24 +00001249 {
Andrey Andreev925dd902012-10-19 11:06:31 +03001250 $output .= $chr;
1251 $length += $l;
Derek Allard2067d1a2008-11-13 22:59:24 +00001252 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001253 }
1254
Andrey Andreev925dd902012-10-19 11:06:31 +03001255 // End the header
1256 return $output.'?=';
Derek Allard2067d1a2008-11-13 22:59:24 +00001257 }
1258
1259 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001260
Derek Allard2067d1a2008-11-13 22:59:24 +00001261 /**
1262 * Send Email
1263 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001264 * @param bool $auto_clear = TRUE
Derek Allard2067d1a2008-11-13 22:59:24 +00001265 * @return bool
1266 */
Alex Bilbied7bc8d02012-07-30 09:46:20 +01001267 public function send($auto_clear = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001268 {
Alex Bilbied261b1e2012-06-02 11:12:16 +01001269 if ($this->_replyto_flag === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001270 {
1271 $this->reply_to($this->_headers['From']);
1272 }
1273
Andrey Andreev76f15c92012-03-01 13:05:07 +02001274 if ( ! isset($this->_recipients) && ! isset($this->_headers['To'])
1275 && ! isset($this->_bcc_array) && ! isset($this->_headers['Bcc'])
1276 && ! isset($this->_headers['Cc']))
Derek Allard2067d1a2008-11-13 22:59:24 +00001277 {
patworkb0707982011-04-08 15:10:05 +02001278 $this->_set_error_message('lang:email_no_recipients');
Derek Allard2067d1a2008-11-13 22:59:24 +00001279 return FALSE;
1280 }
1281
1282 $this->_build_headers();
1283
Andrey Andreev76f15c92012-03-01 13:05:07 +02001284 if ($this->bcc_batch_mode && count($this->_bcc_array) > $this->bcc_batch_size)
Derek Allard2067d1a2008-11-13 22:59:24 +00001285 {
Alex Bilbieb901e732012-07-30 09:44:57 +01001286 $result = $this->batch_bcc_send();
Alex Bilbied7bc8d02012-07-30 09:46:20 +01001287
Alex Bilbiea87aab32012-07-30 09:50:37 +01001288 if ($result && $auto_clear)
Alex Bilbied7bc8d02012-07-30 09:46:20 +01001289 {
1290 $this->clear();
1291 }
1292
Alex Bilbieb901e732012-07-30 09:44:57 +01001293 return $result;
Derek Allard2067d1a2008-11-13 22:59:24 +00001294 }
1295
1296 $this->_build_message();
Alex Bilbieb901e732012-07-30 09:44:57 +01001297 $result = $this->_spool_email();
Andrey Andreevbdb99992012-07-30 17:38:05 +03001298
Alex Bilbiea87aab32012-07-30 09:50:37 +01001299 if ($result && $auto_clear)
Alex Bilbied7bc8d02012-07-30 09:46:20 +01001300 {
1301 $this->clear();
1302 }
Alex Bilbiea87aab32012-07-30 09:50:37 +01001303
Alex Bilbieb901e732012-07-30 09:44:57 +01001304 return $result;
Derek Allard2067d1a2008-11-13 22:59:24 +00001305 }
Barry Mienydd671972010-10-04 16:33:58 +02001306
Derek Allard2067d1a2008-11-13 22:59:24 +00001307 // --------------------------------------------------------------------
1308
1309 /**
Andrey Andreev081c9462012-03-01 12:58:11 +02001310 * Batch Bcc Send. Sends groups of BCCs in batches
Derek Allard2067d1a2008-11-13 22:59:24 +00001311 *
Andrey Andreev081c9462012-03-01 12:58:11 +02001312 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +00001313 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +00001314 public function batch_bcc_send()
Derek Allard2067d1a2008-11-13 22:59:24 +00001315 {
Andrey Andreev59c5b532012-03-01 14:09:51 +02001316 $float = $this->bcc_batch_size - 1;
1317 $set = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001318 $chunk = array();
1319
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001320 for ($i = 0, $c = count($this->_bcc_array); $i < $c; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001321 {
1322 if (isset($this->_bcc_array[$i]))
1323 {
Andrey Andreev59c5b532012-03-01 14:09:51 +02001324 $set .= ', '.$this->_bcc_array[$i];
Derek Allard2067d1a2008-11-13 22:59:24 +00001325 }
1326
Alex Bilbied261b1e2012-06-02 11:12:16 +01001327 if ($i === $float)
Derek Allard2067d1a2008-11-13 22:59:24 +00001328 {
1329 $chunk[] = substr($set, 1);
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001330 $float += $this->bcc_batch_size;
Andrey Andreev59c5b532012-03-01 14:09:51 +02001331 $set = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001332 }
1333
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001334 if ($i === $c-1)
Derek Allard2067d1a2008-11-13 22:59:24 +00001335 {
1336 $chunk[] = substr($set, 1);
1337 }
1338 }
1339
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001340 for ($i = 0, $c = count($chunk); $i < $c; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001341 {
1342 unset($this->_headers['Bcc']);
Derek Allard2067d1a2008-11-13 22:59:24 +00001343
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001344 $bcc = $this->clean_email($this->_str_to_array($chunk[$i]));
Derek Allard2067d1a2008-11-13 22:59:24 +00001345
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001346 if ($this->protocol !== 'smtp')
Derek Allard2067d1a2008-11-13 22:59:24 +00001347 {
Mickey Wubfc1cad2012-05-31 22:28:40 -07001348 $this->set_header('Bcc', implode(', ', $bcc));
Derek Allard2067d1a2008-11-13 22:59:24 +00001349 }
1350 else
1351 {
1352 $this->_bcc_array = $bcc;
1353 }
1354
1355 $this->_build_message();
1356 $this->_spool_email();
1357 }
1358 }
Barry Mienydd671972010-10-04 16:33:58 +02001359
Derek Allard2067d1a2008-11-13 22:59:24 +00001360 // --------------------------------------------------------------------
1361
1362 /**
1363 * Unwrap special elements
1364 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001365 * @return void
1366 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001367 protected function _unwrap_specials()
Derek Allard2067d1a2008-11-13 22:59:24 +00001368 {
Andrey Andreev56454792012-05-17 14:32:19 +03001369 $this->_finalbody = preg_replace_callback('/\{unwrap\}(.*?)\{\/unwrap\}/si', array($this, '_remove_nl_callback'), $this->_finalbody);
Derek Allard2067d1a2008-11-13 22:59:24 +00001370 }
Barry Mienydd671972010-10-04 16:33:58 +02001371
Derek Allard2067d1a2008-11-13 22:59:24 +00001372 // --------------------------------------------------------------------
1373
1374 /**
1375 * Strip line-breaks via callback
1376 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001377 * @param string $matches
Derek Allard2067d1a2008-11-13 22:59:24 +00001378 * @return string
1379 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001380 protected function _remove_nl_callback($matches)
Derek Allard2067d1a2008-11-13 22:59:24 +00001381 {
1382 if (strpos($matches[1], "\r") !== FALSE OR strpos($matches[1], "\n") !== FALSE)
1383 {
1384 $matches[1] = str_replace(array("\r\n", "\r", "\n"), '', $matches[1]);
1385 }
1386
1387 return $matches[1];
1388 }
Barry Mienydd671972010-10-04 16:33:58 +02001389
Derek Allard2067d1a2008-11-13 22:59:24 +00001390 // --------------------------------------------------------------------
1391
1392 /**
1393 * Spool mail to the mail server
1394 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001395 * @return bool
1396 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001397 protected function _spool_email()
Derek Allard2067d1a2008-11-13 22:59:24 +00001398 {
1399 $this->_unwrap_specials();
1400
Andrey Andreev56454792012-05-17 14:32:19 +03001401 $method = '_send_with_'.$this->_get_protocol();
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001402 if ( ! $this->$method())
Derek Allard2067d1a2008-11-13 22:59:24 +00001403 {
Andrey Andreev56454792012-05-17 14:32:19 +03001404 $this->_set_error_message('lang:email_send_failure_'.($this->_get_protocol() === 'mail' ? 'phpmail' : $this->_get_protocol()));
Diogo Osório7fcc7bd2012-03-02 16:54:52 +00001405 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001406 }
1407
patworkb0707982011-04-08 15:10:05 +02001408 $this->_set_error_message('lang:email_sent', $this->_get_protocol());
Derek Allard2067d1a2008-11-13 22:59:24 +00001409 return TRUE;
1410 }
Barry Mienydd671972010-10-04 16:33:58 +02001411
Derek Allard2067d1a2008-11-13 22:59:24 +00001412 // --------------------------------------------------------------------
1413
1414 /**
1415 * Send using mail()
1416 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001417 * @return bool
1418 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001419 protected function _send_with_mail()
Derek Allard2067d1a2008-11-13 22:59:24 +00001420 {
Andrey Andreev8a7078b2012-10-17 10:52:49 +03001421 if (is_array($this->_recipients))
1422 {
1423 $this->_recipients = implode(', ', $this->_recipients);
1424 }
1425
Alex Bilbied261b1e2012-06-02 11:12:16 +01001426 if ($this->_safe_mode === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001427 {
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001428 return mail($this->_recipients, $this->_subject, $this->_finalbody, $this->_header_str);
Derek Allard2067d1a2008-11-13 22:59:24 +00001429 }
1430 else
1431 {
1432 // most documentation of sendmail using the "-f" flag lacks a space after it, however
1433 // we've encountered servers that seem to require it to be in place.
Melounek58dfc082012-06-29 08:43:47 +02001434 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 +00001435 }
1436 }
Barry Mienydd671972010-10-04 16:33:58 +02001437
Derek Allard2067d1a2008-11-13 22:59:24 +00001438 // --------------------------------------------------------------------
1439
1440 /**
1441 * Send using Sendmail
1442 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001443 * @return bool
1444 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001445 protected function _send_with_sendmail()
Derek Allard2067d1a2008-11-13 22:59:24 +00001446 {
Melounek58dfc082012-06-29 08:43:47 +02001447 $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 +00001448
Derek Jones4cefaa42009-04-29 19:13:56 +00001449 if ($fp === FALSE OR $fp === NULL)
1450 {
1451 // server probably has popen disabled, so nothing we can do to get a verbose error.
1452 return FALSE;
1453 }
Derek Jones71141ce2010-03-02 16:41:20 -06001454
Derek Jonesc630bcf2008-11-17 21:09:45 +00001455 fputs($fp, $this->_header_str);
1456 fputs($fp, $this->_finalbody);
1457
Barry Mienydd671972010-10-04 16:33:58 +02001458 $status = pclose($fp);
Eric Barnes6113f542010-12-29 13:36:12 -05001459
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001460 if ($status !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001461 {
patworkb0707982011-04-08 15:10:05 +02001462 $this->_set_error_message('lang:email_exit_status', $status);
1463 $this->_set_error_message('lang:email_no_socket');
Derek Allard2067d1a2008-11-13 22:59:24 +00001464 return FALSE;
1465 }
1466
Derek Allard2067d1a2008-11-13 22:59:24 +00001467 return TRUE;
1468 }
Barry Mienydd671972010-10-04 16:33:58 +02001469
Derek Allard2067d1a2008-11-13 22:59:24 +00001470 // --------------------------------------------------------------------
1471
1472 /**
1473 * Send using SMTP
1474 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001475 * @return bool
1476 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001477 protected function _send_with_smtp()
Derek Allard2067d1a2008-11-13 22:59:24 +00001478 {
Alex Bilbied261b1e2012-06-02 11:12:16 +01001479 if ($this->smtp_host === '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001480 {
patworkb0707982011-04-08 15:10:05 +02001481 $this->_set_error_message('lang:email_no_hostname');
Derek Allard2067d1a2008-11-13 22:59:24 +00001482 return FALSE;
1483 }
1484
Diogo Osório593f7982012-03-02 18:04:17 +00001485 if ( ! $this->_smtp_connect() OR ! $this->_smtp_authenticate())
Diogo Osório7fcc7bd2012-03-02 16:54:52 +00001486 {
1487 return FALSE;
1488 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001489
1490 $this->_send_command('from', $this->clean_email($this->_headers['From']));
1491
Pascal Kriete14287f32011-02-14 13:39:34 -05001492 foreach ($this->_recipients as $val)
Derek Allard2067d1a2008-11-13 22:59:24 +00001493 {
1494 $this->_send_command('to', $val);
1495 }
1496
1497 if (count($this->_cc_array) > 0)
1498 {
Pascal Kriete14287f32011-02-14 13:39:34 -05001499 foreach ($this->_cc_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 if (count($this->_bcc_array) > 0)
1509 {
Pascal Kriete14287f32011-02-14 13:39:34 -05001510 foreach ($this->_bcc_array as $val)
Derek Allard2067d1a2008-11-13 22:59:24 +00001511 {
Alex Bilbied261b1e2012-06-02 11:12:16 +01001512 if ($val !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001513 {
1514 $this->_send_command('to', $val);
1515 }
1516 }
1517 }
1518
1519 $this->_send_command('data');
1520
1521 // perform dot transformation on any lines that begin with a dot
Andrey Andreev56454792012-05-17 14:32:19 +03001522 $this->_send_data($this->_header_str.preg_replace('/^\./m', '..$1', $this->_finalbody));
Derek Allard2067d1a2008-11-13 22:59:24 +00001523
1524 $this->_send_data('.');
1525
1526 $reply = $this->_get_smtp_data();
1527
1528 $this->_set_error_message($reply);
1529
Andrey Andreev3dad2e72012-06-14 15:10:56 +03001530 if (strpos($reply, '250') !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001531 {
patworkb0707982011-04-08 15:10:05 +02001532 $this->_set_error_message('lang:email_smtp_error', $reply);
Derek Allard2067d1a2008-11-13 22:59:24 +00001533 return FALSE;
1534 }
1535
1536 $this->_send_command('quit');
1537 return TRUE;
1538 }
Barry Mienydd671972010-10-04 16:33:58 +02001539
Derek Allard2067d1a2008-11-13 22:59:24 +00001540 // --------------------------------------------------------------------
1541
1542 /**
1543 * SMTP Connect
1544 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001545 * @return string
1546 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001547 protected function _smtp_connect()
Derek Allard2067d1a2008-11-13 22:59:24 +00001548 {
Alex Bilbied261b1e2012-06-02 11:12:16 +01001549 $ssl = ($this->smtp_crypto === 'ssl') ? 'ssl://' : NULL;
Radu Potop4c589ae2011-09-29 10:19:55 +03001550
Radu Potopbbf04b02011-09-28 13:57:51 +03001551 $this->_smtp_connect = fsockopen($ssl.$this->smtp_host,
Andrey Andreev56454792012-05-17 14:32:19 +03001552 $this->smtp_port,
1553 $errno,
1554 $errstr,
1555 $this->smtp_timeout);
Derek Allard2067d1a2008-11-13 22:59:24 +00001556
Pascal Kriete14287f32011-02-14 13:39:34 -05001557 if ( ! is_resource($this->_smtp_connect))
Derek Allard2067d1a2008-11-13 22:59:24 +00001558 {
Andrey Andreev56454792012-05-17 14:32:19 +03001559 $this->_set_error_message('lang:email_smtp_error', $errno.' '.$errstr);
Derek Allard2067d1a2008-11-13 22:59:24 +00001560 return FALSE;
1561 }
1562
1563 $this->_set_error_message($this->_get_smtp_data());
Radu Potopbbf04b02011-09-28 13:57:51 +03001564
Alex Bilbied261b1e2012-06-02 11:12:16 +01001565 if ($this->smtp_crypto === 'tls')
Radu Potopbbf04b02011-09-28 13:57:51 +03001566 {
1567 $this->_send_command('hello');
1568 $this->_send_command('starttls');
Phil Sturgeonc00a5a02011-11-22 15:25:32 +00001569
Radu Potop4c589ae2011-09-29 10:19:55 +03001570 $crypto = stream_socket_enable_crypto($this->_smtp_connect, TRUE, STREAM_CRYPTO_METHOD_TLS_CLIENT);
Radu Potop4c589ae2011-09-29 10:19:55 +03001571
Sean Fishere862ddd2011-10-26 22:45:00 -03001572 if ($crypto !== TRUE)
1573 {
1574 $this->_set_error_message('lang:email_smtp_error', $this->_get_smtp_data());
1575 return FALSE;
1576 }
Radu Potopbbf04b02011-09-28 13:57:51 +03001577 }
1578
Derek Allard2067d1a2008-11-13 22:59:24 +00001579 return $this->_send_command('hello');
1580 }
Barry Mienydd671972010-10-04 16:33:58 +02001581
Derek Allard2067d1a2008-11-13 22:59:24 +00001582 // --------------------------------------------------------------------
1583
1584 /**
1585 * Send SMTP command
1586 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001587 * @param string
1588 * @param string
1589 * @return string
1590 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001591 protected function _send_command($cmd, $data = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001592 {
1593 switch ($cmd)
1594 {
1595 case 'hello' :
1596
Andrey Andreev56454792012-05-17 14:32:19 +03001597 if ($this->_smtp_auth OR $this->_get_encoding() === '8bit')
1598 {
1599 $this->_send_data('EHLO '.$this->_get_hostname());
1600 }
1601 else
1602 {
1603 $this->_send_data('HELO '.$this->_get_hostname());
1604 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001605
1606 $resp = 250;
1607 break;
Radu Potopbbf04b02011-09-28 13:57:51 +03001608 case 'starttls' :
1609
1610 $this->_send_data('STARTTLS');
Radu Potopbbf04b02011-09-28 13:57:51 +03001611 $resp = 220;
1612 break;
Derek Allard2067d1a2008-11-13 22:59:24 +00001613 case 'from' :
1614
1615 $this->_send_data('MAIL FROM:<'.$data.'>');
Derek Allard2067d1a2008-11-13 22:59:24 +00001616 $resp = 250;
1617 break;
Andrey Andreev56454792012-05-17 14:32:19 +03001618 case 'to' :
1619
leandronf7686c122012-03-22 08:07:31 -03001620 if ($this->dsn)
1621 {
leandronfb4552942012-03-21 23:54:26 -03001622 $this->_send_data('RCPT TO:<'.$data.'> NOTIFY=SUCCESS,DELAY,FAILURE ORCPT=rfc822;'.$data);
leandronf7686c122012-03-22 08:07:31 -03001623 }
leandronfb4552942012-03-21 23:54:26 -03001624 else
leandronf7686c122012-03-22 08:07:31 -03001625 {
leandronfb4552942012-03-21 23:54:26 -03001626 $this->_send_data('RCPT TO:<'.$data.'>');
leandronf7686c122012-03-22 08:07:31 -03001627 }
Andrey Andreev56454792012-05-17 14:32:19 +03001628
Derek Allard2067d1a2008-11-13 22:59:24 +00001629 $resp = 250;
1630 break;
1631 case 'data' :
1632
1633 $this->_send_data('DATA');
Derek Allard2067d1a2008-11-13 22:59:24 +00001634 $resp = 354;
1635 break;
1636 case 'quit' :
1637
1638 $this->_send_data('QUIT');
Derek Allard2067d1a2008-11-13 22:59:24 +00001639 $resp = 221;
1640 break;
1641 }
1642
1643 $reply = $this->_get_smtp_data();
1644
Andrey Andreev56454792012-05-17 14:32:19 +03001645 $this->_debug_msg[] = '<pre>'.$cmd.': '.$reply.'</pre>';
Derek Allard2067d1a2008-11-13 22:59:24 +00001646
Andrey Andreevba261762012-06-11 14:11:35 +03001647 if ( (int) substr($reply, 0, 3) !== $resp)
Derek Allard2067d1a2008-11-13 22:59:24 +00001648 {
patworkb0707982011-04-08 15:10:05 +02001649 $this->_set_error_message('lang:email_smtp_error', $reply);
Derek Allard2067d1a2008-11-13 22:59:24 +00001650 return FALSE;
1651 }
1652
Alex Bilbied261b1e2012-06-02 11:12:16 +01001653 if ($cmd === 'quit')
Derek Allard2067d1a2008-11-13 22:59:24 +00001654 {
1655 fclose($this->_smtp_connect);
1656 }
1657
1658 return TRUE;
1659 }
Barry Mienydd671972010-10-04 16:33:58 +02001660
Derek Allard2067d1a2008-11-13 22:59:24 +00001661 // --------------------------------------------------------------------
1662
1663 /**
Derek Jones37f4b9c2011-07-01 17:56:50 -05001664 * SMTP Authenticate
Derek Allard2067d1a2008-11-13 22:59:24 +00001665 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001666 * @return bool
1667 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001668 protected function _smtp_authenticate()
Derek Allard2067d1a2008-11-13 22:59:24 +00001669 {
1670 if ( ! $this->_smtp_auth)
1671 {
1672 return TRUE;
1673 }
1674
Alex Bilbied261b1e2012-06-02 11:12:16 +01001675 if ($this->smtp_user === '' && $this->smtp_pass === '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001676 {
patworkb0707982011-04-08 15:10:05 +02001677 $this->_set_error_message('lang:email_no_smtp_unpw');
Derek Allard2067d1a2008-11-13 22:59:24 +00001678 return FALSE;
1679 }
1680
1681 $this->_send_data('AUTH LOGIN');
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_failed_smtp_login', $reply);
Derek Allard2067d1a2008-11-13 22:59:24 +00001688 return FALSE;
1689 }
1690
1691 $this->_send_data(base64_encode($this->smtp_user));
1692
1693 $reply = $this->_get_smtp_data();
1694
Andrey Andreev3dad2e72012-06-14 15:10:56 +03001695 if (strpos($reply, '334') !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001696 {
patworkb0707982011-04-08 15:10:05 +02001697 $this->_set_error_message('lang:email_smtp_auth_un', $reply);
Derek Allard2067d1a2008-11-13 22:59:24 +00001698 return FALSE;
1699 }
1700
1701 $this->_send_data(base64_encode($this->smtp_pass));
1702
1703 $reply = $this->_get_smtp_data();
1704
Andrey Andreev3dad2e72012-06-14 15:10:56 +03001705 if (strpos($reply, '235') !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001706 {
patworkb0707982011-04-08 15:10:05 +02001707 $this->_set_error_message('lang:email_smtp_auth_pw', $reply);
Derek Allard2067d1a2008-11-13 22:59:24 +00001708 return FALSE;
1709 }
1710
1711 return TRUE;
1712 }
Barry Mienydd671972010-10-04 16:33:58 +02001713
Derek Allard2067d1a2008-11-13 22:59:24 +00001714 // --------------------------------------------------------------------
1715
1716 /**
1717 * Send SMTP data
1718 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001719 * @param string $data
Derek Allard2067d1a2008-11-13 22:59:24 +00001720 * @return bool
1721 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001722 protected function _send_data($data)
Derek Allard2067d1a2008-11-13 22:59:24 +00001723 {
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001724 if ( ! fwrite($this->_smtp_connect, $data.$this->newline))
Derek Allard2067d1a2008-11-13 22:59:24 +00001725 {
patworkb0707982011-04-08 15:10:05 +02001726 $this->_set_error_message('lang:email_smtp_data_failure', $data);
Derek Allard2067d1a2008-11-13 22:59:24 +00001727 return FALSE;
1728 }
Andrey Andreev1bd3d882011-12-22 15:38:20 +02001729
1730 return TRUE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001731 }
Barry Mienydd671972010-10-04 16:33:58 +02001732
Derek Allard2067d1a2008-11-13 22:59:24 +00001733 // --------------------------------------------------------------------
1734
1735 /**
1736 * Get SMTP data
1737 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001738 * @return string
1739 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001740 protected function _get_smtp_data()
Derek Allard2067d1a2008-11-13 22:59:24 +00001741 {
Andrey Andreev56454792012-05-17 14:32:19 +03001742 $data = '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001743
1744 while ($str = fgets($this->_smtp_connect, 512))
1745 {
1746 $data .= $str;
1747
Alex Bilbied261b1e2012-06-02 11:12:16 +01001748 if ($str[3] === ' ')
Derek Allard2067d1a2008-11-13 22:59:24 +00001749 {
1750 break;
1751 }
1752 }
1753
1754 return $data;
1755 }
Barry Mienydd671972010-10-04 16:33:58 +02001756
Derek Allard2067d1a2008-11-13 22:59:24 +00001757 // --------------------------------------------------------------------
1758
1759 /**
1760 * Get Hostname
1761 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001762 * @return string
1763 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001764 protected function _get_hostname()
Derek Allard2067d1a2008-11-13 22:59:24 +00001765 {
Andrey Andreev59c5b532012-03-01 14:09:51 +02001766 return isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : 'localhost.localdomain';
Derek Allard2067d1a2008-11-13 22:59:24 +00001767 }
Barry Mienydd671972010-10-04 16:33:58 +02001768
Derek Allard2067d1a2008-11-13 22:59:24 +00001769 // --------------------------------------------------------------------
1770
1771 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001772 * Get Debug Message
1773 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001774 * @return string
1775 */
Phil Sturgeona0f980e2011-01-13 10:59:12 +00001776 public function print_debugger()
Derek Allard2067d1a2008-11-13 22:59:24 +00001777 {
1778 $msg = '';
1779
1780 if (count($this->_debug_msg) > 0)
1781 {
1782 foreach ($this->_debug_msg as $val)
1783 {
1784 $msg .= $val;
1785 }
1786 }
1787
Andrey Andreev59c5b532012-03-01 14:09:51 +02001788 return $msg.'<pre>'.$this->_header_str."\n".htmlspecialchars($this->_subject)."\n".htmlspecialchars($this->_finalbody).'</pre>';
Derek Allard2067d1a2008-11-13 22:59:24 +00001789 }
Barry Mienydd671972010-10-04 16:33:58 +02001790
Derek Allard2067d1a2008-11-13 22:59:24 +00001791 // --------------------------------------------------------------------
1792
1793 /**
1794 * Set Message
1795 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001796 * @param string $msg
1797 * @param string $val = ''
Andrey Andreev081c9462012-03-01 12:58:11 +02001798 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +00001799 */
Phil Sturgeon6d2f13a2011-07-20 10:04:52 -06001800 protected function _set_error_message($msg, $val = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001801 {
1802 $CI =& get_instance();
1803 $CI->lang->load('email');
1804
Andrey Andreev76f15c92012-03-01 13:05:07 +02001805 if (substr($msg, 0, 5) !== 'lang:' OR FALSE === ($line = $CI->lang->line(substr($msg, 5))))
Derek Allard2067d1a2008-11-13 22:59:24 +00001806 {
Andrey Andreev56454792012-05-17 14:32:19 +03001807 $this->_debug_msg[] = str_replace('%s', $val, $msg).'<br />';
Derek Allard2067d1a2008-11-13 22:59:24 +00001808 }
1809 else
1810 {
Andrey Andreev56454792012-05-17 14:32:19 +03001811 $this->_debug_msg[] = str_replace('%s', $val, $line).'<br />';
Derek Allard2067d1a2008-11-13 22:59:24 +00001812 }
1813 }
Barry Mienydd671972010-10-04 16:33:58 +02001814
Derek Allard2067d1a2008-11-13 22:59:24 +00001815 // --------------------------------------------------------------------
1816
1817 /**
1818 * Mime Types
1819 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001820 * @param string
1821 * @return string
1822 */
Andrey Andreev59c5b532012-03-01 14:09:51 +02001823 protected function _mime_types($ext = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001824 {
Andrey Andreev6ef498b2012-06-05 22:01:58 +03001825 static $mimes;
Derek Allard2067d1a2008-11-13 22:59:24 +00001826
Andrey Andreev6ef498b2012-06-05 22:01:58 +03001827 $ext = strtolower($ext);
1828
1829 if ( ! is_array($mimes))
1830 {
1831 $mimes =& get_mimes();
1832 }
1833
1834 if (isset($mimes[$ext]))
1835 {
1836 return is_array($mimes[$ext])
1837 ? current($mimes[$ext])
1838 : $mimes[$ext];
1839 }
1840
1841 return 'application/x-unknown-content-type';
Derek Allard2067d1a2008-11-13 22:59:24 +00001842 }
1843
1844}
Derek Allard2067d1a2008-11-13 22:59:24 +00001845
1846/* End of file Email.php */
Andrey Andreev50988592012-10-08 20:46:04 +03001847/* Location: ./system/libraries/Email.php */