function Mandrill::templates_delete in Mandrill 6
@link https://mandrillapp.com/api/docs/templates.html#method=delete
Return value
array|Mandrill_Exception
File
- ./
mandrill.class.php, line 222
Class
Code
function templates_delete($name) {
return $this
->request('templates/delete', array(
'name' => $name,
));
}