You are here

public function Messaging_Message::send in Messaging 7

Same name and namespace in other branches
  1. 6.4 includes/messaging_message.class.inc \Messaging_Message::send()
  2. 6.3 classes/messaging_message.class.inc \Messaging_Message::send()

Send message through sending method.

The message may need to be processed and it can be queued or discarded yet.

1 call to Messaging_Message::send()
Messaging_Message::send_all in ./messaging.message.inc
Send message through all sending methods

File

./messaging.message.inc, line 429
Drupal Messaging Framework - Message class file

Class

Messaging_Message
Message class

Code

public function send() {
  $this->send = 1;
  return $this
    ->process('build', 'prepare', 'dispatch');
}