This repository has been archived by the owner on Aug 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
mailer.class.php
536 lines (457 loc) · 12.8 KB
/
mailer.class.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
<?php
/*
* Mailer Class
* By Timothy 'TiM' Oliver
*
* A simple class to allow quick and
* easy customisation, and sending
* of mail from PHP.
*
* ============================================================================
*
* Copyright (C) 2011 by Tim Oliver
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
*/
class Mailer
{
//a string holding all of the emails to send to
private $to = '';
//a string stating who the mail is from
private $from = '';
//as needed, an alt reply address than 'from'
private $reply_to = '';
//an string holding all of the emails to CC this email to
private $cc = '';
//an string holding all of the emails to BCC this email to
private $bcc = '';
//the subject of the email
private $subject = '';
//the email message to mail
private $message = '';
//an alternate message to send if the receiver can't handle HTML
private $alt_message = '';
//an array to hold all of the config values
//(Too large for individual variables)
private $config = NULL;
//An array to store any errors that occur
private $debugger = '';
function __construct( $config = NULL )
{
//init all of the mail variables
$this->clear();
//init the config with default values
$this->config = array(
'useragent' => 'PHP Mailer', //Name of UserAgent
'wordwrap' => TRUE, //Wrap long lines of text
'wraplength' => 70, //Wrap line length in chars
'mailtype' => 'html', //Type of email (text, HTML)
'charset' => 'utf-8', //Character set to use (utf-8, iso-8859-1, etc)
'validate' => TRUE, //Validate each email address supplied
'newline' => "\n", //Newline symbols used in the request header
);
//if a config argument was supplied, overlay it into the default one
if( $config !== NULL && is_array($config) )
$this->config = array_merge( $this->config, $config );
}
/*
* To
*
* Sets the single or list of emails to send the email to.
*
* Arguments can either be a single string, multiple comma-delimited strings
* or an array of email addresses.
*
* NB: Each email must conform to the RFC 2822 standards format.
*/
function to( $address='' )
{
if( func_num_args() == 0 )
return FALSE;
$this->to = $this->parse_address_args( func_get_args() );
return TRUE;
}
/*
* CC
*
* Sets the single or list of emails to CC the email to.
*
* Arguments can either be a single string, multiple comma-delimited strings
* or an array of email addresses.
*
* NB: Each email must conform to the RFC 2822 standards format.
*/
function cc( $address = '' )
{
if( func_num_args() == 0 )
return FALSE;
$this->cc = $this->parse_address_args( func_get_args() );
return TRUE;
}
/*
* BCC
*
* Sets the single or list of emails to BCC the email to.
*
* Arguments can either be a single string, multiple comma-delimited strings
* or an array of email addresses.
*
* NB: Each email must conform to the RFC 2822 standards format.
*/
function bcc( $address = '' )
{
if( func_num_args() == 0 )
return FALSE;
$this->bcc = $this->parse_address_args( func_get_args() );
return TRUE;
}
/*
* From
*
* Set the source of this message
*/
function from( $address='', $name = '' )
{
if( !$address )
return FALSE;
//if required, test the email for validity
if( $this->config['validate'] )
{
if( !$this->email_is_valid( $address, true ) )
{
$this->debug('Invalid source email was supplied: '.$address );
return FALSE;
}
}
if( $name )
$this->from = $name.' <'.$address.'>';
else
$this->from = $address;
return TRUE;
}
/*
* Reply to
*
* Set a reply-to address for this message
*/
function reply_to( $address = '', $name = '' )
{
if( !$address )
return FALSE;
//if required, test the email for validity
if( $this->config['validate'] )
{
if( !$this->email_is_valid( $address, true ) )
$this->debug('Invalid reply-to email was supplied: '.$address );
}
if( $name )
$this->reply_to = $name.' <'.$address.'>';
else
$this->reply_to = $address;
return TRUE;
}
/*
* Subject
*
* Set the subject of the email
*/
function subject( $subject = '' )
{
if( !$subject )
return FALSE;
$this->subject = $subject;
}
/*
* Message
*
* Set the message of the email
*/
function message( $message = '' )
{
if( !$message )
return;
//if the message needs to be wrapped, do it now.
if( $this->config['wordwrap'] )
$this->message = $this->wrap_message( $message, $this->config['wraplength'], ($this->config['mailtype'] == 'html') );
else
$this->message = $message;
}
/*
* Alt Message
*
* A textual version of an HTML email that can be
* passed along if the event the client can't read HTML.
*/
function alt_message( $alt_message = '' )
{
//pointless if the primary message is already text
if( $this->config['mailtype'] == 'text' )
return;
//if the message needs to be wrapped, do it now.
if( $this->config['wordwrap'] )
$this->alt_message = $this->wrap_message( $alt_message, $this->config['wraplength'], false );
else
$this->alt_message = $alt_message;
}
/*
* Parse Address Arguments
*
* Parse a list of addresses, and validate them if need be
*
* Arguments can either be a single string, multiple comma-delimited strings
* or an array of email addresses.
*
* NB: Each email must conform to the RFC 2822 standards format.
*/
private function parse_address_args( $args = NULL )
{
if( $args == NULL )
return NULL;
//new list of addresses
$address_list = array();
//if the first argument is an array,
//extract all of the addresses from it,
//else assume it's a delimited list of strings
if( is_array( $args[0] ) )
{
foreach( $args[0] as $address )
{
if( is_string($address ) ) //skip non-string entries
array_push( $address_list, $address );
}
}
else
{
foreach( $args as $address )
{
if( is_string($address ) )//skip non-string entries
array_push( $address_list, $address );
}
}
//if validation is enabled, check for proper formatting
//and email validity
if( $this->config['validate'] )
{
//check for proper
foreach( $address_list as $address )
{
if( !$this->email_is_valid( $address ) )
{
$this->debug( 'A supplied email address wasn\'t formatted properly: '.$address );
return NULL;
}
}
}
//compile the list into the correct string format
$output = '';
for( $i=0; $i<count($address_list); $i++ )
{
$output .= $address_list[$i];
if( $i < count($address_list)-1 )
$output .= ', ';
}
return $output;
}
/*
* Email is Valid
*
* Checks the email ensures it conforms to one of the following formats:
* Foo Bar <[email protected]>
*
* Arguments
* $address - str - The target email address
* $ignore_format - bool - If only checking the validity of the email address is required
*/
private function email_is_valid( $address = '', $ignore_format = false )
{
if( !strlen( $address ) )
return FALSE;
//verify there is a valid email address in the string
if( preg_match( '%[a-z0-9._-]+@[a-z0-9_-]+\.[a-z.]+%is', $address ) <= 0)
return FALSE;
//if ANY invalid email characters are found, assume it's the name encapsulated variant of the standard
if( !$ignore_format )
{
if( preg_match( '%[^a-z0-9@._-]%is', $address ) > 0 )
{
//ensure it matches the format of
if( preg_match( '%.*\s<[a-z0-9@.]+>%is', $address ) <= 0 )
return FALSE;
}
}
return TRUE;
}
/*
* Wrap Message
*
* Some emails may need to be line wrapped
* in order to conform to email standards.
* This function automates that process
*
* NB: Chunks encapsulated by {nowrap}{/nowrap} will be ignored
*
* Arguments:
* $message - the message to parse
* $html - whether the message is html formatted or not
*/
private function wrap_message( $message = '', $wraplength = 75, $html = false )
{
$new_message = '';
if( $html )
$newline = "<br/>\n";
else
$newline = "\n";
//split the array up to isolate the nowrap bits
$chunks = preg_split( '%(\{nowrap\}[^{]+?\{/nowrap\})%is', $message, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE );
foreach( $chunks as $chunk )
{
//a nowrap chunk was found
if( strpos( $chunk, '{nowrap}' ) !== FALSE )
{
$chunk = str_replace( array( '{nowrap}', '{/nowrap}'), '', $chunk );
$new_message .= $chunk.$newline;
continue;
}
//append the wordwrapped chunk to the final string
$new_message .= wordwrap($chunk, $wraplength, $newline );
}
return $new_message;
}
/*
* Generate Alt Message
*
* Convert an HTML block to normal text by extracting
* all of the HTML tags and tweaking the line breaks
*/
function generate_alt_message( $message = '' )
{
if( !$message )
return NULL;
//fix linebreaks
//replace <br/> with \n
$message = preg_replace( '%<br\s?/>([^\n\s])%im', "\n$1", $message );
//replace <p> and </p>
$message = preg_replace( '%([^\n\s])<p[^>]+?>%im', "$1\n\n", $message );
$message = preg_replace( '%</p[^>\s]+?>([^\n])%im', "\n\n$1", $message );
//strip all HTML tags
$message = preg_replace( '%<[^>]+?>%is', '', $message );
return $message;
}
/*
* Send
*
* Compiles all of the supplied data into an email
* entry and sends it off
*/
function send()
{
if( !$this->to )
return FALSE;
//If no alt_message was supplied, generate one
if( $this->config['mailtype'] == 'html' && !$this->alt_message )
$this->alt_message = $this->generate_alt_message( $this->message );
//if no reply-to was set, use the 'from' field
if( !$this->reply_to )
$this->reply_to = $this->from;
//generate a random boundary
$boundary = '------phpmailer------'.md5(time());
$n = $this->config['newline'];
//setup the header
$headers = '';
//apply useragent
$headers .= 'X-Mailer: '.$this->config['useragent'].$n;
//From field
if( $this->from )
$headers .= 'From: '.$this->from.$n;
if( $this->cc )
$headers .= 'Cc: '.$this->cc.$n;
if( $this->bcc )
$headers .= 'Bcc: '.$this->bcc.$n;
//Reply-To field
if( $this->reply_to )
{
$headers .= 'Reply-To: '.$this->reply_to.$n;
$headers .= 'Return-Path: '.$this->reply_to.$n;
}
$headers .= 'MIME-Version: 1.0'.$n;
$headers .= 'Content-Type: multipart/alternative; boundary = "'.$boundary.'"'.$n;
$message = '';
//set up the messages
if( $this->config['mailtype'] == 'html' )
{
$message .= $n.'--'.$boundary.$n;
$message .= 'Content-type: text/plain; charset='.$this->config['charset'].$n;
$message .= 'Content-Transfer-Encoding: 8bit'.$n.$n;
$message .= $this->alt_message.$n;
$message .= $n.'--'.$boundary.$n;
$message .= 'Content-type: text/html; charset='.$this->config['charset'].$n;
$message .= 'Content-Transfer-Encoding: 8bit'.$n.$n;
$message .= $this->message.$n;
}
else
{
$message .= $n.'--'.$boundary.$n;
$message .= 'Content-type: text/plain; charset='.$this->config['charset'].$n;
$message .= $this->message.$n;
}
$message .= $n.'--'.$boundary.'--'.$n.$n;
$this->debug( 'Headers: <br/>'.$headers );
$this->debug( 'Message: <br/>'.$message );
return mail( $this->to, $this->subject, $message, $headers );
}
/*
* Clear
*
* Clear the class of all of the variable
* data, ready for a totally fresh email
*/
function clear()
{
$this->to = '';
$this->from = '';
$this->reply_to = '';
$this->cc = '';
$this->bcc = '';
$this->subject = '';
$this->message = '';
$this->debugger = '';
}
/*
* Debug
*
* Append an error message to the debug log
*/
private function debug( $msg = '' )
{
$this->debugger .= $msg."<br/>\n";
}
/*
* Print Debugger
*
* Output the debugger to the browser for review
*/
function print_debugger()
{
$output = str_replace( "\n", "<br/>\n", $this->debugger );
echo $output;
}
}
?>