You are here

function Mandrill::tags_info in Mandrill 6

@link https://mandrillapp.com/api/docs/tags.html#method=info

Return value

array|Mandrill_Exception

File

./mandrill.class.php, line 171

Class

Mandrill

Code

function tags_info($tag) {
  return $this
    ->request('tags/info', array(
    'tag' => $tag,
  ));
}