mc_send_notification - joedolson/my-calendar GitHub Wiki
Filter whether email notifications should be sent.
Auto-generated Example
add_filter(
'mc_send_notification',
function(
bool $send_email,
array $details
) {
// Your code here.
return $send_email;
},
10,
2
);
Parameters
bool$send_emailBoolean equivalent of value of event email setting.array$detailsEvent details for notifications.
Returns
bool
Files
apply_filters( 'mc_send_notification', $send_email_option, $details )