Jake B.
Well-known member
If there was a way I could do something like this:
and it'll still send email to the users specified that'd enable testing emails after an import without accidentally having things sent incorrectly
PHP:
$config['enableMail'] = false;
$config['enableMail']['whitelist'] = [
'user1@domain.com',
'user2@domain.com',
];
and it'll still send email to the users specified that'd enable testing emails after an import without accidentally having things sent incorrectly
Upvote
0