Use user provided alert email for checkout acceptances

This commit is contained in:
Marcus Moore 2023-01-26 13:18:18 -08:00
parent 6fc8982478
commit 39289dd18e
No known key found for this signature in database

View file

@ -21,7 +21,7 @@ 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 (config('mail.reply_to.address')) ? config('mail.reply_to.address') : '' ;
return Setting::getSettings()['alert_email'];
}
/**