function Messaging_Send_Method::send_destination in Messaging 6.4
Same name and namespace in other branches
- 7 messaging.method.inc \Messaging_Send_Method::send_destination()
Send message to destination, use sending callback
File
- includes/
messaging_method.class.inc, line 213 - Drupal Messaging Framework - Send_Method class file
Class
- Messaging_Send_Method
- Sending method, implements all specific method functionality
Code
function send_destination($destination, $message) {
return $this
->send_address($destination->address, $message);
}