You are here

public function DrupalMandrill::templates_delete in Mandrill 7

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

Return value

array|MandrillException

File

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

Class

DrupalMandrill
Class DrupalMandrill.

Code

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