You are here

public function DrupalMandrill::templates_info in Mandrill 7

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

Return value

array|MandrillException

File

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

Class

DrupalMandrill
Class DrupalMandrill.

Code

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