File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -25,11 +25,11 @@ public function __construct($content)
2525 */
2626 public function build (): Mailable
2727 {
28- $ emailsTo = str_getcsv (config ('exceptions.emailExceptionsTo ' ));
29- $ ccEmails = str_getcsv (config ('exceptions.emailExceptionCCto ' ));
30- $ bccEmails = str_getcsv (config ('exceptions.emailExceptionBCCto ' ));
31- $ fromSender = config ('exceptions.emailExceptionFrom ' );
32- $ subject = config ('exceptions.emailExceptionSubject ' );
28+ $ emailsTo = str_getcsv (config ('exceptions.emailExceptionsTo ' , '' ));
29+ $ ccEmails = str_getcsv (config ('exceptions.emailExceptionCCto ' , '' ));
30+ $ bccEmails = str_getcsv (config ('exceptions.emailExceptionBCCto ' , '' ));
31+ $ fromSender = config ('exceptions.emailExceptionFrom ' , '' );
32+ $ subject = config ('exceptions.emailExceptionSubject ' , '' );
3333
3434 return $ this ->from ($ fromSender )
3535 ->to ($ emailsTo )
Original file line number Diff line number Diff line change 2020 | This is the email your exception will be from.
2121 |
2222 */
23- 'emailExceptionFrom ' => env ('EMAIL_EXCEPTION_FROM ' , '' ),
23+ 'emailExceptionFrom ' => env ('EMAIL_EXCEPTION_FROM ' ),
2424
2525 /*
2626 |--------------------------------------------------------------------------
3030 | This is the email(s) the exceptions will be emailed to.
3131 |
3232 */
33- 'emailExceptionsTo ' => env ('EMAIL_EXCEPTION_TO ' , '' ),
33+ 'emailExceptionsTo ' => env ('EMAIL_EXCEPTION_TO ' ),
3434
3535 /*
3636 |--------------------------------------------------------------------------
4040 | This is the email(s) the exceptions will be CC emailed to.
4141 |
4242 */
43- 'emailExceptionCCto ' => env ('EMAIL_EXCEPTION_CC ' , '' ),
43+ 'emailExceptionCCto ' => env ('EMAIL_EXCEPTION_CC ' ),
4444
4545 /*
4646 |--------------------------------------------------------------------------
5050 | This is the email(s) the exceptions will be BCC emailed to.
5151 |
5252 */
53- 'emailExceptionBCCto ' => env ('EMAIL_EXCEPTION_BCC ' , '' ),
53+ 'emailExceptionBCCto ' => env ('EMAIL_EXCEPTION_BCC ' ),
5454
5555 /*
5656 |--------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments