public function DrupalMandrill::senders_time_series in Mandrill 7
@link https://mandrillapp.com/api/docs/senders.html#method=time-series
Return value
array|MandrillException
File
- lib/mandrill.inc, line 199 
- Wrapper class around the Mandrill API.
Class
- DrupalMandrill
- Class DrupalMandrill.
Code
public function senders_time_series($email) {
  return $this
    ->request('senders/time-series', array(
    'address' => $email,
  ));
}