You are here

function Mandrill::messages_send in Mandrill 6

@link https://mandrillapp.com/api/docs/messages.html#method=send

Return value

array|Mandrill_Exception

File

./mandrill.class.php, line 345

Class

Mandrill

Code

function messages_send($message) {
  return $this
    ->request('messages/send', array(
    'message' => $message,
  ));
}