public function DrupalMandrill::senders_info in Mandrill 7
@link https://mandrillapp.com/api/docs/senders.html#method=info
Return value
array|MandrillException
File
- lib/
mandrill.inc, line 190 - Wrapper class around the Mandrill API.
Class
- DrupalMandrill
- Class DrupalMandrill.
Code
public function senders_info($email) {
return $this
->request('senders/info', array(
'address' => $email,
));
}