You are here

public function DrupalMandrill::templates_time_series in Mandrill 7

@link https://mandrillapp.com/api/docs/templates.html#method=time-series

Return value

array|MandrillException

File

lib/mandrill.inc, line 304
Wrapper class around the Mandrill API.

Class

DrupalMandrill
Class DrupalMandrill.

Code

public function templates_time_series($name) {
  return $this
    ->request('templates/time-series', array(
    'name' => $name,
  ));
}