We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a9a904 commit 1b67781Copy full SHA for 1b67781
src/App/Mail/ExceptionOccurred.php
@@ -25,9 +25,9 @@ public function __construct($content)
25
*/
26
public function build(): Mailable
27
{
28
- $emailsTo = str_getcsv(config('exceptions.emailExceptionsTo'), ',');
29
- $ccEmails = str_getcsv(config('exceptions.emailExceptionCCto'), ',');
30
- $bccEmails = str_getcsv(config('exceptions.emailExceptionBCCto'), ',');
+ $emailsTo = str_getcsv(config('exceptions.emailExceptionsTo'));
+ $ccEmails = str_getcsv(config('exceptions.emailExceptionCCto'));
+ $bccEmails = str_getcsv(config('exceptions.emailExceptionBCCto'));
31
$fromSender = config('exceptions.emailExceptionFrom');
32
$subject = config('exceptions.emailExceptionSubject');
33
0 commit comments