diff --git a/app/Models/CheckoutAcceptance.php b/app/Models/CheckoutAcceptance.php index 45fc6ec08..c3c34b057 100644 --- a/app/Models/CheckoutAcceptance.php +++ b/app/Models/CheckoutAcceptance.php @@ -25,7 +25,10 @@ class CheckoutAcceptance extends Model { // At this point the endpoint is the same for everything. // In the future this may want to be adapted for individual notifications. - return Setting::getSettings()->alert_email; + $recipients_string = explode(',', Setting::getSettings()->alert_email); + $recipients = array_map('trim', $recipients_string); + + return array_filter($recipients); } /**