friends_send_mail - akirk/friends GitHub Wiki

Auto-generated Example

add_filter(
   'friends_send_mail',
    function(
        bool $true,
        $to,
        $subject,
        $message,
        $headers,
        $attachments
    ) {
        // Your code here.
        return $true;
    },
    10,
    6
);

Parameters

  • bool $true
  • $to
  • $subject
  • $message
  • $headers
  • $attachments

Files

apply_filters( 'friends_send_mail', true, $to, $subject, $message, $headers, $attachments )

← All Hooks