Example #1
0
 /**
  * Delete the emails matching the array of mail_id's in $email_ids
  * @param $email_ids list of mail_ids to delete from the server.
  * @return bool
  */
 public function delEmail($email_ids)
 {
     $action = "del_email";
     $options = array('email_ids' => $email_ids, 'sid_token' => $this->sid_token);
     return $this->client->post($action, $options);
 }