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