@@ -273,33 +273,6 @@ class Message
273
273
*/
274
274
protected $ returnPathDomain = null ;
275
275
276
- /**
277
- * enable a background sending mode that is optimized for bulk sending. In async mode, messages/send will
278
- * immediately return a status of "queued" for every recipient. To handle rejections when sending in async mode,
279
- * set up a webhook for the 'reject' event. Defaults to false for messages with no more than 10 recipients; messages
280
- * with more than 10 recipients are always sent asynchronously, regardless of the value of async.
281
- *
282
- * @var bool $async
283
- */
284
- protected $ async = false ;
285
-
286
- /**
287
- * the name of the dedicated ip pool that should be used to send the message. If you do not have any dedicated IPs,
288
- * this parameter has no effect. If you specify a pool that does not exist, your default pool will be used instead.
289
- *
290
- * @var String $ipPool Pool name
291
- */
292
- protected $ ipPool = null ;
293
-
294
- /**
295
- * when this message should be sent as a UTC timestamp in YYYY-MM-DD HH:MM:SS format. If you specify a time in the
296
- * past, the message will be sent immediately. An additional fee applies for scheduled email, and this feature is
297
- * only available to accounts with a positive balance.
298
- * Validation: datetime
299
- *
300
- * @var String $sendAt YYYY-MM-DD HH:MM:SS
301
- */
302
- protected $ sendAt = null ;
303
276
304
277
/**
305
278
* Add a recipient
@@ -1157,53 +1130,7 @@ public function setMergeLanguage($mergeLanguage)
1157
1130
$ this ->mergeLanguage = $ mergeLanguage ;
1158
1131
}
1159
1132
1160
- /**
1161
- * @return boolean
1162
- */
1163
- public function isAsync ()
1164
- {
1165
- return $ this ->async ;
1166
- }
1167
-
1168
- /**
1169
- * @param boolean $async
1170
- */
1171
- public function setAsync ($ async )
1172
- {
1173
- $ this ->async = $ async ;
1174
- }
1175
-
1176
- /**
1177
- * @return String
1178
- */
1179
- public function getIpPool ()
1180
- {
1181
- return $ this ->ipPool ;
1182
- }
1183
-
1184
- /**
1185
- * @param String $ipPool
1186
- */
1187
- public function setIpPool ($ ipPool )
1188
- {
1189
- $ this ->ipPool = $ ipPool ;
1190
- }
1191
-
1192
- /**
1193
- * @return String
1194
- */
1195
- public function getSendAt ()
1196
- {
1197
- return $ this ->sendAt ;
1198
- }
1199
1133
1200
- /**
1201
- * @param String $sendAt
1202
- */
1203
- public function setSendAt ($ sendAt )
1204
- {
1205
- $ this ->sendAt = $ sendAt ;
1206
- }
1207
1134
1208
1135
1209
1136
}
0 commit comments