-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathAdapter.php
266 lines (235 loc) · 6.1 KB
/
Adapter.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
<?php
/**
* @link https://github.com/SDKiller/zyx-phpmailer
* @copyright Copyright (c) 2014 Serge Postrash
* @license BSD 3-Clause, see LICENSE.md
*/
namespace zyx\phpmailer;
/**
* A wrapper class to resolve some inconsistencies across original PHPMailer versions
* (i.e. some missing setters and getters, etc.)
*
* @package zyx\phpmailer
*/
class Adapter extends \PHPMailer
{
/**
* @var callable Advanced html2text converter
* (bundled `html2text` was removed for license reasons in https://github.com/PHPMailer/PHPMailer/issues/232)
*/
public $html2textHandler = '\Html2Text\Html2Text::convert';
/**
* Returns the PHPMailer Version number.
* @return string
*/
public function getVersion()
{
return $this->Version;
}
/**
* Sets the callback function to return results from PHPMailer (see PHPMailer property '$action_function')
* @param callable $callback character set name.
* @return void
*/
public function setCallback($callback)
{
$this->action_function = $callback;
}
/**
* Sets the character set of this message.
* @param string $charset character set name.
* @return void
*/
public function setCharset($charset)
{
$this->CharSet = $charset;
}
/**
* Returns the character set of this message.
* @return string the character set of this message.
*/
public function getCharset()
{
return $this->CharSet;
}
/**
* Returns the message sender.
* @return string the sender email
*/
public function getFrom()
{
return $this->From;
}
/**
* Returns the message sender.
* @return array the sender email and name
*/
public function getFromFull()
{
return array($this->From => $this->FromName);
}
/**
* Sets the message subject.
* @param string $subject message subject
* @return void
*/
public function setSubject($subject)
{
$this->Subject = $subject;
}
/**
* Returns the message subject.
* @return string the message subject
*/
public function getSubject()
{
return $this->Subject;
}
/**
* @inheritdoc
*/
public function html2text($html, $advanced = false)
{
if ($advanced === true && is_callable($this->html2textHandler)) {
return call_user_func($this->html2textHandler, $html);
}
return parent::html2text($html, $advanced);
}
/**
* Sets message plain text content.
* @param string $text message plain text conten
* @return void
*/
public function msgText($text)
{
$this->isHTML(false);
$text = self::html2text($text, true);
$text = self::normalizeBreaks($text);
$this->Body = $text;
}
/**
* Allows for public read access to 'MIMEHeader' property.
* @access public
* @return string
*/
public function getMIMEHeader()
{
return $this->MIMEHeader;
}
/**
* Allows for public read access to 'mailHeader' property.
* @access public
* @return string
*/
public function getMailHeader()
{
return $this->mailHeader;
}
/**
* Allows for public read access to 'MIMEBody' property.
* @access public
* @return string
*/
public function getMIMEBody()
{
return $this->MIMEBody;
}
/**
* @access public
* @param int $timestamp
* @return void
*/
public function setMessageDate($timestamp = null)
{
if (empty($timestamp)) {
$this->MessageDate = self::rfcDate();
} else {
date_default_timezone_set(@date_default_timezone_get());
$this->MessageDate = date('D, j M Y H:i:s O', $timestamp);
}
}
/**
* @access public
* @return string RFC 822 formatted message date
*/
public function getMessageDate()
{
return $this->MessageDate;
}
/**
* @access public
* @return void
*/
public function resetMailer()
{
$this->Subject = '';
$this->Body = '';
$this->AltBody = '';
$this->MIMEBody = '';
$this->MIMEHeader = '';
$this->mailHeader = '';
$this->MessageID = '';
$this->MessageDate = '';
$this->to = array();
$this->cc = array();
$this->bcc = array();
$this->ReplyTo = array();
$this->all_recipients = array();
$this->attachment = array();
$this->CustomHeader = array();
$this->lastMessageID = '';
$this->message_type = '';
$this->boundary = array();
}
/**
* The following getter methods for protected properties are missing in PHPMailer releases <= 5.2.7.
* They were introduced only in dev-master
* @see https://github.com/PHPMailer/PHPMailer/commit/338dd086182eaad63dcfc5e017f157b28274e30a
* Note: as of now this getters are used for Yii-debug mail panel purpose only.
*/
/**
* Allows for public read access to 'to' property.
* @access public
* @return array
*/
public function getToAddresses()
{
return $this->to;
}
/**
* Allows for public read access to 'cc' property.
* @access public
* @return array
*/
public function getCcAddresses()
{
return $this->cc;
}
/**
* Allows for public read access to 'bcc' property.
* @access public
* @return array
*/
public function getBccAddresses()
{
return $this->bcc;
}
/**
* Allows for public read access to 'ReplyTo' property.
* @access public
* @return array
*/
public function getReplyToAddresses()
{
return $this->ReplyTo;
}
/**
* Allows for public read access to 'all_recipients' property.
* @access public
* @return array
*/
public function getAllRecipientAddresses()
{
return $this->all_recipients;
}
}