You are here

function Mandrill::tags_time_series in Mandrill 6

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

Return value

array|Mandrill_Exception

File

./mandrill.class.php, line 180

Class

Mandrill

Code

function tags_time_series($tag) {
  return $this
    ->request('tags/time-series', array(
    'tag' => $tag,
  ));
}