Skip to content

Commit a2ea884

Browse files
author
Sven Loth
committed
removed unneded members
1 parent 5efb280 commit a2ea884

File tree

1 file changed

+0
-73
lines changed

1 file changed

+0
-73
lines changed

Message.php

Lines changed: 0 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -273,33 +273,6 @@ class Message
273273
*/
274274
protected $returnPathDomain = null;
275275

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;
303276

304277
/**
305278
* Add a recipient
@@ -1157,53 +1130,7 @@ public function setMergeLanguage($mergeLanguage)
11571130
$this->mergeLanguage = $mergeLanguage;
11581131
}
11591132

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-
}
11991133

1200-
/**
1201-
* @param String $sendAt
1202-
*/
1203-
public function setSendAt($sendAt)
1204-
{
1205-
$this->sendAt = $sendAt;
1206-
}
12071134

12081135

12091136
}

0 commit comments

Comments
 (0)