You are here

function notifications_message_send in Notifications 5

Same name and namespace in other branches
  1. 6 notifications.cron.inc \notifications_message_send()
  2. 6.2 notifications.cron.inc \notifications_message_send()
  3. 6.3 notifications.cron.inc \notifications_message_send()

Message sending

1 call to notifications_message_send()
notifications_process_send in ./notifications.cron.inc
Message delivery.

File

./notifications.cron.inc, line 608

Code

function notifications_message_send($account, $message, $send_method) {
  $message['type'] = 'notifications';
  notifications_process('count', 'message');
  messaging_message_send_user($account, $message, $send_method);
}