function CMBase::subscribersGetUnsubscribed in Campaign Monitor 5.2
*
Parameters
mixed $date If a string, should be in the date() format of 'Y-m-d H:i:s', otherwise, a Unix timestamp.: * @param int $list_id (Optional) A valid List ID to check against. If not given, the default class property is used. * @see http://www.campaignmonitor.com/api/Subscribers.GetUnsubscribed.aspx
File
- lib/
CMBase.php, line 359
Class
Code
function subscribersGetUnsubscribed($date = 0, $list_id = null) {
return $this
->subscribersGetActive($date, $list_id, 'Subscribers.GetUnsubscribed');
}