mc_event_mail_bcc - joedolson/my-calendar GitHub Wiki
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$bccComma separated list of emails for BCC.array$detailsArray of details passed to email function.
Returns
string
Files
apply_filters( 'mc_event_mail_bcc', mc_get_option( 'event_mail_bcc' ), $details )