forked from surebert/surebert-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmail.php
438 lines (359 loc) · 11.7 KB
/
Email.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
<?php
/**
* Object to represent an email used by sb_EmailReader and sb_EmailWriter
*
* @author Paul Visco
* @version 2.21 10-15-07 - 06-21-09 added cc and bcc support
* @package sb_Email
*
*/
class sb_Email{
/**
* The index number of the message in the inbox
*
* Used to delete messages
*
* @var integer
*/
public $index;
/**
* The message id as specified by the email server in the email headers
*
* @var string
*/
public $message_id;
/**
* The subject of the email
*
* @var string
*/
public $subject;
/**
* The first "to" address listed
*
* For a more complete list of to addresses look in the $this->header_info->to array
*
* @var string e.g. paul@test.com
*/
public $to;
/**
* An array of "cc" addresses when sending
*
* @var array e.g. Array('paul@test.com');
*/
public $cc = Array();
/**
* An array of "bcc" addresses when sending
*
* @var array e.g. Array('paul@test.com');
*/
public $bcc = Array();
/**
* The first "from" address listed
*
* For a more complete list of to addresses look in the $this->header_info->from array
*
* @var string e.g. paul@test.com
*/
public $from;
/**
* The first "reply_to" address listed
*
* For a more complete list of to addresses look in the $this->header_info->reply_to array
*
* @var string e.g. paul@test.com
*/
public $reply_to;
/**
* The first "sender" address listed
*
* For a more complete list of to addresses look in the $this->header_info->sender array
*
* @var string e.g. paul@test.com
*/
public $sender;
/**
* The date that the email was sent
*
* @var string
*/
public $date;
/**
* The date the email was sent as a unix timestamp
*
* @var integer
*/
public $timestamp;
/**
* The size of the email in bytes
*
* @var integer
*/
public $size;
/**
* Has the message been set to delete $deleted =1;
*
* @var boolean
*/
public $deleted =0;
/**
* The subtype of the email, e.g. MULTIPART, ALTERNATIVE, PLAIN
*
* @var string
*/
public $subtype;
/**
* The entire headers in an array, this holds all custom headers too
*
* @var array
*/
public $headers = Array();
/**
* The body of the email
*
* @var string
*/
public $body;
/**
* The body of the email as HTML
*
* @var string
*/
public $body_HTML;
/**
* The charset of the email text e.g. iso-8859-1 or UTF-8
* @var string
*/
public $charset = 'UTF-8';
/**
* Character encoding 7bit, 8bit
* @var string
*/
public $transfer_encoding = '8bit';
/**
* An array of attachment objects
*
* @var array
*/
public $attachments = Array();
/**
* Constructs an email
*
* <code>
* //create an email to send $to, $subject, $message, $from
* $myMail = new sb_Email('paul.visco@roswellpark.org', 'Testing Email', 'Hello World', 'paul.visco@roswellpark.org');
*
* //you can set the cc array to add addresses which are cced
* //$myMail->cc = Array("paulsidekick@gmail.com");
*
* //you can reference inline attachments in the HTML by their cid:{THEIR NAME} e.g.
* //$myMail->body_HTML = '<h1>Hello there</h1><img src="cid:MyPicture.jpg" />';
*
* //$myMail->body_HTML = '<h1>Hello there</h1>';
*
* //create an optional attachment
* //$myAttachment = new sb_Email_Attachment(ROOT.'/private/config/App.php', 'application/php');
*
* //or zipping the attachment
* //$myAttachment->zip();
*
* //PGP encrypt the attachment
* //$myAttachment->pgp_encrypt('XXXX98D01A6CXXXXXX5700');
*
* //add the attachment to the email object, you could add more attachments as necessary
* $myMail->add_attachment($myAttachment);
*
* var_dump($myMail->send());
*
* //you can also manually add an attachment from a non file e.g. data from database
* //create an optional attachment
* $myAttachment = new sb_Email_Attachment();
*
* //set up the properties for the attachment
* $myAttachment->name = 'MyPicture.jpg';
*
* //this is the content, in this case I am ready the blob data from a saved image file but you could easily replace this with blob data from a database. The mime type will be added based on the extension using sb_Files::extension_to_mime. For bizarre mime-types that are not in sb_Files::extension_to_mime you can override this by setting the mime-type manually $myAttachment->mime_type ='bizarre/weird';
* $myAttachment->contents = $filedata;
*
* </code>
*
* @param String $to The address to send the email to
* @param String $subject The subject of the email
* @param String $message The plaintext message being sent
* @param String $from The address it is being sent from
*/
public function __construct($to='', $subject='', $message='', $from=''){
$this->to = $to;
$this->subject = $subject;
$this->body = $message;
$this->from = $from;
}
/**
* Adds an attachment to the email
* @param $attachment sb_Email
*/
public function add_attachment(sb_Email_Attachment $attachment){
$this->attachments[] = $attachment;
}
/**
* Add an sb_ICalendar_Event request
*
* @param sb_ICalendar_Event $event
*/
public function add_ICalendar_Event(sb_ICalendar_Event $event){
$a = new sb_Email_Attachment();
$a->mime_type = 'text/calendar;';
$a->set_encoding('8bit');
$a->name = 'event.ics';
$a->contents = $event->__toString();
$this->add_attachment($a);
}
/**
* An instance of sb_Email_Writer used to send
* @var sb_Email_Writer
*/
protected static $outbox;
/**
* Fires before sending, if returns false, then sending does not occur
* @return boolean
*/
public function on_before_send(){
return true;
}
/**
* Uses sb_Email_Writer to send the email
*/
public function send($outbox=null){
if($outbox instanceof sb_Email_Writer){
self::$outbox = $outbox;
} else if(!self::$outbox){
self::$outbox = new sb_Email_Writer();
}
if($this->on_before_send($this) !== false){
self::$outbox->add_email_to_outbox($this);
//return if sent
return self::$outbox->send();
}
}
/**
* Ups the importance of the email, in outlook this displays a exclamation point
*/
public function make_important(){
$this->headers[] = $this->add_header('Priority', 'Urgent');
$this->headers[] = $this->add_header('Importance', 'high');
}
/**
* Adds custom email headers by key value
* <code>
* $mail->add_header('Priority', 'low');
* </code>
*/
public function add_header($key, $value){
$this->headers[$key] = $value;
}
/**
* Convert the email to a multipart_message
* @return string the raw email source
*/
public function construct_multipart_message() {
$mixed_boundary = '__mixed_1S2U3R4E5B6E7R8T9';
$alterative_boundary = '__alter_1S2U3R4E5B6E7R8T9';
$this->attachments_in_HTML =0;
if(strstr($this->body_HTML, "cid:")) {
$this->attachments_in_HTML =1;
$related_boundary = '__relate_1S2U3R4E5B6E7R8T9';
}
$this->_header_text = "From: ".$this->from."\r\nReply-To: ".$this->from."\r\nReturn-Path: ".$this->from."\r\n";
foreach($this->cc as $cc) {
$this->_header_text .="Cc:".$cc."\r\n";
}
foreach($this->bcc as $bcc) {
$this->_header_text .="Bcc:".$bcc."\r\n";
}
$this->_header_text .= "MIME-Version: 1.0"."\r\n";
foreach($this->headers as $key=>$val) {
$this->_header_text .= $key.":".$val."\r\n";
}
$this->_header_text .= "Content-Type: multipart/mixed;"."\r\n";
$this->_header_text .= ' boundary="'.$mixed_boundary.'"'."\n\n";
// Add a message for peoplewithout mime
$message = "This message has an attachment in MIME format created with surebert mail.\r\n\r\n";
//if there is body_HTML use it otherwise use just plain text
if(!empty($this->body_HTML)) {
$message .= "--".$mixed_boundary."\r\n";
if($this->attachments_in_HTML == 1) {
$message .= "Content-Type: multipart/related;"."\r\n";
$message .= ' boundary="'.$related_boundary.'"'."\r\n\r\n";
$message .= "--".$related_boundary."\r\n";
}
$message .= "Content-Type: multipart/alternative;"."\r\n";
$message .= ' boundary="'.$alterative_boundary.'"'."\r\n\r\n";
$message .= "--".$alterative_boundary."\r\n";
$message .= "Content-Type: text/plain; charset=".$this->charset."; format=flowed\r\n";
$message .= "Content-Transfer-Encoding: ".$this->transfer_encoding."\r\n";
$message .= "Content-Disposition: inline\r\n\r\n";
$message .= $this->body . "\r\n";
$message .= "--".$alterative_boundary."\r\n";
$message .= "Content-Type: text/html; charset=".$this->charset."\r\n";
$message .= "Content-Transfer-Encoding: ".$this->transfer_encoding."\r\n\r\n";
$message .= $this->body_HTML . "\r\n";
$message .="--".$alterative_boundary."--\r\n";
} else {
$message .= "--".$mixed_boundary."\r\n";
$message .= "Content-Type: text/plain; charset=".$this->charset."; format=flowed\r\n";
$message .= "Content-Transfer-Encoding: ".$this->transfer_encoding."\r\n";
$message .= "Content-Disposition: inline\r\n\r\n";
$message .= $this->body . "\r\n";
}
//add all attachments for this email
foreach($this->attachments as &$attachment) {
//if only filepath is set, grab name and contents from there
if(isset($attachment->filepath)) {
if(empty($attachment->name)) {
$attachment->name = basename($attachment->filepath);
}
if(empty($attachment->contents)) {
$attachment->contents = file_get_contents($attachment->filepath);
}
if(empty($attachment->mime_type)) {
$attachment->mime_type = sb_Files::file_to_mime($attachment->filepath);
}
}
$ex = explode(".", $attachment->name);
$attachment->extension = strtolower(array_pop($ex));
//try and guess the mime type unless it is set
if(empty($attachment->mime_type)) {
$attachment->mime_type = sb_Files::extension_to_mime($attachment->extension);
}
if($attachment->encoding == 'base64'){
$attachment->contents = chunk_split(base64_encode($attachment->contents));
}
// Add file attachment to the message
if($this->attachments_in_HTML == 1) {
$message .= "--".$related_boundary."\r\n";
} else {
$message .= "--".$mixed_boundary."\r\n";
}
if($attachment->mime_type == 'text/calendar'){
$message .= "Content-class: urn:content-classes:calendarmessage;\r\n";
}
$message .= "Content-Type: ".$attachment->mime_type.";\r\n";
$message .= " name=".$attachment->name."\r\n";
$message .= "Content-Transfer-Encoding: ".$attachment->encoding."\r\n";
$message .= "Content-ID: <".$attachment->name.">\r\n\r\n";
$message .= $attachment->contents."\r\n";
}
//end related if using body_HTML
if($this->attachments_in_HTML == 1) {
$message .= "--".$related_boundary."--\r\n";
}
//end message
$message .="--".$mixed_boundary."--\r\n";
$this->body = $message;
$raw = "To: ".$this->to."\r\n";
$raw .= "Subject: ".$this->subject."\r\n";
$raw .= $this->_header_text .$this->body;
return $raw;
}
}
?>