-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMailMessage.php
415 lines (364 loc) · 8.07 KB
/
MailMessage.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
<?php
if (! defined('_PS_VERSION_')){
exit();
}
/**
* This class represents a mail message.
*
* @author Thomas Hunziker
*
*/
class MailMessage {
private $langId;
private $templateName;
private $subject;
private $templateVariables;
private $toEmailAddress;
private $toName;
private $fromEmailAddress;
private $fromName;
private $fileAttachment = null;
private $modeSmtp;
private $templateFolderPath;
private $shopId;
private $bcc;
private $replyTo;
private $replyToName;
/**
* Constructor. Allows to copy the input (copy contructor).
*
* @param MailMessage $input (Optional)Message to copy
*/
public function __construct($input = null) {
if ($input instanceof MailMessage) {
if ($input->fileAttachment !== null) {
$this->fileAttachment = new MailMessageAttachment($input->fileAttachment);
}
$this->fromEmailAddress = $input->fromEmailAddress;
$this->fromName = $input->fromName;
$this->langId = $input->langId;
$this->shopId = $input->shopId;
$this->subject = $input->subject;
$this->templateFolderPath = $input->templateFolderPath;
$this->modeSmtp = $input->modeSmtp;
$this->templateName = $input->templateName;
$this->templateVariables = $input->templateVariables;
$this->toEmailAddress = $input->toEmailAddress;
$this->toName = $input->toName;
$this->bcc = $input->bcc;
$this->replyTo = $input->replyTo;
$this->replyToName = $input->replyToName;
}
}
/**
* Returns the id of the language of the mail message.
*
* @return string
*/
public function getLangId(){
return $this->langId;
}
/**
* Sets the language id for the message.
*
* @param int $langId
* @return MailMessage
*/
public function setLangId($langId){
$this->langId = $langId;
return $this;
}
/**
* Returns the name of the template to use for this message.
*
* @return string
*/
public function getTemplateName(){
return $this->templateName;
}
/**
* Sets the template to be used for this message.
*
* @param string $templateName
* @return MailMessage
*/
public function setTemplateName($templateName){
$this->templateName = $templateName;
return $this;
}
/**
* Returns the message subject.
*
* @return string
*/
public function getSubject(){
return $this->subject;
}
/**
* Sets the subject of the message. The subject will be modified
* by the sending method by prepending the following string:
* [Shop Name]
*
* The prefix can not be removed.
*
* @param string $subject
* @return MailMessage
*/
public function setSubject($subject){
$this->subject = $subject;
return $this;
}
/**
* Returns the variables for the template. The variables
* will be replaced in the template. The result is the
* body of the message.
*
* e.g. array (
* '{delivery_company}',
* '{carrier}',
* )
*
* @return array
*/
public function getTemplateVariables(){
return $this->templateVariables;
}
/**
* Sets the variables for the template. The variables are replaced
* in the body of the message.
*
* e.g. array (
* '{delivery_company}',
* '{carrier}',
* )
*
* @param array $templateVariables
* @return MailMessage
*/
public function setTemplateVariables(array $templateVariables){
$this->templateVariables = $templateVariables;
return $this;
}
/**
* Adds the given template variable.
*
* Sample Name: {delivery_company}
* Sample Value: Some Name of a Company
*
* The value should be also a string.
*
* @param string $name
* @param string $value
* @return MailMessage
*/
public function addTemplateVariable($name, $value) {
$this->templateVariables[$name] = $value;
return $this;
}
/**
* Returns the mail address to which the mail is
* sent to.
*
* @return string
*/
public function getToEmailAddress(){
return $this->toEmailAddress;
}
/**
* Sets the mail address to which the mail is sent to.
*
* @param string $toEmailAddress
* @return MailMessage
*/
public function setToEmailAddress($toEmailAddress){
$this->toEmailAddress = $toEmailAddress;
return $this;
}
/**
* Returns the name to which the mail is sent to. E.g. the
* customer name in case of the order confirmation.
*
* @return string
*/
public function getToName(){
return $this->toName;
}
/**
* Sets the name to which the mail is sent to. E.g. the customer
* name in case of the order confirmation.
*
* @param string $toName
* @return MailMessage
*/
public function setToName($toName){
$this->toName = $toName;
return $this;
}
/**
* Returns the e-mail address of the sender. In most cases
* this is the store e-mail address.
*
* @return string
*/
public function getFromEmailAddress(){
return $this->fromEmailAddress;
}
/**
* Sets the e-mail address of the sender. In most cases
* this is the store e-mail address.
*
* @param string $fromEmailAddress
* @return MailMessage
*/
public function setFromEmailAddress($fromEmailAddress){
$this->fromEmailAddress = $fromEmailAddress;
return $this;
}
/**
* Returns the name of the sender.
*
* @return string
*/
public function getFromName(){
return $this->fromName;
}
/**
* Sets the name of the sender.
*
* @param string $fromName
* @return MailMessage
*/
public function setFromName($fromName){
$this->fromName = $fromName;
return $this;
}
/**
* Returns the file attachment of the mail. See MailMessageAttachment for more
* information about the format etc.
*
* @return MailMessageAttachment
*/
public function getFileAttachment(){
return $this->fileAttachment;
}
/**
* Sets the mail attachment.
*
* @param MailMessageAttachment $fileAttachment
* @return MailMessage
*/
public function setFileAttachment(MailMessageAttachment $fileAttachment){
$this->fileAttachment = $fileAttachment;
return $this;
}
/**
* Sets the path in which the mail template is searched. By default it points
* to _PS_MAIL_DIR_.
*
* @return string
*/
public function getTemplateFolderPath(){
return $this->templateFolderPath;
}
/**
* Sets the path in which the mail template is searched. By default it points
* to _PS_MAIL_DIR_.
*
* @param string $templateFolderPath
* @return MailMessage
*/
public function setTemplateFolderPath($templateFolderPath){
$this->templateFolderPath = $templateFolderPath;
return $this;
}
/**
* Gets the SMTP mode.
*
* @return string
*/
public function getModeSMTP(){
return $this->modeSmtp;
}
/**
* Sets the SMTP mode.
*
* @param string $modeSmtp
* @return MailMessage
*/
public function setModeSMTP($modeSmtp){
$this->modeSmtp = $modeSmtp;
return $this;
}
/**
* Returns the shop id.
*
* @return int
*/
public function getShopId(){
return $this->shopId;
}
/**
* Sets the shop id.
*
* @param int $shopId
* @return MailMessage
*/
public function setShopId($shopId){
$this->shopId = $shopId;
return $this;
}
/**
* Returns the BCC of the message.
*
* @return string
*/
public function getBcc() {
return $this->bcc;
}
/**
* Sets the BCC of the message.
*
* @param string $bcc
* @return MailMessage
*/
public function setBcc($bcc) {
$this->bcc = $bcc;
return $this;
}
/**
* Returns the reply to header of the e-mail message.
*
* @return the reply to header of the e-mail message.
*/
public function getReplyTo() {
return $this->replyTo;
}
/**
* Sets the reply to header of the e-mail message.
*
* @param string $replyTo the reply to header of the e-mail message.
* @return MailMessage this message object.
*/
public function setReplyTo($replyTo) {
$this->replyTo = $replyTo;
return $this;
}
/**
* Returns the name of the reply to receipient.
*
* @return string
*/
public function getReplyToName() {
return $this->replyToName;
}
/**
* Sets the name of the reply to recipient.
*
* @param string $replyToName the name of the reply to receipient.
* @return MailMessage this message object.
*/
public function setReplyToName($replyToName) {
$this->replyToName = $replyToName;
return $this;
}
}