Hi,
Two years ago, I opened a ticket for custom email templates that were not functioning correctly. I was asked to add the following code to the website, which resolved the problem. I’m now checking again to see if I still need to keep it:
add_filter(‘viwec_accept_email_type’, function($emails) {
$emails[] = ‘failed_renewal_authentication’;
$emails[] = ‘failed_preorder_sca_authentication’;
$emails[] = ‘failed_authentication_requested’;
$emails[] = ‘bis_notification_received’;
$emails[] = ‘bis_notification_confirm’;
return $emails;
});
Thank you!