notify_friend_message_received - akirk/friends GitHub Wiki

Auto-generated Example

add_action(
   'notify_friend_message_received',
    function(
        $friend_user,
        $message,
        $subject,
        $actor_url,
        $remote_url,
        $reply_to
    ) {
        // Your code here.
    },
    10,
    6
);

Parameters

  • $friend_user
  • $message
  • $subject
  • $actor_url
  • $remote_url
  • $reply_to

Files

do_action( 'notify_friend_message_received', $friend_user, $message, $subject, $actor_url, $remote_url, $reply_to )

← All Hooks