You are here

function Messaging_Message::post in Messaging 6.3

Actual message sending through sending method

1 call to Messaging_Message::post()
Messaging_Message::process in classes/messaging_message.class.inc
Process message to the end (queue, send, log

File

classes/messaging_message.class.inc, line 177
Drupal Messaging Framework - Default class file

Class

Messaging_Message
Message class

Code

function post() {

  // Disable queueing, but it can be restored by next operations
  $this
    ->render();
  $this->queue = 0;

  // Prepare operations to invoke on send method
  $this->result = $this
    ->method_process('presend', 'send', 'aftersend');
  return $this->result;
}