Skip to content

mc_event_mail_bcc

github-actions[bot] edited this page Jun 3, 2026 · 4 revisions

Filter event notification email bcc headers.

Auto-generated Example

add_filter(
   'mc_event_mail_bcc',
    function(
        string $bcc,
        array $details
    ) {
        // Your code here.
        return $bcc;
    },
    10,
    2
);

Parameters

  • string $bcc Comma separated list of emails for BCC.
  • array $details Array of details passed to email function.

Returns

string

Files

apply_filters( 'mc_event_mail_bcc', mc_get_option( 'event_mail_bcc' ), $details )

← All Hooks

Clone this wiki locally