Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame] | 1 | <?php |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Phil Sturgeon | 07c1ac8 | 2012-03-09 17:03:37 +0000 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.2.4 or newer |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 6 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 7 | * NOTICE OF LICENSE |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 8 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 9 | * Licensed under the Open Software License version 3.0 |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 10 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 11 | * 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 Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 19 | * @package CodeIgniter |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 20 | * @author EllisLab Dev Team |
Andrey Andreev | 80500af | 2013-01-01 08:16:53 +0200 | [diff] [blame] | 21 | * @copyright Copyright (c) 2008 - 2013, EllisLab, Inc. (http://ellislab.com/) |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 22 | * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 23 | * @link http://codeigniter.com |
| 24 | * @since Version 1.0 |
| 25 | * @filesource |
| 26 | */ |
Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame] | 27 | defined('BASEPATH') OR exit('No direct script access allowed'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 28 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 29 | /** |
| 30 | * CodeIgniter Email Class |
| 31 | * |
| 32 | * Permits email to be sent using Mail, Sendmail, or SMTP. |
| 33 | * |
| 34 | * @package CodeIgniter |
| 35 | * @subpackage Libraries |
| 36 | * @category Libraries |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 37 | * @author EllisLab Dev Team |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 38 | * @link http://codeigniter.com/user_guide/libraries/email.html |
| 39 | */ |
trit | a15dd4f | 2011-11-23 07:40:05 -0500 | [diff] [blame] | 40 | class CI_Email { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 41 | |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 42 | /** |
| 43 | * Used as the User-Agent and X-Mailer headers' value. |
| 44 | * |
| 45 | * @var string |
| 46 | */ |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 47 | public $useragent = 'CodeIgniter'; |
Andrey Andreev | 5081409 | 2012-03-01 12:36:12 +0200 | [diff] [blame] | 48 | |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 49 | /** |
| 50 | * Path to the Sendmail binary. |
| 51 | * |
| 52 | * @var string |
| 53 | */ |
| 54 | public $mailpath = '/usr/sbin/sendmail'; // Sendmail path |
| 55 | |
| 56 | /** |
| 57 | * Which method to use for sending e-mails. |
| 58 | * |
| 59 | * @var string 'mail', 'sendmail' or 'smtp' |
| 60 | */ |
| 61 | public $protocol = 'mail'; // mail/sendmail/smtp |
| 62 | |
| 63 | /** |
| 64 | * STMP Server host |
| 65 | * |
| 66 | * @var string |
| 67 | */ |
| 68 | public $smtp_host = ''; |
| 69 | |
| 70 | /** |
| 71 | * SMTP Username |
| 72 | * |
| 73 | * @var string |
| 74 | */ |
| 75 | public $smtp_user = ''; |
| 76 | |
| 77 | /** |
| 78 | * SMTP Password |
| 79 | * |
| 80 | * @var string |
| 81 | */ |
| 82 | public $smtp_pass = ''; |
| 83 | |
| 84 | /** |
| 85 | * SMTP Server port |
| 86 | * |
| 87 | * @var int |
| 88 | */ |
| 89 | public $smtp_port = 25; |
| 90 | |
| 91 | /** |
| 92 | * SMTP connection timeout in seconds |
| 93 | * |
| 94 | * @var int |
| 95 | */ |
| 96 | public $smtp_timeout = 5; |
vlakoff | f399425 | 2013-02-19 01:45:23 +0100 | [diff] [blame^] | 97 | |
nisheeth-barthwal | cf22557 | 2013-02-18 01:08:04 +0530 | [diff] [blame] | 98 | /** |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 99 | * SMTP persistent connection |
| 100 | * |
| 101 | * @var bool |
| 102 | */ |
| 103 | public $smtp_keepalive = FALSE; |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 104 | |
| 105 | /** |
| 106 | * SMTP Encryption |
| 107 | * |
| 108 | * @var string NULL, 'tls' or 'ssl' |
| 109 | */ |
| 110 | public $smtp_crypto = NULL; |
| 111 | |
| 112 | /** |
| 113 | * Whether to apply word-wrapping to the message body. |
| 114 | * |
| 115 | * @var bool |
| 116 | */ |
| 117 | public $wordwrap = TRUE; |
| 118 | |
| 119 | /** |
| 120 | * Number of characters to wrap at. |
| 121 | * |
| 122 | * @see CI_Email::$wordwrap |
| 123 | * @var int |
| 124 | */ |
| 125 | public $wrapchars = 76; |
| 126 | |
| 127 | /** |
| 128 | * Message format. |
| 129 | * |
| 130 | * @var string 'text' or 'html' |
| 131 | */ |
| 132 | public $mailtype = 'text'; |
| 133 | |
| 134 | /** |
| 135 | * Character set (default: utf-8) |
| 136 | * |
| 137 | * @var string |
| 138 | */ |
| 139 | public $charset = 'utf-8'; |
| 140 | |
| 141 | /** |
| 142 | * Multipart message |
| 143 | * |
| 144 | * @var string 'mixed' (in the body) or 'related' (separate) |
| 145 | */ |
| 146 | public $multipart = 'mixed'; // "mixed" (in the body) or "related" (separate) |
| 147 | |
| 148 | /** |
| 149 | * Alternative message (for HTML messages only) |
| 150 | * |
| 151 | * @var string |
| 152 | */ |
| 153 | public $alt_message = ''; |
| 154 | |
| 155 | /** |
| 156 | * Whether to validate e-mail addresses. |
| 157 | * |
| 158 | * @var bool |
| 159 | */ |
| 160 | public $validate = FALSE; |
| 161 | |
| 162 | /** |
| 163 | * X-Priority header value. |
| 164 | * |
| 165 | * @var int 1-5 |
| 166 | */ |
| 167 | public $priority = 3; // Default priority (1 - 5) |
| 168 | |
| 169 | /** |
| 170 | * Newline character sequence. |
| 171 | * Use "\r\n" to comply with RFC 822. |
| 172 | * |
| 173 | * @link http://www.ietf.org/rfc/rfc822.txt |
| 174 | * @var string "\r\n" or "\n" |
| 175 | */ |
| 176 | public $newline = "\n"; // Default newline. "\r\n" or "\n" (Use "\r\n" to comply with RFC 822) |
| 177 | |
| 178 | /** |
| 179 | * CRLF character sequence |
| 180 | * |
| 181 | * RFC 2045 specifies that for 'quoted-printable' encoding, |
| 182 | * "\r\n" must be used. However, it appears that some servers |
| 183 | * (even on the receiving end) don't handle it properly and |
| 184 | * switching to "\n", while improper, is the only solution |
| 185 | * that seems to work for all environments. |
| 186 | * |
| 187 | * @link http://www.ietf.org/rfc/rfc822.txt |
| 188 | * @var string |
| 189 | */ |
| 190 | public $crlf = "\n"; |
| 191 | |
| 192 | /** |
| 193 | * Whether to use Delivery Status Notification. |
| 194 | * |
| 195 | * @var bool |
| 196 | */ |
| 197 | public $dsn = FALSE; |
| 198 | |
| 199 | /** |
| 200 | * Whether to send multipart alternatives. |
| 201 | * Yahoo! doesn't seem to like these. |
| 202 | * |
| 203 | * @var bool |
| 204 | */ |
| 205 | public $send_multipart = TRUE; |
| 206 | |
| 207 | /** |
| 208 | * Whether to send messages to BCC recipients in batches. |
| 209 | * |
| 210 | * @var bool |
| 211 | */ |
| 212 | public $bcc_batch_mode = FALSE; |
| 213 | |
| 214 | /** |
| 215 | * BCC Batch max number size. |
| 216 | * |
| 217 | * @see CI_Email::$bcc_batch_mode |
| 218 | * @var int |
| 219 | */ |
| 220 | public $bcc_batch_size = 200; |
| 221 | |
| 222 | // -------------------------------------------------------------------- |
| 223 | |
| 224 | /** |
| 225 | * Whether PHP is running in safe mode. Initialized by the class constructor. |
| 226 | * |
| 227 | * @var bool |
| 228 | */ |
Andrey Andreev | 5081409 | 2012-03-01 12:36:12 +0200 | [diff] [blame] | 229 | protected $_safe_mode = FALSE; |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 230 | |
| 231 | /** |
| 232 | * Subject header |
| 233 | * |
| 234 | * @var string |
| 235 | */ |
Andrey Andreev | 5081409 | 2012-03-01 12:36:12 +0200 | [diff] [blame] | 236 | protected $_subject = ''; |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 237 | |
| 238 | /** |
| 239 | * Message body |
| 240 | * |
| 241 | * @var string |
| 242 | */ |
Andrey Andreev | 5081409 | 2012-03-01 12:36:12 +0200 | [diff] [blame] | 243 | protected $_body = ''; |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 244 | |
| 245 | /** |
| 246 | * Final message body to be sent. |
| 247 | * |
| 248 | * @var string |
| 249 | */ |
Andrey Andreev | 5081409 | 2012-03-01 12:36:12 +0200 | [diff] [blame] | 250 | protected $_finalbody = ''; |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 251 | |
| 252 | /** |
| 253 | * multipart/alternative boundary |
| 254 | * |
| 255 | * @var string |
| 256 | */ |
Andrey Andreev | 5081409 | 2012-03-01 12:36:12 +0200 | [diff] [blame] | 257 | protected $_alt_boundary = ''; |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 258 | |
| 259 | /** |
| 260 | * Attachment boundary |
| 261 | * |
| 262 | * @var string |
| 263 | */ |
Andrey Andreev | 5081409 | 2012-03-01 12:36:12 +0200 | [diff] [blame] | 264 | protected $_atc_boundary = ''; |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 265 | |
| 266 | /** |
| 267 | * Final headers to send |
| 268 | * |
| 269 | * @var string |
| 270 | */ |
Andrey Andreev | 5081409 | 2012-03-01 12:36:12 +0200 | [diff] [blame] | 271 | protected $_header_str = ''; |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 272 | |
| 273 | /** |
| 274 | * SMTP Connection socket placeholder |
| 275 | * |
| 276 | * @var resource |
| 277 | */ |
Andrey Andreev | 5081409 | 2012-03-01 12:36:12 +0200 | [diff] [blame] | 278 | protected $_smtp_connect = ''; |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 279 | |
| 280 | /** |
| 281 | * Mail encoding |
| 282 | * |
| 283 | * @var string '8bit' or '7bit' |
| 284 | */ |
Andrey Andreev | 5081409 | 2012-03-01 12:36:12 +0200 | [diff] [blame] | 285 | protected $_encoding = '8bit'; |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 286 | |
| 287 | /** |
| 288 | * Whether to perform SMTP authentication |
| 289 | * |
| 290 | * @var bool |
| 291 | */ |
Andrey Andreev | 5081409 | 2012-03-01 12:36:12 +0200 | [diff] [blame] | 292 | protected $_smtp_auth = FALSE; |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 293 | |
| 294 | /** |
| 295 | * Whether to send a Reply-To header |
| 296 | * |
| 297 | * @var bool |
| 298 | */ |
Andrey Andreev | 5081409 | 2012-03-01 12:36:12 +0200 | [diff] [blame] | 299 | protected $_replyto_flag = FALSE; |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 300 | |
| 301 | /** |
| 302 | * Debug messages |
| 303 | * |
| 304 | * @see CI_Email::print_debugger() |
| 305 | * @var string |
| 306 | */ |
Andrey Andreev | 5081409 | 2012-03-01 12:36:12 +0200 | [diff] [blame] | 307 | protected $_debug_msg = array(); |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 308 | |
| 309 | /** |
| 310 | * Recipients |
| 311 | * |
| 312 | * @var string[] |
| 313 | */ |
Andrey Andreev | 5081409 | 2012-03-01 12:36:12 +0200 | [diff] [blame] | 314 | protected $_recipients = array(); |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 315 | |
| 316 | /** |
| 317 | * CC Recipients |
| 318 | * |
| 319 | * @var string[] |
| 320 | */ |
Andrey Andreev | 5081409 | 2012-03-01 12:36:12 +0200 | [diff] [blame] | 321 | protected $_cc_array = array(); |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 322 | |
| 323 | /** |
| 324 | * BCC Recipients |
| 325 | * |
| 326 | * @var string[] |
| 327 | */ |
Andrey Andreev | 5081409 | 2012-03-01 12:36:12 +0200 | [diff] [blame] | 328 | protected $_bcc_array = array(); |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 329 | |
| 330 | /** |
| 331 | * Message headers |
| 332 | * |
| 333 | * @var string[] |
| 334 | */ |
Andrey Andreev | 5081409 | 2012-03-01 12:36:12 +0200 | [diff] [blame] | 335 | protected $_headers = array(); |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 336 | |
| 337 | /** |
| 338 | * Attachment data |
| 339 | * |
| 340 | * @var array |
| 341 | */ |
Andrey Andreev | b8f9a15 | 2012-10-27 01:36:51 +0300 | [diff] [blame] | 342 | protected $_attachments = array(); |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 343 | |
| 344 | /** |
| 345 | * Valid $protocol values |
| 346 | * |
| 347 | * @see CI_Email::$protocol |
| 348 | * @var string[] |
| 349 | */ |
Andrey Andreev | 5081409 | 2012-03-01 12:36:12 +0200 | [diff] [blame] | 350 | protected $_protocols = array('mail', 'sendmail', 'smtp'); |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 351 | |
| 352 | /** |
| 353 | * Base charsets |
| 354 | * |
| 355 | * Character sets valid for 7-bit encoding, |
| 356 | * excluding language suffix. |
| 357 | * |
| 358 | * @var string[] |
| 359 | */ |
| 360 | protected $_base_charsets = array('us-ascii', 'iso-2022-'); |
| 361 | |
| 362 | /** |
| 363 | * Bit depths |
| 364 | * |
| 365 | * Valid mail encodings |
| 366 | * |
| 367 | * @see CI_Email::$_encoding |
| 368 | * @var string[] |
| 369 | */ |
Andrey Andreev | 5081409 | 2012-03-01 12:36:12 +0200 | [diff] [blame] | 370 | protected $_bit_depths = array('7bit', '8bit'); |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 371 | |
| 372 | /** |
| 373 | * $priority translations |
| 374 | * |
| 375 | * Actual values to send with the X-Priority header |
| 376 | * |
| 377 | * @var string[] |
| 378 | */ |
Andrey Andreev | 5081409 | 2012-03-01 12:36:12 +0200 | [diff] [blame] | 379 | protected $_priorities = array('1 (Highest)', '2 (High)', '3 (Normal)', '4 (Low)', '5 (Lowest)'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 380 | |
Andrey Andreev | 597ea27 | 2012-11-01 22:56:26 +0200 | [diff] [blame] | 381 | // -------------------------------------------------------------------- |
| 382 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 383 | /** |
| 384 | * Constructor - Sets Email Preferences |
| 385 | * |
| 386 | * The constructor can be passed an array of config values |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 387 | * |
Andrey Andreev | 5fd3ae8 | 2012-10-24 14:55:35 +0300 | [diff] [blame] | 388 | * @param array $config = array() |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 389 | * @return void |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 390 | */ |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 391 | public function __construct($config = array()) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 392 | { |
Andrey Andreev | 925dd90 | 2012-10-19 11:06:31 +0300 | [diff] [blame] | 393 | $this->charset = config_item('charset'); |
Andrey Andreev | 9f44c21 | 2012-10-10 16:07:17 +0300 | [diff] [blame] | 394 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 395 | if (count($config) > 0) |
| 396 | { |
| 397 | $this->initialize($config); |
| 398 | } |
| 399 | else |
| 400 | { |
Alex Bilbie | d261b1e | 2012-06-02 11:12:16 +0100 | [diff] [blame] | 401 | $this->_smtp_auth = ! ($this->smtp_user === '' && $this->smtp_pass === ''); |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 402 | $this->_safe_mode = (bool) @ini_get('safe_mode'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 403 | } |
| 404 | |
Andrey Andreev | 925dd90 | 2012-10-19 11:06:31 +0300 | [diff] [blame] | 405 | $this->charset = strtoupper($this->charset); |
| 406 | |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 407 | log_message('debug', 'Email Class Initialized'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 408 | } |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 409 | |
nisheeth-barthwal | cf22557 | 2013-02-18 01:08:04 +0530 | [diff] [blame] | 410 | // -------------------------------------------------------------------- |
vlakoff | f399425 | 2013-02-19 01:45:23 +0100 | [diff] [blame^] | 411 | |
nisheeth-barthwal | cf22557 | 2013-02-18 01:08:04 +0530 | [diff] [blame] | 412 | /** |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 413 | * Destructor - Releases Resources |
| 414 | * |
| 415 | * @return void |
| 416 | */ |
| 417 | public function __destruct() |
| 418 | { |
nisheeth-barthwal | 758f40c | 2013-02-18 17:18:51 +0530 | [diff] [blame] | 419 | if (is_resource($this->_smtp_connect)) |
| 420 | { |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 421 | $this->_send_command('quit'); |
nisheeth-barthwal | 758f40c | 2013-02-18 17:18:51 +0530 | [diff] [blame] | 422 | } |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 423 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 424 | |
| 425 | // -------------------------------------------------------------------- |
| 426 | |
| 427 | /** |
| 428 | * Initialize preferences |
| 429 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 430 | * @param array |
Andrew Podner | 4296a65 | 2012-12-17 07:51:15 -0500 | [diff] [blame] | 431 | * @return CI_Email |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 432 | */ |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 433 | public function initialize($config = array()) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 434 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 435 | foreach ($config as $key => $val) |
| 436 | { |
| 437 | if (isset($this->$key)) |
| 438 | { |
| 439 | $method = 'set_'.$key; |
| 440 | |
| 441 | if (method_exists($this, $method)) |
| 442 | { |
| 443 | $this->$method($val); |
| 444 | } |
| 445 | else |
| 446 | { |
| 447 | $this->$key = $val; |
| 448 | } |
| 449 | } |
| 450 | } |
Eric Barnes | 6113f54 | 2010-12-29 13:36:12 -0500 | [diff] [blame] | 451 | $this->clear(); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 452 | |
Alex Bilbie | d261b1e | 2012-06-02 11:12:16 +0100 | [diff] [blame] | 453 | $this->_smtp_auth = ! ($this->smtp_user === '' && $this->smtp_pass === ''); |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 454 | $this->_safe_mode = (bool) @ini_get('safe_mode'); |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 455 | |
| 456 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 457 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 458 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 459 | // -------------------------------------------------------------------- |
| 460 | |
| 461 | /** |
| 462 | * Initialize the Email Data |
| 463 | * |
Bo-Yi Wu | 83320eb | 2011-09-15 13:28:02 +0800 | [diff] [blame] | 464 | * @param bool |
Andrew Podner | 4296a65 | 2012-12-17 07:51:15 -0500 | [diff] [blame] | 465 | * @return CI_Email |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 466 | */ |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 467 | public function clear($clear_attachments = FALSE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 468 | { |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 469 | $this->_subject = ''; |
| 470 | $this->_body = ''; |
| 471 | $this->_finalbody = ''; |
| 472 | $this->_header_str = ''; |
| 473 | $this->_replyto_flag = FALSE; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 474 | $this->_recipients = array(); |
Derek Jones | d160635 | 2010-09-01 11:16:07 -0500 | [diff] [blame] | 475 | $this->_cc_array = array(); |
| 476 | $this->_bcc_array = array(); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 477 | $this->_headers = array(); |
| 478 | $this->_debug_msg = array(); |
| 479 | |
Mickey Wu | bfc1cad | 2012-05-31 22:28:40 -0700 | [diff] [blame] | 480 | $this->set_header('User-Agent', $this->useragent); |
| 481 | $this->set_header('Date', $this->_set_date()); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 482 | |
| 483 | if ($clear_attachments !== FALSE) |
| 484 | { |
Andrey Andreev | b8f9a15 | 2012-10-27 01:36:51 +0300 | [diff] [blame] | 485 | $this->_attachments = array(); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 486 | } |
Eric Barnes | 6113f54 | 2010-12-29 13:36:12 -0500 | [diff] [blame] | 487 | |
Greg Aker | a769deb | 2010-11-10 15:47:29 -0600 | [diff] [blame] | 488 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 489 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 490 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 491 | // -------------------------------------------------------------------- |
| 492 | |
| 493 | /** |
| 494 | * Set FROM |
| 495 | * |
Andrey Andreev | 5fd3ae8 | 2012-10-24 14:55:35 +0300 | [diff] [blame] | 496 | * @param string $from |
| 497 | * @param string $name |
| 498 | * @param string $return_path = NULL Return-Path |
Andrew Podner | 4296a65 | 2012-12-17 07:51:15 -0500 | [diff] [blame] | 499 | * @return CI_Email |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 500 | */ |
Andrey Andreev | 925dd90 | 2012-10-19 11:06:31 +0300 | [diff] [blame] | 501 | public function from($from, $name = '', $return_path = NULL) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 502 | { |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 503 | if (preg_match('/\<(.*)\>/', $from, $match)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 504 | { |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 505 | $from = $match[1]; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 506 | } |
| 507 | |
| 508 | if ($this->validate) |
| 509 | { |
| 510 | $this->validate_email($this->_str_to_array($from)); |
Andrey Andreev | ccd01c7 | 2012-10-05 17:12:55 +0300 | [diff] [blame] | 511 | if ($return_path) |
Melounek | 58dfc08 | 2012-06-29 08:43:47 +0200 | [diff] [blame] | 512 | { |
| 513 | $this->validate_email($this->_str_to_array($return_path)); |
| 514 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 515 | } |
| 516 | |
| 517 | // prepare the display name |
Alex Bilbie | d261b1e | 2012-06-02 11:12:16 +0100 | [diff] [blame] | 518 | if ($name !== '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 519 | { |
| 520 | // only use Q encoding if there are characters that would require it |
| 521 | if ( ! preg_match('/[\200-\377]/', $name)) |
| 522 | { |
| 523 | // add slashes for non-printing characters, slashes, and double quotes, and surround it in double quotes |
Derek Jones | c630bcf | 2008-11-17 21:09:45 +0000 | [diff] [blame] | 524 | $name = '"'.addcslashes($name, "\0..\37\177'\"\\").'"'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 525 | } |
| 526 | else |
| 527 | { |
Andrey Andreev | 925dd90 | 2012-10-19 11:06:31 +0300 | [diff] [blame] | 528 | $name = $this->_prep_q_encoding($name); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 529 | } |
| 530 | } |
| 531 | |
Mickey Wu | bfc1cad | 2012-05-31 22:28:40 -0700 | [diff] [blame] | 532 | $this->set_header('From', $name.' <'.$from.'>'); |
Melounek | 58dfc08 | 2012-06-29 08:43:47 +0200 | [diff] [blame] | 533 | |
Andrey Andreev | 925dd90 | 2012-10-19 11:06:31 +0300 | [diff] [blame] | 534 | isset($return_path) OR $return_path = $from; |
Melounek | 58dfc08 | 2012-06-29 08:43:47 +0200 | [diff] [blame] | 535 | $this->set_header('Return-Path', '<'.$return_path.'>'); |
Eric Barnes | 6113f54 | 2010-12-29 13:36:12 -0500 | [diff] [blame] | 536 | |
Greg Aker | a769deb | 2010-11-10 15:47:29 -0600 | [diff] [blame] | 537 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 538 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 539 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 540 | // -------------------------------------------------------------------- |
| 541 | |
| 542 | /** |
| 543 | * Set Reply-to |
| 544 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 545 | * @param string |
| 546 | * @param string |
Andrew Podner | 4296a65 | 2012-12-17 07:51:15 -0500 | [diff] [blame] | 547 | * @return CI_Email |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 548 | */ |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 549 | public function reply_to($replyto, $name = '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 550 | { |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 551 | if (preg_match('/\<(.*)\>/', $replyto, $match)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 552 | { |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 553 | $replyto = $match[1]; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 554 | } |
| 555 | |
| 556 | if ($this->validate) |
| 557 | { |
| 558 | $this->validate_email($this->_str_to_array($replyto)); |
| 559 | } |
| 560 | |
Alex Bilbie | d261b1e | 2012-06-02 11:12:16 +0100 | [diff] [blame] | 561 | if ($name === '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 562 | { |
| 563 | $name = $replyto; |
| 564 | } |
| 565 | |
Andrey Andreev | 3dad2e7 | 2012-06-14 15:10:56 +0300 | [diff] [blame] | 566 | if (strpos($name, '"') !== 0) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 567 | { |
| 568 | $name = '"'.$name.'"'; |
| 569 | } |
| 570 | |
Mickey Wu | bfc1cad | 2012-05-31 22:28:40 -0700 | [diff] [blame] | 571 | $this->set_header('Reply-To', $name.' <'.$replyto.'>'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 572 | $this->_replyto_flag = TRUE; |
Greg Aker | a769deb | 2010-11-10 15:47:29 -0600 | [diff] [blame] | 573 | |
| 574 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 575 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 576 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 577 | // -------------------------------------------------------------------- |
| 578 | |
| 579 | /** |
| 580 | * Set Recipients |
| 581 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 582 | * @param string |
Andrew Podner | 4296a65 | 2012-12-17 07:51:15 -0500 | [diff] [blame] | 583 | * @return CI_Email |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 584 | */ |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 585 | public function to($to) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 586 | { |
| 587 | $to = $this->_str_to_array($to); |
| 588 | $to = $this->clean_email($to); |
| 589 | |
| 590 | if ($this->validate) |
| 591 | { |
| 592 | $this->validate_email($to); |
| 593 | } |
| 594 | |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 595 | if ($this->_get_protocol() !== 'mail') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 596 | { |
Mickey Wu | bfc1cad | 2012-05-31 22:28:40 -0700 | [diff] [blame] | 597 | $this->set_header('To', implode(', ', $to)); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 598 | } |
| 599 | |
Andrey Andreev | 8a7078b | 2012-10-17 10:52:49 +0300 | [diff] [blame] | 600 | $this->_recipients = $to; |
Eric Barnes | 6113f54 | 2010-12-29 13:36:12 -0500 | [diff] [blame] | 601 | |
Greg Aker | a769deb | 2010-11-10 15:47:29 -0600 | [diff] [blame] | 602 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 603 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 604 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 605 | // -------------------------------------------------------------------- |
| 606 | |
| 607 | /** |
| 608 | * Set CC |
| 609 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 610 | * @param string |
Andrew Podner | 4296a65 | 2012-12-17 07:51:15 -0500 | [diff] [blame] | 611 | * @return CI_Email |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 612 | */ |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 613 | public function cc($cc) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 614 | { |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 615 | $cc = $this->clean_email($this->_str_to_array($cc)); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 616 | |
| 617 | if ($this->validate) |
| 618 | { |
| 619 | $this->validate_email($cc); |
| 620 | } |
| 621 | |
Mickey Wu | bfc1cad | 2012-05-31 22:28:40 -0700 | [diff] [blame] | 622 | $this->set_header('Cc', implode(', ', $cc)); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 623 | |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 624 | if ($this->_get_protocol() === 'smtp') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 625 | { |
| 626 | $this->_cc_array = $cc; |
| 627 | } |
Eric Barnes | 6113f54 | 2010-12-29 13:36:12 -0500 | [diff] [blame] | 628 | |
Greg Aker | a769deb | 2010-11-10 15:47:29 -0600 | [diff] [blame] | 629 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 630 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 631 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 632 | // -------------------------------------------------------------------- |
| 633 | |
| 634 | /** |
| 635 | * Set BCC |
| 636 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 637 | * @param string |
| 638 | * @param string |
Andrew Podner | 4296a65 | 2012-12-17 07:51:15 -0500 | [diff] [blame] | 639 | * @return CI_Email |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 640 | */ |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 641 | public function bcc($bcc, $limit = '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 642 | { |
Alex Bilbie | d261b1e | 2012-06-02 11:12:16 +0100 | [diff] [blame] | 643 | if ($limit !== '' && is_numeric($limit)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 644 | { |
| 645 | $this->bcc_batch_mode = TRUE; |
| 646 | $this->bcc_batch_size = $limit; |
| 647 | } |
| 648 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 649 | $bcc = $this->clean_email($this->_str_to_array($bcc)); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 650 | |
| 651 | if ($this->validate) |
| 652 | { |
| 653 | $this->validate_email($bcc); |
| 654 | } |
| 655 | |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 656 | if ($this->_get_protocol() === 'smtp' OR ($this->bcc_batch_mode && count($bcc) > $this->bcc_batch_size)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 657 | { |
| 658 | $this->_bcc_array = $bcc; |
| 659 | } |
| 660 | else |
| 661 | { |
Mickey Wu | bfc1cad | 2012-05-31 22:28:40 -0700 | [diff] [blame] | 662 | $this->set_header('Bcc', implode(', ', $bcc)); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 663 | } |
Eric Barnes | 6113f54 | 2010-12-29 13:36:12 -0500 | [diff] [blame] | 664 | |
Greg Aker | a769deb | 2010-11-10 15:47:29 -0600 | [diff] [blame] | 665 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 666 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 667 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 668 | // -------------------------------------------------------------------- |
| 669 | |
| 670 | /** |
| 671 | * Set Email Subject |
| 672 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 673 | * @param string |
Andrew Podner | 4296a65 | 2012-12-17 07:51:15 -0500 | [diff] [blame] | 674 | * @return CI_Email |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 675 | */ |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 676 | public function subject($subject) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 677 | { |
| 678 | $subject = $this->_prep_q_encoding($subject); |
Mickey Wu | bfc1cad | 2012-05-31 22:28:40 -0700 | [diff] [blame] | 679 | $this->set_header('Subject', $subject); |
Greg Aker | a769deb | 2010-11-10 15:47:29 -0600 | [diff] [blame] | 680 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 681 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 682 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 683 | // -------------------------------------------------------------------- |
| 684 | |
| 685 | /** |
| 686 | * Set Body |
| 687 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 688 | * @param string |
Andrew Podner | 4296a65 | 2012-12-17 07:51:15 -0500 | [diff] [blame] | 689 | * @return CI_Email |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 690 | */ |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 691 | public function message($body) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 692 | { |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 693 | $this->_body = rtrim(str_replace("\r", '', $body)); |
diegorivera | 33c3280 | 2011-10-19 02:56:15 -0200 | [diff] [blame] | 694 | |
Andrey Andreev | af72862 | 2011-10-20 10:11:59 +0300 | [diff] [blame] | 695 | /* strip slashes only if magic quotes is ON |
| 696 | if we do it with magic quotes OFF, it strips real, user-inputted chars. |
| 697 | |
| 698 | NOTE: In PHP 5.4 get_magic_quotes_gpc() will always return 0 and |
| 699 | it will probably not exist in future versions at all. |
| 700 | */ |
| 701 | if ( ! is_php('5.4') && get_magic_quotes_gpc()) |
diegorivera | 9fca615 | 2011-10-19 11:18:45 -0200 | [diff] [blame] | 702 | { |
diegorivera | 33c3280 | 2011-10-19 02:56:15 -0200 | [diff] [blame] | 703 | $this->_body = stripslashes($this->_body); |
diegorivera | 9fca615 | 2011-10-19 11:18:45 -0200 | [diff] [blame] | 704 | } |
diegorivera | 33c3280 | 2011-10-19 02:56:15 -0200 | [diff] [blame] | 705 | |
Greg Aker | a769deb | 2010-11-10 15:47:29 -0600 | [diff] [blame] | 706 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 707 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 708 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 709 | // -------------------------------------------------------------------- |
| 710 | |
| 711 | /** |
| 712 | * Assign file attachments |
| 713 | * |
Andrey Andreev | 5fd3ae8 | 2012-10-24 14:55:35 +0300 | [diff] [blame] | 714 | * @param string $filename |
| 715 | * @param string $disposition = 'attachment' |
| 716 | * @param string $newname = NULL |
| 717 | * @param string $mime = '' |
Andrew Podner | 4296a65 | 2012-12-17 07:51:15 -0500 | [diff] [blame] | 718 | * @return CI_Email |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 719 | */ |
Matteo Mattei | c3b36f4 | 2012-03-26 10:27:17 +0200 | [diff] [blame] | 720 | public function attach($filename, $disposition = '', $newname = NULL, $mime = '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 721 | { |
Andrey Andreev | b8f9a15 | 2012-10-27 01:36:51 +0300 | [diff] [blame] | 722 | $this->_attachments[] = array( |
| 723 | 'name' => array($filename, $newname), |
| 724 | 'disposition' => empty($disposition) ? 'attachment' : $disposition, // Can also be 'inline' Not sure if it matters |
| 725 | 'type' => $mime |
| 726 | ); |
| 727 | |
Greg Aker | a769deb | 2010-11-10 15:47:29 -0600 | [diff] [blame] | 728 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 729 | } |
| 730 | |
| 731 | // -------------------------------------------------------------------- |
| 732 | |
| 733 | /** |
| 734 | * Add a Header Item |
| 735 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 736 | * @param string |
| 737 | * @param string |
| 738 | * @return void |
| 739 | */ |
Mickey Wu | bfc1cad | 2012-05-31 22:28:40 -0700 | [diff] [blame] | 740 | public function set_header($header, $value) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 741 | { |
| 742 | $this->_headers[$header] = $value; |
| 743 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 744 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 745 | // -------------------------------------------------------------------- |
| 746 | |
| 747 | /** |
| 748 | * Convert a String to an Array |
| 749 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 750 | * @param string |
| 751 | * @return array |
| 752 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 753 | protected function _str_to_array($email) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 754 | { |
| 755 | if ( ! is_array($email)) |
| 756 | { |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 757 | return (strpos($email, ',') !== FALSE) |
| 758 | ? preg_split('/[\s,]/', $email, -1, PREG_SPLIT_NO_EMPTY) |
| 759 | : (array) trim($email); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 760 | } |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 761 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 762 | return $email; |
| 763 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 764 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 765 | // -------------------------------------------------------------------- |
| 766 | |
| 767 | /** |
| 768 | * Set Multipart Value |
| 769 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 770 | * @param string |
Andrew Podner | 4296a65 | 2012-12-17 07:51:15 -0500 | [diff] [blame] | 771 | * @return CI_Email |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 772 | */ |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 773 | public function set_alt_message($str = '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 774 | { |
Dan Horrigan | d0ddeaf | 2011-08-21 09:07:27 -0400 | [diff] [blame] | 775 | $this->alt_message = (string) $str; |
Greg Aker | a769deb | 2010-11-10 15:47:29 -0600 | [diff] [blame] | 776 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 777 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 778 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 779 | // -------------------------------------------------------------------- |
| 780 | |
| 781 | /** |
| 782 | * Set Mailtype |
| 783 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 784 | * @param string |
Andrew Podner | 4296a65 | 2012-12-17 07:51:15 -0500 | [diff] [blame] | 785 | * @return CI_Email |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 786 | */ |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 787 | public function set_mailtype($type = 'text') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 788 | { |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 789 | $this->mailtype = ($type === 'html') ? 'html' : 'text'; |
Greg Aker | a769deb | 2010-11-10 15:47:29 -0600 | [diff] [blame] | 790 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 791 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 792 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 793 | // -------------------------------------------------------------------- |
nisheeth-barthwal | cf22557 | 2013-02-18 01:08:04 +0530 | [diff] [blame] | 794 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 795 | /** |
| 796 | * Set Wordwrap |
| 797 | * |
Dan Horrigan | 628e660 | 2011-08-21 09:08:31 -0400 | [diff] [blame] | 798 | * @param bool |
Andrew Podner | 4296a65 | 2012-12-17 07:51:15 -0500 | [diff] [blame] | 799 | * @return CI_Email |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 800 | */ |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 801 | public function set_wordwrap($wordwrap = TRUE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 802 | { |
Dan Horrigan | 628e660 | 2011-08-21 09:08:31 -0400 | [diff] [blame] | 803 | $this->wordwrap = (bool) $wordwrap; |
Greg Aker | a769deb | 2010-11-10 15:47:29 -0600 | [diff] [blame] | 804 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 805 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 806 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 807 | // -------------------------------------------------------------------- |
| 808 | |
| 809 | /** |
| 810 | * Set Protocol |
| 811 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 812 | * @param string |
Andrew Podner | 4296a65 | 2012-12-17 07:51:15 -0500 | [diff] [blame] | 813 | * @return CI_Email |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 814 | */ |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 815 | public function set_protocol($protocol = 'mail') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 816 | { |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 817 | $this->protocol = in_array($protocol, $this->_protocols, TRUE) ? strtolower($protocol) : 'mail'; |
Greg Aker | a769deb | 2010-11-10 15:47:29 -0600 | [diff] [blame] | 818 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 819 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 820 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 821 | // -------------------------------------------------------------------- |
| 822 | |
| 823 | /** |
| 824 | * Set Priority |
| 825 | * |
Andrey Andreev | 081c946 | 2012-03-01 12:58:11 +0200 | [diff] [blame] | 826 | * @param int |
Andrew Podner | 4296a65 | 2012-12-17 07:51:15 -0500 | [diff] [blame] | 827 | * @return CI_Email |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 828 | */ |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 829 | public function set_priority($n = 3) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 830 | { |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 831 | $this->priority = preg_match('/^[1-5]$/', $n) ? (int) $n : 3; |
Greg Aker | a769deb | 2010-11-10 15:47:29 -0600 | [diff] [blame] | 832 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 833 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 834 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 835 | // -------------------------------------------------------------------- |
| 836 | |
| 837 | /** |
| 838 | * Set Newline Character |
| 839 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 840 | * @param string |
Andrew Podner | 4296a65 | 2012-12-17 07:51:15 -0500 | [diff] [blame] | 841 | * @return CI_Email |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 842 | */ |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 843 | public function set_newline($newline = "\n") |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 844 | { |
Andrey Andreev | b71e06b | 2011-12-22 19:22:50 +0200 | [diff] [blame] | 845 | $this->newline = in_array($newline, array("\n", "\r\n", "\r")) ? $newline : "\n"; |
Greg Aker | a769deb | 2010-11-10 15:47:29 -0600 | [diff] [blame] | 846 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 847 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 848 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 849 | // -------------------------------------------------------------------- |
| 850 | |
| 851 | /** |
| 852 | * Set CRLF |
| 853 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 854 | * @param string |
Andrew Podner | 4296a65 | 2012-12-17 07:51:15 -0500 | [diff] [blame] | 855 | * @return CI_Email |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 856 | */ |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 857 | public function set_crlf($crlf = "\n") |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 858 | { |
Andrey Andreev | 76f15c9 | 2012-03-01 13:05:07 +0200 | [diff] [blame] | 859 | $this->crlf = ($crlf !== "\n" && $crlf !== "\r\n" && $crlf !== "\r") ? "\n" : $crlf; |
Greg Aker | a769deb | 2010-11-10 15:47:29 -0600 | [diff] [blame] | 860 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 861 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 862 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 863 | // -------------------------------------------------------------------- |
| 864 | |
| 865 | /** |
| 866 | * Set Message Boundary |
| 867 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 868 | * @return void |
| 869 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 870 | protected function _set_boundaries() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 871 | { |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 872 | $this->_alt_boundary = 'B_ALT_'.uniqid(''); // multipart/alternative |
| 873 | $this->_atc_boundary = 'B_ATC_'.uniqid(''); // attachment boundary |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 874 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 875 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 876 | // -------------------------------------------------------------------- |
| 877 | |
| 878 | /** |
| 879 | * Get the Message ID |
| 880 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 881 | * @return string |
| 882 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 883 | protected function _get_message_id() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 884 | { |
Andrey Andreev | b71e06b | 2011-12-22 19:22:50 +0200 | [diff] [blame] | 885 | $from = str_replace(array('>', '<'), '', $this->_headers['Return-Path']); |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 886 | return '<'.uniqid('').strstr($from, '@').'>'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 887 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 888 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 889 | // -------------------------------------------------------------------- |
| 890 | |
| 891 | /** |
| 892 | * Get Mail Protocol |
| 893 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 894 | * @param bool |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 895 | * @return mixed |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 896 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 897 | protected function _get_protocol($return = TRUE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 898 | { |
| 899 | $this->protocol = strtolower($this->protocol); |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 900 | in_array($this->protocol, $this->_protocols, TRUE) OR $this->protocol = 'mail'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 901 | |
Alex Bilbie | d261b1e | 2012-06-02 11:12:16 +0100 | [diff] [blame] | 902 | if ($return === TRUE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 903 | { |
| 904 | return $this->protocol; |
| 905 | } |
| 906 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 907 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 908 | // -------------------------------------------------------------------- |
| 909 | |
| 910 | /** |
| 911 | * Get Mail Encoding |
| 912 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 913 | * @param bool |
| 914 | * @return string |
| 915 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 916 | protected function _get_encoding($return = TRUE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 917 | { |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 918 | in_array($this->_encoding, $this->_bit_depths) OR $this->_encoding = '8bit'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 919 | |
| 920 | foreach ($this->_base_charsets as $charset) |
| 921 | { |
Andrey Andreev | 3dad2e7 | 2012-06-14 15:10:56 +0300 | [diff] [blame] | 922 | if (strpos($charset, $this->charset) === 0) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 923 | { |
| 924 | $this->_encoding = '7bit'; |
| 925 | } |
| 926 | } |
| 927 | |
Alex Bilbie | d261b1e | 2012-06-02 11:12:16 +0100 | [diff] [blame] | 928 | if ($return === TRUE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 929 | { |
| 930 | return $this->_encoding; |
| 931 | } |
| 932 | } |
| 933 | |
| 934 | // -------------------------------------------------------------------- |
| 935 | |
| 936 | /** |
| 937 | * Get content type (text/html/attachment) |
| 938 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 939 | * @return string |
| 940 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 941 | protected function _get_content_type() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 942 | { |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 943 | if ($this->mailtype === 'html') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 944 | { |
Andrey Andreev | b8f9a15 | 2012-10-27 01:36:51 +0300 | [diff] [blame] | 945 | return (count($this->_attachments) === 0) ? 'html' : 'html-attach'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 946 | } |
Andrey Andreev | b8f9a15 | 2012-10-27 01:36:51 +0300 | [diff] [blame] | 947 | elseif ($this->mailtype === 'text' && count($this->_attachments) > 0) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 948 | { |
| 949 | return 'plain-attach'; |
| 950 | } |
| 951 | else |
| 952 | { |
| 953 | return 'plain'; |
| 954 | } |
| 955 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 956 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 957 | // -------------------------------------------------------------------- |
| 958 | |
| 959 | /** |
| 960 | * Set RFC 822 Date |
| 961 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 962 | * @return string |
| 963 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 964 | protected function _set_date() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 965 | { |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 966 | $timezone = date('Z'); |
Andrey Andreev | 3dad2e7 | 2012-06-14 15:10:56 +0300 | [diff] [blame] | 967 | $operator = ($timezone[0] === '-') ? '-' : '+'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 968 | $timezone = abs($timezone); |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 969 | $timezone = floor($timezone/3600) * 100 + ($timezone % 3600) / 60; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 970 | |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 971 | return sprintf('%s %s%04d', date('D, j M Y H:i:s'), $operator, $timezone); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 972 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 973 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 974 | // -------------------------------------------------------------------- |
| 975 | |
| 976 | /** |
| 977 | * Mime message |
| 978 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 979 | * @return string |
| 980 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 981 | protected function _get_mime_message() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 982 | { |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 983 | return 'This is a multi-part message in MIME format.'.$this->newline.'Your email application may not support this format.'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 984 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 985 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 986 | // -------------------------------------------------------------------- |
| 987 | |
| 988 | /** |
| 989 | * Validate Email Address |
| 990 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 991 | * @param string |
| 992 | * @return bool |
| 993 | */ |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 994 | public function validate_email($email) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 995 | { |
| 996 | if ( ! is_array($email)) |
| 997 | { |
patwork | b070798 | 2011-04-08 15:10:05 +0200 | [diff] [blame] | 998 | $this->_set_error_message('lang:email_must_be_array'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 999 | return FALSE; |
| 1000 | } |
| 1001 | |
| 1002 | foreach ($email as $val) |
| 1003 | { |
| 1004 | if ( ! $this->valid_email($val)) |
| 1005 | { |
patwork | b070798 | 2011-04-08 15:10:05 +0200 | [diff] [blame] | 1006 | $this->_set_error_message('lang:email_invalid_address', $val); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1007 | return FALSE; |
| 1008 | } |
| 1009 | } |
| 1010 | |
| 1011 | return TRUE; |
| 1012 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1013 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1014 | // -------------------------------------------------------------------- |
| 1015 | |
| 1016 | /** |
| 1017 | * Email Validation |
| 1018 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1019 | * @param string |
| 1020 | * @return bool |
| 1021 | */ |
Timothy Warren | d37f0e9 | 2012-06-27 08:21:59 -0400 | [diff] [blame] | 1022 | public function valid_email($email) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1023 | { |
Andrey Andreev | 580388b | 2012-06-27 15:43:46 +0300 | [diff] [blame] | 1024 | return (bool) filter_var($email, FILTER_VALIDATE_EMAIL); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1025 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1026 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1027 | // -------------------------------------------------------------------- |
| 1028 | |
| 1029 | /** |
| 1030 | * Clean Extended Email Address: Joe Smith <joe@smith.com> |
| 1031 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1032 | * @param string |
| 1033 | * @return string |
| 1034 | */ |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 1035 | public function clean_email($email) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1036 | { |
| 1037 | if ( ! is_array($email)) |
| 1038 | { |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1039 | return preg_match('/\<(.*)\>/', $email, $match) ? $match[1] : $email; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1040 | } |
| 1041 | |
| 1042 | $clean_email = array(); |
| 1043 | |
| 1044 | foreach ($email as $addy) |
| 1045 | { |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 1046 | $clean_email[] = preg_match('/\<(.*)\>/', $addy, $match) ? $match[1] : $addy; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1047 | } |
| 1048 | |
| 1049 | return $clean_email; |
| 1050 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1051 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1052 | // -------------------------------------------------------------------- |
| 1053 | |
| 1054 | /** |
| 1055 | * Build alternative plain text message |
| 1056 | * |
Andrey Andreev | 8df1ae2 | 2012-10-19 11:20:54 +0300 | [diff] [blame] | 1057 | * Provides the raw message for use in plain-text headers of |
| 1058 | * HTML-formatted emails. |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1059 | * If the user hasn't specified his own alternative message |
| 1060 | * it creates one by stripping the HTML |
| 1061 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1062 | * @return string |
| 1063 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 1064 | protected function _get_alt_message() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1065 | { |
Andrey Andreev | 8df1ae2 | 2012-10-19 11:20:54 +0300 | [diff] [blame] | 1066 | if ( ! empty($this->alt_message)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1067 | { |
Andrey Andreev | 8df1ae2 | 2012-10-19 11:20:54 +0300 | [diff] [blame] | 1068 | return ($this->wordwrap) |
| 1069 | ? $this->word_wrap($this->alt_message, 76) |
| 1070 | : $this->alt_message; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1071 | } |
| 1072 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1073 | $body = preg_match('/\<body.*?\>(.*)\<\/body\>/si', $this->_body, $match) ? $match[1] : $this->_body; |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1074 | $body = str_replace("\t", '', preg_replace('#<!--(.*)--\>#', '', trim(strip_tags($body)))); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1075 | |
| 1076 | for ($i = 20; $i >= 3; $i--) |
| 1077 | { |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1078 | $body = str_replace(str_repeat("\n", $i), "\n\n", $body); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1079 | } |
| 1080 | |
GDmac | 9bea4be | 2012-10-30 06:14:19 +0100 | [diff] [blame] | 1081 | // Reduce multiple spaces |
Andrey Andreev | 8a203f6 | 2012-11-02 20:40:43 +0200 | [diff] [blame] | 1082 | $body = preg_replace('| +|', ' ', $body); |
GDmac | 9bea4be | 2012-10-30 06:14:19 +0100 | [diff] [blame] | 1083 | |
Andrey Andreev | 8df1ae2 | 2012-10-19 11:20:54 +0300 | [diff] [blame] | 1084 | return ($this->wordwrap) |
| 1085 | ? $this->word_wrap($body, 76) |
| 1086 | : $body; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1087 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1088 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1089 | // -------------------------------------------------------------------- |
| 1090 | |
| 1091 | /** |
| 1092 | * Word Wrap |
| 1093 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1094 | * @param string |
Andrey Andreev | 8df1ae2 | 2012-10-19 11:20:54 +0300 | [diff] [blame] | 1095 | * @param int line-length limit |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1096 | * @return string |
| 1097 | */ |
Andrey Andreev | 00ea2a9 | 2012-10-18 14:59:29 +0300 | [diff] [blame] | 1098 | public function word_wrap($str, $charlim = NULL) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1099 | { |
Andrey Andreev | 00ea2a9 | 2012-10-18 14:59:29 +0300 | [diff] [blame] | 1100 | // Set the character limit, if not already present |
| 1101 | if (empty($charlim)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1102 | { |
Andrey Andreev | 00ea2a9 | 2012-10-18 14:59:29 +0300 | [diff] [blame] | 1103 | $charlim = empty($this->wrapchars) ? 76 : $this->wrapchars; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1104 | } |
| 1105 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1106 | // Standardize newlines |
| 1107 | if (strpos($str, "\r") !== FALSE) |
| 1108 | { |
Andrey Andreev | b71e06b | 2011-12-22 19:22:50 +0200 | [diff] [blame] | 1109 | $str = str_replace(array("\r\n", "\r"), "\n", $str); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1110 | } |
| 1111 | |
GDmac | 9bea4be | 2012-10-30 06:14:19 +0100 | [diff] [blame] | 1112 | // Reduce multiple spaces at end of line |
| 1113 | $str = preg_replace('| +\n|', "\n", $str); |
| 1114 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1115 | // If the current word is surrounded by {unwrap} tags we'll |
| 1116 | // strip the entire chunk and replace it with a marker. |
| 1117 | $unwrap = array(); |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1118 | if (preg_match_all('|(\{unwrap\}.+?\{/unwrap\})|s', $str, $matches)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1119 | { |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1120 | for ($i = 0, $c = count($matches[0]); $i < $c; $i++) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1121 | { |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1122 | $unwrap[] = $matches[1][$i]; |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1123 | $str = str_replace($matches[1][$i], '{{unwrapped'.$i.'}}', $str); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1124 | } |
| 1125 | } |
| 1126 | |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 1127 | // Use PHP's native public function to do the initial wordwrap. |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1128 | // We set the cut flag to FALSE so that any individual words that are |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1129 | // too long get left alone. In the next step we'll deal with them. |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1130 | $str = wordwrap($str, $charlim, "\n", FALSE); |
| 1131 | |
| 1132 | // Split the string into individual lines of text and cycle through them |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1133 | $output = ''; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1134 | foreach (explode("\n", $str) as $line) |
| 1135 | { |
| 1136 | // Is the line within the allowed character count? |
| 1137 | // If so we'll join it to the output and continue |
| 1138 | if (strlen($line) <= $charlim) |
| 1139 | { |
| 1140 | $output .= $line.$this->newline; |
| 1141 | continue; |
| 1142 | } |
| 1143 | |
| 1144 | $temp = ''; |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1145 | do |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1146 | { |
| 1147 | // If the over-length word is a URL we won't wrap it |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1148 | if (preg_match('!\[url.+\]|://|wwww.!', $line)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1149 | { |
| 1150 | break; |
| 1151 | } |
| 1152 | |
| 1153 | // Trim the word down |
| 1154 | $temp .= substr($line, 0, $charlim-1); |
| 1155 | $line = substr($line, $charlim-1); |
| 1156 | } |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1157 | while (strlen($line) > $charlim); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1158 | |
| 1159 | // If $temp contains data it means we had to split up an over-length |
| 1160 | // word into smaller chunks so we'll add it back to our current line |
Alex Bilbie | d261b1e | 2012-06-02 11:12:16 +0100 | [diff] [blame] | 1161 | if ($temp !== '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1162 | { |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1163 | $output .= $temp.$this->newline; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1164 | } |
| 1165 | |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1166 | $output .= $line.$this->newline; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1167 | } |
| 1168 | |
| 1169 | // Put our markers back |
| 1170 | if (count($unwrap) > 0) |
| 1171 | { |
| 1172 | foreach ($unwrap as $key => $val) |
| 1173 | { |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1174 | $output = str_replace('{{unwrapped'.$key.'}}', $val, $output); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1175 | } |
| 1176 | } |
| 1177 | |
| 1178 | return $output; |
| 1179 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1180 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1181 | // -------------------------------------------------------------------- |
| 1182 | |
| 1183 | /** |
| 1184 | * Build final headers |
| 1185 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1186 | * @return string |
| 1187 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 1188 | protected function _build_headers() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1189 | { |
Mickey Wu | bfc1cad | 2012-05-31 22:28:40 -0700 | [diff] [blame] | 1190 | $this->set_header('X-Sender', $this->clean_email($this->_headers['From'])); |
| 1191 | $this->set_header('X-Mailer', $this->useragent); |
| 1192 | $this->set_header('X-Priority', $this->_priorities[$this->priority - 1]); |
| 1193 | $this->set_header('Message-ID', $this->_get_message_id()); |
| 1194 | $this->set_header('Mime-Version', '1.0'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1195 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1196 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1197 | // -------------------------------------------------------------------- |
| 1198 | |
| 1199 | /** |
| 1200 | * Write Headers as a string |
| 1201 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1202 | * @return void |
| 1203 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 1204 | protected function _write_headers() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1205 | { |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1206 | if ($this->protocol === 'mail') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1207 | { |
| 1208 | $this->_subject = $this->_headers['Subject']; |
| 1209 | unset($this->_headers['Subject']); |
| 1210 | } |
| 1211 | |
| 1212 | reset($this->_headers); |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1213 | $this->_header_str = ''; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1214 | |
Pascal Kriete | 14287f3 | 2011-02-14 13:39:34 -0500 | [diff] [blame] | 1215 | foreach ($this->_headers as $key => $val) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1216 | { |
| 1217 | $val = trim($val); |
| 1218 | |
Alex Bilbie | d261b1e | 2012-06-02 11:12:16 +0100 | [diff] [blame] | 1219 | if ($val !== '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1220 | { |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1221 | $this->_header_str .= $key.': '.$val.$this->newline; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1222 | } |
| 1223 | } |
| 1224 | |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1225 | if ($this->_get_protocol() === 'mail') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1226 | { |
Derek Jones | 1d89088 | 2009-02-10 20:32:14 +0000 | [diff] [blame] | 1227 | $this->_header_str = rtrim($this->_header_str); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1228 | } |
| 1229 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1230 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1231 | // -------------------------------------------------------------------- |
| 1232 | |
| 1233 | /** |
| 1234 | * Build Final Body and attachments |
| 1235 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1236 | * @return void |
| 1237 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 1238 | protected function _build_message() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1239 | { |
Andrey Andreev | 76f15c9 | 2012-03-01 13:05:07 +0200 | [diff] [blame] | 1240 | if ($this->wordwrap === TRUE && $this->mailtype !== 'html') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1241 | { |
| 1242 | $this->_body = $this->word_wrap($this->_body); |
| 1243 | } |
| 1244 | |
| 1245 | $this->_set_boundaries(); |
| 1246 | $this->_write_headers(); |
| 1247 | |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1248 | $hdr = ($this->_get_protocol() === 'mail') ? $this->newline : ''; |
Brandon Jones | 485d741 | 2010-11-09 16:38:17 -0500 | [diff] [blame] | 1249 | $body = ''; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1250 | |
| 1251 | switch ($this->_get_content_type()) |
| 1252 | { |
| 1253 | case 'plain' : |
| 1254 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1255 | $hdr .= 'Content-Type: text/plain; charset='.$this->charset.$this->newline |
| 1256 | .'Content-Transfer-Encoding: '.$this->_get_encoding(); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1257 | |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1258 | if ($this->_get_protocol() === 'mail') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1259 | { |
| 1260 | $this->_header_str .= $hdr; |
| 1261 | $this->_finalbody = $this->_body; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1262 | } |
Brandon Jones | 485d741 | 2010-11-09 16:38:17 -0500 | [diff] [blame] | 1263 | else |
| 1264 | { |
| 1265 | $this->_finalbody = $hdr . $this->newline . $this->newline . $this->_body; |
| 1266 | } |
Eric Barnes | 6113f54 | 2010-12-29 13:36:12 -0500 | [diff] [blame] | 1267 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1268 | return; |
| 1269 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1270 | case 'html' : |
| 1271 | |
| 1272 | if ($this->send_multipart === FALSE) |
| 1273 | { |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1274 | $hdr .= 'Content-Type: text/html; charset='.$this->charset.$this->newline |
| 1275 | .'Content-Transfer-Encoding: quoted-printable'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1276 | } |
| 1277 | else |
| 1278 | { |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1279 | $hdr .= 'Content-Type: multipart/alternative; boundary="'.$this->_alt_boundary.'"'.$this->newline.$this->newline; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1280 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1281 | $body .= $this->_get_mime_message().$this->newline.$this->newline |
| 1282 | .'--'.$this->_alt_boundary.$this->newline |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1283 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1284 | .'Content-Type: text/plain; charset='.$this->charset.$this->newline |
| 1285 | .'Content-Transfer-Encoding: '.$this->_get_encoding().$this->newline.$this->newline |
| 1286 | .$this->_get_alt_message().$this->newline.$this->newline.'--'.$this->_alt_boundary.$this->newline |
Brandon Jones | 485d741 | 2010-11-09 16:38:17 -0500 | [diff] [blame] | 1287 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1288 | .'Content-Type: text/html; charset='.$this->charset.$this->newline |
| 1289 | .'Content-Transfer-Encoding: quoted-printable'.$this->newline.$this->newline; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1290 | } |
Eric Barnes | 6113f54 | 2010-12-29 13:36:12 -0500 | [diff] [blame] | 1291 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1292 | $this->_finalbody = $body.$this->_prep_quoted_printable($this->_body).$this->newline.$this->newline; |
Eric Barnes | 6113f54 | 2010-12-29 13:36:12 -0500 | [diff] [blame] | 1293 | |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1294 | if ($this->_get_protocol() === 'mail') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1295 | { |
| 1296 | $this->_header_str .= $hdr; |
Brandon Jones | 485d741 | 2010-11-09 16:38:17 -0500 | [diff] [blame] | 1297 | } |
| 1298 | else |
| 1299 | { |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1300 | $this->_finalbody = $hdr.$this->_finalbody; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1301 | } |
| 1302 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1303 | if ($this->send_multipart !== FALSE) |
| 1304 | { |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1305 | $this->_finalbody .= '--'.$this->_alt_boundary.'--'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1306 | } |
| 1307 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1308 | return; |
| 1309 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1310 | case 'plain-attach' : |
| 1311 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1312 | $hdr .= 'Content-Type: multipart/'.$this->multipart.'; boundary="'.$this->_atc_boundary.'"'.$this->newline.$this->newline; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1313 | |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1314 | if ($this->_get_protocol() === 'mail') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1315 | { |
| 1316 | $this->_header_str .= $hdr; |
Eric Barnes | 6113f54 | 2010-12-29 13:36:12 -0500 | [diff] [blame] | 1317 | } |
| 1318 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1319 | $body .= $this->_get_mime_message().$this->newline.$this->newline |
| 1320 | .'--'.$this->_atc_boundary.$this->newline |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1321 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1322 | .'Content-Type: text/plain; charset='.$this->charset.$this->newline |
| 1323 | .'Content-Transfer-Encoding: '.$this->_get_encoding().$this->newline.$this->newline |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1324 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1325 | .$this->_body.$this->newline.$this->newline; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1326 | |
| 1327 | break; |
| 1328 | case 'html-attach' : |
| 1329 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1330 | $hdr .= 'Content-Type: multipart/'.$this->multipart.'; boundary="'.$this->_atc_boundary.'"'.$this->newline.$this->newline; |
Eric Barnes | 6113f54 | 2010-12-29 13:36:12 -0500 | [diff] [blame] | 1331 | |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1332 | if ($this->_get_protocol() === 'mail') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1333 | { |
| 1334 | $this->_header_str .= $hdr; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1335 | } |
| 1336 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1337 | $body .= $this->_get_mime_message().$this->newline.$this->newline |
| 1338 | .'--'.$this->_atc_boundary.$this->newline |
Brandon Jones | 485d741 | 2010-11-09 16:38:17 -0500 | [diff] [blame] | 1339 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1340 | .'Content-Type: multipart/alternative; boundary="'.$this->_alt_boundary.'"'.$this->newline.$this->newline |
| 1341 | .'--'.$this->_alt_boundary.$this->newline |
Brandon Jones | 485d741 | 2010-11-09 16:38:17 -0500 | [diff] [blame] | 1342 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1343 | .'Content-Type: text/plain; charset='.$this->charset.$this->newline |
| 1344 | .'Content-Transfer-Encoding: '.$this->_get_encoding().$this->newline.$this->newline |
| 1345 | .$this->_get_alt_message().$this->newline.$this->newline.'--'.$this->_alt_boundary.$this->newline |
Brandon Jones | 485d741 | 2010-11-09 16:38:17 -0500 | [diff] [blame] | 1346 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1347 | .'Content-Type: text/html; charset='.$this->charset.$this->newline |
| 1348 | .'Content-Transfer-Encoding: quoted-printable'.$this->newline.$this->newline |
Brandon Jones | 485d741 | 2010-11-09 16:38:17 -0500 | [diff] [blame] | 1349 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1350 | .$this->_prep_quoted_printable($this->_body).$this->newline.$this->newline |
| 1351 | .'--'.$this->_alt_boundary.'--'.$this->newline.$this->newline; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1352 | |
| 1353 | break; |
| 1354 | } |
| 1355 | |
| 1356 | $attachment = array(); |
Andrey Andreev | b8f9a15 | 2012-10-27 01:36:51 +0300 | [diff] [blame] | 1357 | for ($i = 0, $c = count($this->_attachments), $z = 0; $i < $c; $i++) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1358 | { |
Andrey Andreev | b8f9a15 | 2012-10-27 01:36:51 +0300 | [diff] [blame] | 1359 | $filename = $this->_attachments[$i]['name'][0]; |
vlakoff | 912f1bc | 2013-01-15 03:34:12 +0100 | [diff] [blame] | 1360 | $basename = ($this->_attachments[$i]['name'][1] === NULL) |
Andrey Andreev | b8f9a15 | 2012-10-27 01:36:51 +0300 | [diff] [blame] | 1361 | ? basename($filename) : $this->_attachments[$i]['name'][1]; |
| 1362 | $ctype = $this->_attachments[$i]['type']; |
Matteo Mattei | 5688d58 | 2012-03-13 19:29:29 +0100 | [diff] [blame] | 1363 | $file_content = ''; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1364 | |
Andrey Andreev | b8f9a15 | 2012-10-27 01:36:51 +0300 | [diff] [blame] | 1365 | if ($ctype === '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1366 | { |
Matteo Mattei | 5688d58 | 2012-03-13 19:29:29 +0100 | [diff] [blame] | 1367 | if ( ! file_exists($filename)) |
| 1368 | { |
| 1369 | $this->_set_error_message('lang:email_attachment_missing', $filename); |
| 1370 | return FALSE; |
| 1371 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1372 | |
Matteo Mattei | 5688d58 | 2012-03-13 19:29:29 +0100 | [diff] [blame] | 1373 | $file = filesize($filename) +1; |
| 1374 | |
| 1375 | if ( ! $fp = fopen($filename, FOPEN_READ)) |
| 1376 | { |
| 1377 | $this->_set_error_message('lang:email_attachment_unreadable', $filename); |
| 1378 | return FALSE; |
| 1379 | } |
| 1380 | |
Matteo Mattei | c3b36f4 | 2012-03-26 10:27:17 +0200 | [diff] [blame] | 1381 | $ctype = $this->_mime_types(pathinfo($filename, PATHINFO_EXTENSION)); |
Matteo Mattei | 5688d58 | 2012-03-13 19:29:29 +0100 | [diff] [blame] | 1382 | $file_content = fread($fp, $file); |
| 1383 | fclose($fp); |
| 1384 | } |
| 1385 | else |
| 1386 | { |
Andrey Andreev | b8f9a15 | 2012-10-27 01:36:51 +0300 | [diff] [blame] | 1387 | $file_content =& $this->_attachments[$i]['name'][0]; |
Matteo Mattei | 5688d58 | 2012-03-13 19:29:29 +0100 | [diff] [blame] | 1388 | } |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1389 | |
| 1390 | $attachment[$z++] = '--'.$this->_atc_boundary.$this->newline |
| 1391 | .'Content-type: '.$ctype.'; ' |
| 1392 | .'name="'.$basename.'"'.$this->newline |
Andrey Andreev | b8f9a15 | 2012-10-27 01:36:51 +0300 | [diff] [blame] | 1393 | .'Content-Disposition: '.$this->_attachments[$i]['disposition'].';'.$this->newline |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1394 | .'Content-Transfer-Encoding: base64'.$this->newline; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1395 | |
Matteo Mattei | 5688d58 | 2012-03-13 19:29:29 +0100 | [diff] [blame] | 1396 | $attachment[$z++] = chunk_split(base64_encode($file_content)); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1397 | } |
| 1398 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1399 | $body .= implode($this->newline, $attachment).$this->newline.'--'.$this->_atc_boundary.'--'; |
| 1400 | $this->_finalbody = ($this->_get_protocol() === 'mail') ? $body : $hdr.$body; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1401 | return; |
| 1402 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1403 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1404 | // -------------------------------------------------------------------- |
| 1405 | |
| 1406 | /** |
| 1407 | * Prep Quoted Printable |
| 1408 | * |
| 1409 | * Prepares string for Quoted-Printable Content-Transfer-Encoding |
| 1410 | * Refer to RFC 2045 http://www.ietf.org/rfc/rfc2045.txt |
| 1411 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1412 | * @param string |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1413 | * @return string |
| 1414 | */ |
Andrey Andreev | 683b34d | 2012-10-09 15:00:00 +0300 | [diff] [blame] | 1415 | protected function _prep_quoted_printable($str) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1416 | { |
Andrey Andreev | 00ea2a9 | 2012-10-18 14:59:29 +0300 | [diff] [blame] | 1417 | // We are intentionally wrapping so mail servers will encode characters |
| 1418 | // properly and MUAs will behave, so {unwrap} must go! |
| 1419 | $str = str_replace(array('{unwrap}', '{/unwrap}'), '', $str); |
| 1420 | |
Andrey Andreev | 683b34d | 2012-10-09 15:00:00 +0300 | [diff] [blame] | 1421 | // RFC 2045 specifies CRLF as "\r\n". |
| 1422 | // However, many developers choose to override that and violate |
| 1423 | // the RFC rules due to (apparently) a bug in MS Exchange, |
| 1424 | // which only works with "\n". |
Andrey Andreev | 26f0cf9 | 2012-10-11 13:52:39 +0300 | [diff] [blame] | 1425 | if ($this->crlf === "\r\n") |
Andrey Andreev | 683b34d | 2012-10-09 15:00:00 +0300 | [diff] [blame] | 1426 | { |
Andrey Andreev | 26f0cf9 | 2012-10-11 13:52:39 +0300 | [diff] [blame] | 1427 | if (is_php('5.3')) |
| 1428 | { |
| 1429 | return quoted_printable_encode($str); |
| 1430 | } |
| 1431 | elseif (function_exists('imap_8bit')) |
| 1432 | { |
| 1433 | return imap_8bit($str); |
| 1434 | } |
Andrey Andreev | 683b34d | 2012-10-09 15:00:00 +0300 | [diff] [blame] | 1435 | } |
| 1436 | |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1437 | // Reduce multiple spaces & remove nulls |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1438 | $str = preg_replace(array('| +|', '/\x00+/'), array(' ', ''), $str); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1439 | |
| 1440 | // Standardize newlines |
| 1441 | if (strpos($str, "\r") !== FALSE) |
| 1442 | { |
| 1443 | $str = str_replace(array("\r\n", "\r"), "\n", $str); |
| 1444 | } |
| 1445 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1446 | $escape = '='; |
| 1447 | $output = ''; |
| 1448 | |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1449 | foreach (explode("\n", $str) as $line) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1450 | { |
| 1451 | $length = strlen($line); |
| 1452 | $temp = ''; |
| 1453 | |
| 1454 | // Loop through each character in the line to add soft-wrap |
| 1455 | // characters at the end of a line " =\r\n" and add the newly |
| 1456 | // processed line(s) to the output (see comment on $crlf class property) |
| 1457 | for ($i = 0; $i < $length; $i++) |
| 1458 | { |
| 1459 | // Grab the next character |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1460 | $char = $line[$i]; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1461 | $ascii = ord($char); |
| 1462 | |
| 1463 | // Convert spaces and tabs but only if it's the end of the line |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1464 | if ($i === ($length - 1) && ($ascii === 32 OR $ascii === 9)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1465 | { |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1466 | $char = $escape.sprintf('%02s', dechex($ascii)); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1467 | } |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1468 | elseif ($ascii === 61) // encode = signs |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1469 | { |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 1470 | $char = $escape.strtoupper(sprintf('%02s', dechex($ascii))); // =3D |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1471 | } |
| 1472 | |
| 1473 | // If we're at the character limit, add the line to the output, |
| 1474 | // reset our temp variable, and keep on chuggin' |
Andrey Andreev | e8bc5f4 | 2012-10-10 11:13:59 +0300 | [diff] [blame] | 1475 | if ((strlen($temp) + strlen($char)) >= 76) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1476 | { |
| 1477 | $output .= $temp.$escape.$this->crlf; |
| 1478 | $temp = ''; |
| 1479 | } |
| 1480 | |
| 1481 | // Add the character to our temporary line |
| 1482 | $temp .= $char; |
| 1483 | } |
| 1484 | |
| 1485 | // Add our completed line to the output |
| 1486 | $output .= $temp.$this->crlf; |
| 1487 | } |
| 1488 | |
| 1489 | // get rid of extra CRLF tacked onto the end |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 1490 | return substr($output, 0, strlen($this->crlf) * -1); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1491 | } |
| 1492 | |
| 1493 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1494 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1495 | /** |
| 1496 | * Prep Q Encoding |
| 1497 | * |
Andrey Andreev | 925dd90 | 2012-10-19 11:06:31 +0300 | [diff] [blame] | 1498 | * Performs "Q Encoding" on a string for use in email headers. |
| 1499 | * It's related but not identical to quoted-printable, so it has its |
| 1500 | * own method. |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1501 | * |
Andrey Andreev | 081c946 | 2012-03-01 12:58:11 +0200 | [diff] [blame] | 1502 | * @param string |
Andrey Andreev | 081c946 | 2012-03-01 12:58:11 +0200 | [diff] [blame] | 1503 | * @return string |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1504 | */ |
Andrey Andreev | 925dd90 | 2012-10-19 11:06:31 +0300 | [diff] [blame] | 1505 | protected function _prep_q_encoding($str) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1506 | { |
Andrey Andreev | 925dd90 | 2012-10-19 11:06:31 +0300 | [diff] [blame] | 1507 | $str = str_replace(array("\r", "\n"), '', $str); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1508 | |
Andrey Andreev | 925dd90 | 2012-10-19 11:06:31 +0300 | [diff] [blame] | 1509 | if ($this->charset === 'UTF-8') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1510 | { |
Andrey Andreev | 925dd90 | 2012-10-19 11:06:31 +0300 | [diff] [blame] | 1511 | if (MB_ENABLED === TRUE) |
| 1512 | { |
| 1513 | return mb_encode_mimeheader($str, $this->charset, 'Q', $this->crlf); |
| 1514 | } |
| 1515 | elseif (extension_loaded('iconv')) |
| 1516 | { |
| 1517 | $output = @iconv_mime_encode('', $str, |
| 1518 | array( |
| 1519 | 'scheme' => 'Q', |
| 1520 | 'line-length' => 76, |
| 1521 | 'input-charset' => $this->charset, |
| 1522 | 'output-charset' => $this->charset, |
| 1523 | 'line-break-chars' => $this->crlf |
| 1524 | ) |
| 1525 | ); |
| 1526 | |
| 1527 | // There are reports that iconv_mime_encode() might fail and return FALSE |
| 1528 | if ($output !== FALSE) |
| 1529 | { |
| 1530 | // iconv_mime_encode() will always put a header field name. |
| 1531 | // We've passed it an empty one, but it still prepends our |
| 1532 | // encoded string with ': ', so we need to strip it. |
| 1533 | return substr($output, 2); |
| 1534 | } |
| 1535 | |
| 1536 | $chars = iconv_strlen($str, 'UTF-8'); |
| 1537 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1538 | } |
| 1539 | |
Andrey Andreev | 925dd90 | 2012-10-19 11:06:31 +0300 | [diff] [blame] | 1540 | // We might already have this set for UTF-8 |
| 1541 | isset($chars) OR $chars = strlen($str); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1542 | |
Andrey Andreev | 925dd90 | 2012-10-19 11:06:31 +0300 | [diff] [blame] | 1543 | $output = '=?'.$this->charset.'?Q?'; |
| 1544 | for ($i = 0, $length = strlen($output), $iconv = extension_loaded('iconv'); $i < $chars; $i++) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1545 | { |
Andrey Andreev | 925dd90 | 2012-10-19 11:06:31 +0300 | [diff] [blame] | 1546 | $chr = ($this->charset === 'UTF-8' && $iconv === TRUE) |
| 1547 | ? '='.implode('=', str_split(strtoupper(bin2hex(iconv_substr($str, $i, 1, $this->charset))), 2)) |
| 1548 | : '='.strtoupper(bin2hex($str[$i])); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1549 | |
Andrey Andreev | 925dd90 | 2012-10-19 11:06:31 +0300 | [diff] [blame] | 1550 | // RFC 2045 sets a limit of 76 characters per line. |
| 1551 | // We'll append ?= to the end of each line though. |
| 1552 | if ($length + ($l = strlen($chr)) > 74) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1553 | { |
Andrey Andreev | 925dd90 | 2012-10-19 11:06:31 +0300 | [diff] [blame] | 1554 | $output .= '?='.$this->crlf // EOL |
| 1555 | .' =?'.$this->charset.'?Q?'.$chr; // New line |
| 1556 | $length = 6 + strlen($this->charset) + $l; // Reset the length for the new line |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1557 | } |
Andrey Andreev | 925dd90 | 2012-10-19 11:06:31 +0300 | [diff] [blame] | 1558 | else |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1559 | { |
Andrey Andreev | 925dd90 | 2012-10-19 11:06:31 +0300 | [diff] [blame] | 1560 | $output .= $chr; |
| 1561 | $length += $l; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1562 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1563 | } |
| 1564 | |
Andrey Andreev | 925dd90 | 2012-10-19 11:06:31 +0300 | [diff] [blame] | 1565 | // End the header |
| 1566 | return $output.'?='; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1567 | } |
| 1568 | |
| 1569 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1570 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1571 | /** |
| 1572 | * Send Email |
| 1573 | * |
Andrey Andreev | 5fd3ae8 | 2012-10-24 14:55:35 +0300 | [diff] [blame] | 1574 | * @param bool $auto_clear = TRUE |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1575 | * @return bool |
| 1576 | */ |
Alex Bilbie | d7bc8d0 | 2012-07-30 09:46:20 +0100 | [diff] [blame] | 1577 | public function send($auto_clear = TRUE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1578 | { |
Alex Bilbie | d261b1e | 2012-06-02 11:12:16 +0100 | [diff] [blame] | 1579 | if ($this->_replyto_flag === FALSE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1580 | { |
| 1581 | $this->reply_to($this->_headers['From']); |
| 1582 | } |
| 1583 | |
Andrey Andreev | 76f15c9 | 2012-03-01 13:05:07 +0200 | [diff] [blame] | 1584 | if ( ! isset($this->_recipients) && ! isset($this->_headers['To']) |
| 1585 | && ! isset($this->_bcc_array) && ! isset($this->_headers['Bcc']) |
| 1586 | && ! isset($this->_headers['Cc'])) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1587 | { |
patwork | b070798 | 2011-04-08 15:10:05 +0200 | [diff] [blame] | 1588 | $this->_set_error_message('lang:email_no_recipients'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1589 | return FALSE; |
| 1590 | } |
| 1591 | |
| 1592 | $this->_build_headers(); |
| 1593 | |
Andrey Andreev | 76f15c9 | 2012-03-01 13:05:07 +0200 | [diff] [blame] | 1594 | if ($this->bcc_batch_mode && count($this->_bcc_array) > $this->bcc_batch_size) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1595 | { |
Alex Bilbie | b901e73 | 2012-07-30 09:44:57 +0100 | [diff] [blame] | 1596 | $result = $this->batch_bcc_send(); |
Alex Bilbie | d7bc8d0 | 2012-07-30 09:46:20 +0100 | [diff] [blame] | 1597 | |
Alex Bilbie | a87aab3 | 2012-07-30 09:50:37 +0100 | [diff] [blame] | 1598 | if ($result && $auto_clear) |
Alex Bilbie | d7bc8d0 | 2012-07-30 09:46:20 +0100 | [diff] [blame] | 1599 | { |
| 1600 | $this->clear(); |
| 1601 | } |
| 1602 | |
Alex Bilbie | b901e73 | 2012-07-30 09:44:57 +0100 | [diff] [blame] | 1603 | return $result; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1604 | } |
| 1605 | |
| 1606 | $this->_build_message(); |
Alex Bilbie | b901e73 | 2012-07-30 09:44:57 +0100 | [diff] [blame] | 1607 | $result = $this->_spool_email(); |
Andrey Andreev | bdb9999 | 2012-07-30 17:38:05 +0300 | [diff] [blame] | 1608 | |
Alex Bilbie | a87aab3 | 2012-07-30 09:50:37 +0100 | [diff] [blame] | 1609 | if ($result && $auto_clear) |
Alex Bilbie | d7bc8d0 | 2012-07-30 09:46:20 +0100 | [diff] [blame] | 1610 | { |
| 1611 | $this->clear(); |
| 1612 | } |
Alex Bilbie | a87aab3 | 2012-07-30 09:50:37 +0100 | [diff] [blame] | 1613 | |
Alex Bilbie | b901e73 | 2012-07-30 09:44:57 +0100 | [diff] [blame] | 1614 | return $result; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1615 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1616 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1617 | // -------------------------------------------------------------------- |
| 1618 | |
| 1619 | /** |
Andrey Andreev | 081c946 | 2012-03-01 12:58:11 +0200 | [diff] [blame] | 1620 | * Batch Bcc Send. Sends groups of BCCs in batches |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1621 | * |
Andrey Andreev | 081c946 | 2012-03-01 12:58:11 +0200 | [diff] [blame] | 1622 | * @return void |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1623 | */ |
Phil Sturgeon | a0f980e | 2011-01-13 10:59:12 +0000 | [diff] [blame] | 1624 | public function batch_bcc_send() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1625 | { |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 1626 | $float = $this->bcc_batch_size - 1; |
| 1627 | $set = ''; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1628 | $chunk = array(); |
| 1629 | |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1630 | for ($i = 0, $c = count($this->_bcc_array); $i < $c; $i++) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1631 | { |
| 1632 | if (isset($this->_bcc_array[$i])) |
| 1633 | { |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 1634 | $set .= ', '.$this->_bcc_array[$i]; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1635 | } |
| 1636 | |
Alex Bilbie | d261b1e | 2012-06-02 11:12:16 +0100 | [diff] [blame] | 1637 | if ($i === $float) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1638 | { |
| 1639 | $chunk[] = substr($set, 1); |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1640 | $float += $this->bcc_batch_size; |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 1641 | $set = ''; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1642 | } |
| 1643 | |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1644 | if ($i === $c-1) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1645 | { |
| 1646 | $chunk[] = substr($set, 1); |
| 1647 | } |
| 1648 | } |
| 1649 | |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1650 | for ($i = 0, $c = count($chunk); $i < $c; $i++) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1651 | { |
| 1652 | unset($this->_headers['Bcc']); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1653 | |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1654 | $bcc = $this->clean_email($this->_str_to_array($chunk[$i])); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1655 | |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1656 | if ($this->protocol !== 'smtp') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1657 | { |
Mickey Wu | bfc1cad | 2012-05-31 22:28:40 -0700 | [diff] [blame] | 1658 | $this->set_header('Bcc', implode(', ', $bcc)); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1659 | } |
| 1660 | else |
| 1661 | { |
| 1662 | $this->_bcc_array = $bcc; |
| 1663 | } |
| 1664 | |
| 1665 | $this->_build_message(); |
| 1666 | $this->_spool_email(); |
| 1667 | } |
| 1668 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1669 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1670 | // -------------------------------------------------------------------- |
| 1671 | |
| 1672 | /** |
| 1673 | * Unwrap special elements |
| 1674 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1675 | * @return void |
| 1676 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 1677 | protected function _unwrap_specials() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1678 | { |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1679 | $this->_finalbody = preg_replace_callback('/\{unwrap\}(.*?)\{\/unwrap\}/si', array($this, '_remove_nl_callback'), $this->_finalbody); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1680 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1681 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1682 | // -------------------------------------------------------------------- |
| 1683 | |
| 1684 | /** |
| 1685 | * Strip line-breaks via callback |
| 1686 | * |
Andrey Andreev | 5fd3ae8 | 2012-10-24 14:55:35 +0300 | [diff] [blame] | 1687 | * @param string $matches |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1688 | * @return string |
| 1689 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 1690 | protected function _remove_nl_callback($matches) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1691 | { |
| 1692 | if (strpos($matches[1], "\r") !== FALSE OR strpos($matches[1], "\n") !== FALSE) |
| 1693 | { |
| 1694 | $matches[1] = str_replace(array("\r\n", "\r", "\n"), '', $matches[1]); |
| 1695 | } |
| 1696 | |
| 1697 | return $matches[1]; |
| 1698 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1699 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1700 | // -------------------------------------------------------------------- |
| 1701 | |
| 1702 | /** |
| 1703 | * Spool mail to the mail server |
| 1704 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1705 | * @return bool |
| 1706 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 1707 | protected function _spool_email() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1708 | { |
| 1709 | $this->_unwrap_specials(); |
| 1710 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1711 | $method = '_send_with_'.$this->_get_protocol(); |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1712 | if ( ! $this->$method()) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1713 | { |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1714 | $this->_set_error_message('lang:email_send_failure_'.($this->_get_protocol() === 'mail' ? 'phpmail' : $this->_get_protocol())); |
Diogo Osório | 7fcc7bd | 2012-03-02 16:54:52 +0000 | [diff] [blame] | 1715 | return FALSE; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1716 | } |
| 1717 | |
patwork | b070798 | 2011-04-08 15:10:05 +0200 | [diff] [blame] | 1718 | $this->_set_error_message('lang:email_sent', $this->_get_protocol()); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1719 | return TRUE; |
| 1720 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1721 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1722 | // -------------------------------------------------------------------- |
| 1723 | |
| 1724 | /** |
| 1725 | * Send using mail() |
| 1726 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1727 | * @return bool |
| 1728 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 1729 | protected function _send_with_mail() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1730 | { |
Andrey Andreev | 8a7078b | 2012-10-17 10:52:49 +0300 | [diff] [blame] | 1731 | if (is_array($this->_recipients)) |
| 1732 | { |
| 1733 | $this->_recipients = implode(', ', $this->_recipients); |
| 1734 | } |
| 1735 | |
Alex Bilbie | d261b1e | 2012-06-02 11:12:16 +0100 | [diff] [blame] | 1736 | if ($this->_safe_mode === TRUE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1737 | { |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1738 | return mail($this->_recipients, $this->_subject, $this->_finalbody, $this->_header_str); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1739 | } |
| 1740 | else |
| 1741 | { |
| 1742 | // most documentation of sendmail using the "-f" flag lacks a space after it, however |
| 1743 | // we've encountered servers that seem to require it to be in place. |
Melounek | 58dfc08 | 2012-06-29 08:43:47 +0200 | [diff] [blame] | 1744 | return mail($this->_recipients, $this->_subject, $this->_finalbody, $this->_header_str, '-f '.$this->clean_email($this->_headers['Return-Path'])); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1745 | } |
| 1746 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1747 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1748 | // -------------------------------------------------------------------- |
| 1749 | |
| 1750 | /** |
| 1751 | * Send using Sendmail |
| 1752 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1753 | * @return bool |
| 1754 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 1755 | protected function _send_with_sendmail() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1756 | { |
Andrey Andreev | e9d2dc8 | 2012-11-07 14:23:29 +0200 | [diff] [blame] | 1757 | // is popen() enabled? |
| 1758 | if ( ! function_usable('popen') |
| 1759 | OR FALSE === ($fp = @popen( |
| 1760 | $this->mailpath.' -oi -f '.$this->clean_email($this->_headers['From']) |
| 1761 | .' -t -r '.$this->clean_email($this->_headers['Return-Path']) |
| 1762 | , 'w')) |
| 1763 | ) // server probably has popen disabled, so nothing we can do to get a verbose error. |
Derek Jones | 4cefaa4 | 2009-04-29 19:13:56 +0000 | [diff] [blame] | 1764 | { |
Derek Jones | 4cefaa4 | 2009-04-29 19:13:56 +0000 | [diff] [blame] | 1765 | return FALSE; |
| 1766 | } |
Derek Jones | 71141ce | 2010-03-02 16:41:20 -0600 | [diff] [blame] | 1767 | |
Derek Jones | c630bcf | 2008-11-17 21:09:45 +0000 | [diff] [blame] | 1768 | fputs($fp, $this->_header_str); |
| 1769 | fputs($fp, $this->_finalbody); |
| 1770 | |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1771 | $status = pclose($fp); |
Eric Barnes | 6113f54 | 2010-12-29 13:36:12 -0500 | [diff] [blame] | 1772 | |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 1773 | if ($status !== 0) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1774 | { |
patwork | b070798 | 2011-04-08 15:10:05 +0200 | [diff] [blame] | 1775 | $this->_set_error_message('lang:email_exit_status', $status); |
| 1776 | $this->_set_error_message('lang:email_no_socket'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1777 | return FALSE; |
| 1778 | } |
| 1779 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1780 | return TRUE; |
| 1781 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1782 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1783 | // -------------------------------------------------------------------- |
| 1784 | |
| 1785 | /** |
| 1786 | * Send using SMTP |
| 1787 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1788 | * @return bool |
| 1789 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 1790 | protected function _send_with_smtp() |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1791 | { |
| 1792 | if ($this->smtp_host === '') |
| 1793 | { |
| 1794 | $this->_set_error_message('lang:email_no_hostname'); |
| 1795 | return FALSE; |
| 1796 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1797 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1798 | if ( ! $this->_smtp_connect() OR ! $this->_smtp_authenticate()) |
| 1799 | { |
| 1800 | return FALSE; |
| 1801 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1802 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1803 | $this->_send_command('from', $this->clean_email($this->_headers['From'])); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1804 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1805 | foreach ($this->_recipients as $val) |
| 1806 | { |
| 1807 | $this->_send_command('to', $val); |
| 1808 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1809 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1810 | if (count($this->_cc_array) > 0) |
| 1811 | { |
| 1812 | foreach ($this->_cc_array as $val) |
| 1813 | { |
| 1814 | if ($val !== '') |
| 1815 | { |
| 1816 | $this->_send_command('to', $val); |
| 1817 | } |
| 1818 | } |
| 1819 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1820 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1821 | if (count($this->_bcc_array) > 0) |
| 1822 | { |
| 1823 | foreach ($this->_bcc_array as $val) |
| 1824 | { |
| 1825 | if ($val !== '') |
| 1826 | { |
| 1827 | $this->_send_command('to', $val); |
| 1828 | } |
| 1829 | } |
| 1830 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1831 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1832 | $this->_send_command('data'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1833 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1834 | // perform dot transformation on any lines that begin with a dot |
| 1835 | $this->_send_data($this->_header_str.preg_replace('/^\./m', '..$1', $this->_finalbody)); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1836 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1837 | $this->_send_data('.'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1838 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1839 | $reply = $this->_get_smtp_data(); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1840 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1841 | $this->_set_error_message($reply); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1842 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1843 | if (strpos($reply, '250') !== 0) |
| 1844 | { |
| 1845 | $this->_set_error_message('lang:email_smtp_error', $reply); |
| 1846 | return FALSE; |
| 1847 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1848 | |
nisheeth-barthwal | 758f40c | 2013-02-18 17:18:51 +0530 | [diff] [blame] | 1849 | if ($this->smtp_keepalive) |
| 1850 | { |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1851 | $this->_send_command('reset'); |
nisheeth-barthwal | 758f40c | 2013-02-18 17:18:51 +0530 | [diff] [blame] | 1852 | } |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1853 | else |
nisheeth-barthwal | 758f40c | 2013-02-18 17:18:51 +0530 | [diff] [blame] | 1854 | { |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1855 | $this->_send_command('quit'); |
nisheeth-barthwal | 758f40c | 2013-02-18 17:18:51 +0530 | [diff] [blame] | 1856 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1857 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1858 | return TRUE; |
| 1859 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1860 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1861 | // -------------------------------------------------------------------- |
Radu Potop | 4c589ae | 2011-09-29 10:19:55 +0300 | [diff] [blame] | 1862 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1863 | /** |
| 1864 | * SMTP Connect |
| 1865 | * |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1866 | * @return string |
| 1867 | */ |
nisheeth-barthwal | a44e691 | 2013-02-18 18:07:03 +0530 | [diff] [blame] | 1868 | protected function _smtp_connect() |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1869 | { |
nisheeth-barthwal | a44e691 | 2013-02-18 18:07:03 +0530 | [diff] [blame] | 1870 | if (is_resource($this->_smtp_connect)) |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1871 | { |
nisheeth-barthwal | a44e691 | 2013-02-18 18:07:03 +0530 | [diff] [blame] | 1872 | return TRUE; |
| 1873 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1874 | |
nisheeth-barthwal | a44e691 | 2013-02-18 18:07:03 +0530 | [diff] [blame] | 1875 | $ssl = ($this->smtp_crypto === 'ssl') ? 'ssl://' : NULL; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1876 | |
nisheeth-barthwal | a44e691 | 2013-02-18 18:07:03 +0530 | [diff] [blame] | 1877 | $this->_smtp_connect = fsockopen($ssl.$this->smtp_host, |
| 1878 | $this->smtp_port, |
| 1879 | $errno, |
| 1880 | $errstr, |
| 1881 | $this->smtp_timeout); |
| 1882 | |
| 1883 | if ( ! is_resource($this->_smtp_connect)) |
| 1884 | { |
| 1885 | $this->_set_error_message('lang:email_smtp_error', $errno.' '.$errstr); |
| 1886 | return FALSE; |
| 1887 | } |
| 1888 | |
| 1889 | stream_set_timeout($this->_smtp_connect, $this->smtp_timeout); |
| 1890 | $this->_set_error_message($this->_get_smtp_data()); |
| 1891 | |
| 1892 | if ($this->smtp_crypto === 'tls') |
| 1893 | { |
| 1894 | $this->_send_command('hello'); |
| 1895 | $this->_send_command('starttls'); |
| 1896 | |
| 1897 | $crypto = stream_socket_enable_crypto($this->_smtp_connect, TRUE, STREAM_CRYPTO_METHOD_TLS_CLIENT); |
| 1898 | |
| 1899 | if ($crypto !== TRUE) |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1900 | { |
nisheeth-barthwal | a44e691 | 2013-02-18 18:07:03 +0530 | [diff] [blame] | 1901 | $this->_set_error_message('lang:email_smtp_error', $this->_get_smtp_data()); |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1902 | return FALSE; |
| 1903 | } |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1904 | } |
nisheeth-barthwal | a44e691 | 2013-02-18 18:07:03 +0530 | [diff] [blame] | 1905 | |
| 1906 | return $this->_send_command('hello'); |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1907 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1908 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1909 | // -------------------------------------------------------------------- |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1910 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1911 | /** |
| 1912 | * Send SMTP command |
| 1913 | * |
| 1914 | * @param string |
| 1915 | * @param string |
| 1916 | * @return string |
| 1917 | */ |
| 1918 | protected function _send_command($cmd, $data = '') |
| 1919 | { |
| 1920 | switch ($cmd) |
| 1921 | { |
| 1922 | case 'hello' : |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1923 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1924 | if ($this->_smtp_auth OR $this->_get_encoding() === '8bit') |
| 1925 | { |
| 1926 | $this->_send_data('EHLO '.$this->_get_hostname()); |
| 1927 | } |
| 1928 | else |
| 1929 | { |
| 1930 | $this->_send_data('HELO '.$this->_get_hostname()); |
| 1931 | } |
Radu Potop | bbf04b0 | 2011-09-28 13:57:51 +0300 | [diff] [blame] | 1932 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1933 | $resp = 250; |
| 1934 | break; |
| 1935 | case 'starttls' : |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1936 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1937 | $this->_send_data('STARTTLS'); |
| 1938 | $resp = 220; |
| 1939 | break; |
| 1940 | case 'from' : |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1941 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1942 | $this->_send_data('MAIL FROM:<'.$data.'>'); |
| 1943 | $resp = 250; |
| 1944 | break; |
| 1945 | case 'to' : |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 1946 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1947 | if ($this->dsn) |
| 1948 | { |
| 1949 | $this->_send_data('RCPT TO:<'.$data.'> NOTIFY=SUCCESS,DELAY,FAILURE ORCPT=rfc822;'.$data); |
| 1950 | } |
| 1951 | else |
| 1952 | { |
| 1953 | $this->_send_data('RCPT TO:<'.$data.'>'); |
| 1954 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1955 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1956 | $resp = 250; |
| 1957 | break; |
| 1958 | case 'data' : |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1959 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1960 | $this->_send_data('DATA'); |
| 1961 | $resp = 354; |
| 1962 | break; |
| 1963 | case 'reset': |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1964 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1965 | $this->_send_data('RSET'); |
| 1966 | $resp = 250; |
| 1967 | break; |
| 1968 | case 'quit' : |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1969 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1970 | $this->_send_data('QUIT'); |
| 1971 | $resp = 221; |
| 1972 | break; |
| 1973 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1974 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1975 | $reply = $this->_get_smtp_data(); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1976 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1977 | $this->_debug_msg[] = '<pre>'.$cmd.': '.$reply.'</pre>'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1978 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1979 | if ((int) substr($reply, 0, 3) !== $resp) |
| 1980 | { |
| 1981 | $this->_set_error_message('lang:email_smtp_error', $reply); |
| 1982 | return FALSE; |
| 1983 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1984 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1985 | if ($cmd === 'quit') |
| 1986 | { |
| 1987 | fclose($this->_smtp_connect); |
| 1988 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1989 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1990 | return TRUE; |
| 1991 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1992 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1993 | // -------------------------------------------------------------------- |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1994 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 1995 | /** |
| 1996 | * SMTP Authenticate |
| 1997 | * |
| 1998 | * @return bool |
| 1999 | */ |
| 2000 | protected function _smtp_authenticate() |
| 2001 | { |
| 2002 | if ( ! $this->_smtp_auth) |
| 2003 | { |
| 2004 | return TRUE; |
| 2005 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2006 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 2007 | if ($this->smtp_user === '' && $this->smtp_pass === '') |
| 2008 | { |
| 2009 | $this->_set_error_message('lang:email_no_smtp_unpw'); |
| 2010 | return FALSE; |
| 2011 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2012 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 2013 | $this->_send_data('AUTH LOGIN'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2014 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 2015 | $reply = $this->_get_smtp_data(); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2016 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 2017 | if (strpos($reply, '503') !== 0) // Already authenticated |
nisheeth-barthwal | 758f40c | 2013-02-18 17:18:51 +0530 | [diff] [blame] | 2018 | { |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 2019 | return TRUE; |
nisheeth-barthwal | 758f40c | 2013-02-18 17:18:51 +0530 | [diff] [blame] | 2020 | } |
vlakoff | f399425 | 2013-02-19 01:45:23 +0100 | [diff] [blame^] | 2021 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 2022 | if (strpos($reply, '334') !== 0) |
| 2023 | { |
| 2024 | $this->_set_error_message('lang:email_failed_smtp_login', $reply); |
| 2025 | return FALSE; |
| 2026 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2027 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 2028 | $this->_send_data(base64_encode($this->smtp_user)); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2029 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 2030 | $reply = $this->_get_smtp_data(); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2031 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 2032 | if (strpos($reply, '334') !== 0) |
| 2033 | { |
| 2034 | $this->_set_error_message('lang:email_smtp_auth_un', $reply); |
| 2035 | return FALSE; |
| 2036 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2037 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 2038 | $this->_send_data(base64_encode($this->smtp_pass)); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2039 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 2040 | $reply = $this->_get_smtp_data(); |
nisheeth-barthwal | cf22557 | 2013-02-18 01:08:04 +0530 | [diff] [blame] | 2041 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 2042 | if (strpos($reply, '235') !== 0) |
| 2043 | { |
| 2044 | $this->_set_error_message('lang:email_smtp_auth_pw', $reply); |
| 2045 | return FALSE; |
| 2046 | } |
nisheeth-barthwal | cf22557 | 2013-02-18 01:08:04 +0530 | [diff] [blame] | 2047 | |
nisheeth-barthwal | 59209de | 2013-02-18 17:02:13 +0530 | [diff] [blame] | 2048 | return TRUE; |
| 2049 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 2050 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2051 | // -------------------------------------------------------------------- |
| 2052 | |
| 2053 | /** |
| 2054 | * Send SMTP data |
| 2055 | * |
Andrey Andreev | 5fd3ae8 | 2012-10-24 14:55:35 +0300 | [diff] [blame] | 2056 | * @param string $data |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2057 | * @return bool |
| 2058 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 2059 | protected function _send_data($data) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2060 | { |
Andrey Andreev | 5fd3ae8 | 2012-10-24 14:55:35 +0300 | [diff] [blame] | 2061 | if ( ! fwrite($this->_smtp_connect, $data.$this->newline)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2062 | { |
patwork | b070798 | 2011-04-08 15:10:05 +0200 | [diff] [blame] | 2063 | $this->_set_error_message('lang:email_smtp_data_failure', $data); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2064 | return FALSE; |
| 2065 | } |
Andrey Andreev | 1bd3d88 | 2011-12-22 15:38:20 +0200 | [diff] [blame] | 2066 | |
| 2067 | return TRUE; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2068 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 2069 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2070 | // -------------------------------------------------------------------- |
| 2071 | |
| 2072 | /** |
| 2073 | * Get SMTP data |
| 2074 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2075 | * @return string |
| 2076 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 2077 | protected function _get_smtp_data() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2078 | { |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 2079 | $data = ''; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2080 | |
| 2081 | while ($str = fgets($this->_smtp_connect, 512)) |
| 2082 | { |
| 2083 | $data .= $str; |
| 2084 | |
Alex Bilbie | d261b1e | 2012-06-02 11:12:16 +0100 | [diff] [blame] | 2085 | if ($str[3] === ' ') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2086 | { |
| 2087 | break; |
| 2088 | } |
| 2089 | } |
| 2090 | |
| 2091 | return $data; |
| 2092 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 2093 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2094 | // -------------------------------------------------------------------- |
| 2095 | |
| 2096 | /** |
| 2097 | * Get Hostname |
| 2098 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2099 | * @return string |
| 2100 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 2101 | protected function _get_hostname() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2102 | { |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 2103 | return isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : 'localhost.localdomain'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2104 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 2105 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2106 | // -------------------------------------------------------------------- |
| 2107 | |
| 2108 | /** |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2109 | * Get Debug Message |
| 2110 | * |
Andrey Andreev | 61797f6 | 2012-11-26 16:15:12 +0200 | [diff] [blame] | 2111 | * @param array $include List of raw data chunks to include in the output |
| 2112 | * Valid options are: 'headers', 'subject', 'body' |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2113 | * @return string |
| 2114 | */ |
Andrey Andreev | 61797f6 | 2012-11-26 16:15:12 +0200 | [diff] [blame] | 2115 | public function print_debugger($include = array('headers', 'subject', 'body')) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2116 | { |
| 2117 | $msg = ''; |
| 2118 | |
| 2119 | if (count($this->_debug_msg) > 0) |
| 2120 | { |
| 2121 | foreach ($this->_debug_msg as $val) |
| 2122 | { |
| 2123 | $msg .= $val; |
| 2124 | } |
| 2125 | } |
| 2126 | |
Andrey Andreev | 61797f6 | 2012-11-26 16:15:12 +0200 | [diff] [blame] | 2127 | // Determine which parts of our raw data needs to be printed |
| 2128 | $raw_data = ''; |
| 2129 | is_array($include) OR $include = array($include); |
| 2130 | |
| 2131 | if (in_array('headers', $include, TRUE)) |
| 2132 | { |
| 2133 | $raw_data = $this->_header_str."\n"; |
| 2134 | } |
| 2135 | |
| 2136 | if (in_array('subject', $include, TRUE)) |
| 2137 | { |
| 2138 | $raw_data .= htmlspecialchars($this->_subject)."\n"; |
| 2139 | } |
| 2140 | |
| 2141 | if (in_array('body', $include, TRUE)) |
| 2142 | { |
| 2143 | $raw_data .= htmlspecialchars($this->_finalbody); |
| 2144 | } |
| 2145 | |
| 2146 | return $msg.($raw_data === '' ? '' : '<pre>'.$raw_data.'</pre>'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2147 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 2148 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2149 | // -------------------------------------------------------------------- |
| 2150 | |
| 2151 | /** |
| 2152 | * Set Message |
| 2153 | * |
Andrey Andreev | 5fd3ae8 | 2012-10-24 14:55:35 +0300 | [diff] [blame] | 2154 | * @param string $msg |
| 2155 | * @param string $val = '' |
Andrey Andreev | 081c946 | 2012-03-01 12:58:11 +0200 | [diff] [blame] | 2156 | * @return void |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2157 | */ |
Phil Sturgeon | 6d2f13a | 2011-07-20 10:04:52 -0600 | [diff] [blame] | 2158 | protected function _set_error_message($msg, $val = '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2159 | { |
| 2160 | $CI =& get_instance(); |
| 2161 | $CI->lang->load('email'); |
| 2162 | |
Andrey Andreev | 7a7ad78 | 2012-11-12 17:21:01 +0200 | [diff] [blame] | 2163 | if (sscanf($msg, 'lang:%s', $line) !== 1 OR FALSE === ($line = $CI->lang->line($line))) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2164 | { |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 2165 | $this->_debug_msg[] = str_replace('%s', $val, $msg).'<br />'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2166 | } |
| 2167 | else |
| 2168 | { |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 2169 | $this->_debug_msg[] = str_replace('%s', $val, $line).'<br />'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2170 | } |
| 2171 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 2172 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2173 | // -------------------------------------------------------------------- |
| 2174 | |
| 2175 | /** |
| 2176 | * Mime Types |
| 2177 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2178 | * @param string |
| 2179 | * @return string |
| 2180 | */ |
Andrey Andreev | 59c5b53 | 2012-03-01 14:09:51 +0200 | [diff] [blame] | 2181 | protected function _mime_types($ext = '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2182 | { |
Andrey Andreev | 6ef498b | 2012-06-05 22:01:58 +0300 | [diff] [blame] | 2183 | static $mimes; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2184 | |
Andrey Andreev | 6ef498b | 2012-06-05 22:01:58 +0300 | [diff] [blame] | 2185 | $ext = strtolower($ext); |
| 2186 | |
| 2187 | if ( ! is_array($mimes)) |
| 2188 | { |
| 2189 | $mimes =& get_mimes(); |
| 2190 | } |
| 2191 | |
| 2192 | if (isset($mimes[$ext])) |
| 2193 | { |
| 2194 | return is_array($mimes[$ext]) |
| 2195 | ? current($mimes[$ext]) |
| 2196 | : $mimes[$ext]; |
| 2197 | } |
| 2198 | |
| 2199 | return 'application/x-unknown-content-type'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2200 | } |
| 2201 | |
| 2202 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2203 | |
| 2204 | /* End of file Email.php */ |
Andrey Andreev | 5098859 | 2012-10-08 20:46:04 +0300 | [diff] [blame] | 2205 | /* Location: ./system/libraries/Email.php */ |