@@ -13,10 +13,10 @@ |
||
| 13 | 13 | |
| 14 | 14 | public function whenContactFormWasSubmitted(ContactFormWasSubmitted $event) |
| 15 | 15 | { |
| 16 | - collect(config('mail.questionFormRecipients'))->each(function (string $email) use ($event) { |
|
| 16 | + collect(config('mail.questionFormRecipients'))->each(function(string $email) use ($event) { |
|
| 17 | 17 | $this->sendMail( |
| 18 | 18 | $email, |
| 19 | - 'Een nieuwe reactie op ' . config('app.url'), |
|
| 19 | + 'Een nieuwe reactie op '.config('app.url'), |
|
| 20 | 20 | 'emails.contactFormSubmitted', |
| 21 | 21 | $event->formResponse->toArray() |
| 22 | 22 | ); |
@@ -13,17 +13,17 @@ |
||
| 13 | 13 | |
| 14 | 14 | public function userWasCreated(UserWasCreated $event) |
| 15 | 15 | { |
| 16 | - Password::broker('back')->sendResetLink(['email' => $event->user->email], function (Message $message) { |
|
| 16 | + Password::broker('back')->sendResetLink(['email' => $event->user->email], function(Message $message) { |
|
| 17 | 17 | $message->subject(fragment('passwords.subjectEmailNewUser')); |
| 18 | 18 | }); |
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | public function contactFormWasSubmitted(ContactFormWasSubmitted $event) |
| 22 | 22 | { |
| 23 | - collect(config('mail.questionFormRecipients'))->each(function (string $email) use ($event) { |
|
| 23 | + collect(config('mail.questionFormRecipients'))->each(function(string $email) use ($event) { |
|
| 24 | 24 | $this->sendMail( |
| 25 | 25 | $email, |
| 26 | - 'Een nieuwe reactie op ' . config('app.url'), |
|
| 26 | + 'Een nieuwe reactie op '.config('app.url'), |
|
| 27 | 27 | 'emails.admin.contactFormSubmitted', |
| 28 | 28 | $event->formResponse->toArray() |
| 29 | 29 | ); |