@@ -85,16 +85,37 @@ public function getRecipient()
85
85
return $ this ->recipient ;
86
86
}
87
87
88
+ /**
89
+ *
90
+ * Get the e-mail recipient.
91
+ *
92
+ * @return string
93
+ */
94
+ public function getRecipientAttribute ()
95
+ {
96
+ return $ this ->recipient ;
97
+ }
98
+
88
99
/**
89
100
* Get the e-mail from.
90
101
*
91
- * @return array
102
+ * @return string
92
103
*/
93
104
public function getFrom ()
94
105
{
95
106
return $ this ->from ;
96
107
}
97
108
109
+ /**
110
+ * Get the e-mail from.
111
+ *
112
+ * @return string
113
+ */
114
+ public function getFromAttribute ()
115
+ {
116
+ return $ this ->from ;
117
+ }
118
+
98
119
/**
99
120
* Get the e-mail from address.
100
121
*
@@ -137,6 +158,16 @@ public function getCc()
137
158
return $ this ->cc ;
138
159
}
139
160
161
+ /**
162
+ * Get the e-mail CC addresses.
163
+ *
164
+ * @return array
165
+ */
166
+ public function getCcAttribute ()
167
+ {
168
+ return $ this ->cc ;
169
+ }
170
+
140
171
/**
141
172
* Get the e-mail BCC addresses.
142
173
*
@@ -147,6 +178,16 @@ public function getBcc()
147
178
return $ this ->bcc ;
148
179
}
149
180
181
+ /**
182
+ * Get the e-mail BCC addresses.
183
+ *
184
+ * @return array
185
+ */
186
+ public function getBccAttribute ()
187
+ {
188
+ return $ this ->bcc ;
189
+ }
190
+
150
191
/**
151
192
* Get the e-mail subject.
152
193
*
@@ -157,6 +198,16 @@ public function getSubject()
157
198
return $ this ->subject ;
158
199
}
159
200
201
+ /**
202
+ * Get the e-mail subject.
203
+ *
204
+ * @return string
205
+ */
206
+ public function getSubjectAttribute ()
207
+ {
208
+ return $ this ->view ;
209
+ }
210
+
160
211
/**
161
212
* Get the e-mail view.
162
213
*
@@ -177,6 +228,16 @@ public function getVariables()
177
228
return $ this ->variables ;
178
229
}
179
230
231
+ /**
232
+ * Get the e-mail variables.
233
+ *
234
+ * @return array
235
+ */
236
+ public function getVariablesAttribute ()
237
+ {
238
+ return $ this ->variables ;
239
+ }
240
+
180
241
/**
181
242
* Get the e-mail body.
182
243
*
@@ -187,6 +248,16 @@ public function getBody()
187
248
return $ this ->body ;
188
249
}
189
250
251
+ /**
252
+ * Get the e-mail body.
253
+ *
254
+ * @return string
255
+ */
256
+ public function getBodyAttribute ()
257
+ {
258
+ return $ this ->body ;
259
+ }
260
+
190
261
/**
191
262
* Get the e-mail attachments.
192
263
*
0 commit comments