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
|
class Personalization(object):
"""A Personalization defines who should receive an individual message and
how that message should be handled.
"""
def __init__(self):
"""Create an empty Personalization and initialize member variables."""
self._tos = []
self._from_email = None
self._ccs = []
self._bccs = []
self._subject = None
self._headers = []
self._substitutions = []
self._custom_args = []
self._send_at = None
self._dynamic_template_data = None
def add_email(self, email):
email_type = type(email)
if email_type.__name__ == 'To':
self.add_to(email)
return
if email_type.__name__ == 'Cc':
self.add_cc(email)
return
if email_type.__name__ == 'Bcc':
self.add_bcc(email)
return
if email_type.__name__ == 'From':
self.from_email = email
return
raise ValueError('Please use a To, From, Cc or Bcc object.')
def _get_unique_recipients(self, recipients):
unique_recipients = []
for recipient in recipients:
recipient_email = recipient['email'].lower() if isinstance(recipient, dict) else recipient.email.lower()
if all(
unique_recipient['email'].lower() != recipient_email for unique_recipient in unique_recipients
):
new_unique_recipient = recipient if isinstance(recipient, dict) else recipient.get()
unique_recipients.append(new_unique_recipient)
return unique_recipients
@property
def tos(self):
"""A list of recipients for this Personalization.
:rtype: list(dict)
"""
return self._get_unique_recipients(self._tos)
@tos.setter
def tos(self, value):
self._tos = value
def add_to(self, email):
"""Add a single recipient to this Personalization.
:type email: Email
"""
if email.substitutions:
if isinstance(email.substitutions, list):
for substitution in email.substitutions:
self.add_substitution(substitution)
else:
self.add_substitution(email.substitutions)
if email.dynamic_template_data:
self.dynamic_template_data = email.dynamic_template_data
if email.subject:
if isinstance(email.subject, str):
self.subject = email.subject
else:
self.subject = email.subject.get()
self._tos.append(email.get())
@property
def from_email(self):
return self._from_email
@from_email.setter
def from_email(self, value):
self._from_email = value
def set_from(self, email):
self._from_email = email.get()
@property
def ccs(self):
"""A list of recipients who will receive copies of this email.
:rtype: list(dict)
"""
return self._get_unique_recipients(self._ccs)
@ccs.setter
def ccs(self, value):
self._ccs = value
def add_cc(self, email):
"""Add a single recipient to receive a copy of this email.
:param email: new recipient to be CCed
:type email: Email
"""
self._ccs.append(email.get())
@property
def bccs(self):
"""A list of recipients who will receive blind carbon copies of this email.
:rtype: list(dict)
"""
return self._get_unique_recipients(self._bccs)
@bccs.setter
def bccs(self, value):
self._bccs = value
def add_bcc(self, email):
"""Add a single recipient to receive a blind carbon copy of this email.
:param email: new recipient to be BCCed
:type email: Email
"""
self._bccs.append(email.get())
@property
def subject(self):
"""The subject of your email (within this Personalization).
Char length requirements, according to the RFC:
https://stackoverflow.com/a/1592310
:rtype: string
"""
return self._subject
@subject.setter
def subject(self, value):
self._subject = value
@property
def headers(self):
"""The headers for emails in this Personalization.
:rtype: list(dict)
"""
return self._headers
@headers.setter
def headers(self, value):
self._headers = value
def add_header(self, header):
"""Add a single Header to this Personalization.
:type header: Header
"""
self._headers.append(header.get())
@property
def substitutions(self):
"""Substitutions to be applied within this Personalization.
:rtype: list(dict)
"""
return self._substitutions
@substitutions.setter
def substitutions(self, value):
self._substitutions = value
def add_substitution(self, substitution):
"""Add a new Substitution to this Personalization.
:type substitution: Substitution
"""
if not isinstance(substitution, dict):
substitution = substitution.get()
self._substitutions.append(substitution)
@property
def custom_args(self):
"""The CustomArgs that will be carried along with this Personalization.
:rtype: list(dict)
"""
return self._custom_args
@custom_args.setter
def custom_args(self, value):
self._custom_args = value
def add_custom_arg(self, custom_arg):
"""Add a CustomArg to this Personalization.
:type custom_arg: CustomArg
"""
self._custom_args.append(custom_arg.get())
@property
def send_at(self):
"""A unix timestamp allowing you to specify when you want emails from
this Personalization to be delivered. Scheduling more than 72 hours in
advance is forbidden.
:rtype: int
"""
return self._send_at
@send_at.setter
def send_at(self, value):
self._send_at = value
@property
def dynamic_template_data(self):
"""Data for dynamic transactional template.
Should be JSON-serializable structure.
:rtype: JSON-serializable structure
"""
return self._dynamic_template_data
@dynamic_template_data.setter
def dynamic_template_data(self, value):
if not isinstance(value, dict):
value = value.get()
self._dynamic_template_data = value
def get(self):
"""
Get a JSON-ready representation of this Personalization.
:returns: This Personalization, ready for use in a request body.
:rtype: dict
"""
personalization = {}
for key in ['tos', 'ccs', 'bccs']:
value = getattr(self, key)
if value:
personalization[key[:-1]] = value
from_value = getattr(self, 'from_email')
if from_value:
personalization['from'] = from_value
for key in ['subject', 'send_at', 'dynamic_template_data']:
value = getattr(self, key)
if value:
personalization[key] = value
for prop_name in ['headers', 'substitutions', 'custom_args']:
prop = getattr(self, prop_name)
if prop:
obj = {}
for key in prop:
obj.update(key)
personalization[prop_name] = obj
return personalization
|