Skip to content

Commit

Permalink
- fix missing app name in the confirmation email
Browse files Browse the repository at this point in the history
  • Loading branch information
r-brown committed Jul 24, 2017
1 parent 2a5129a commit b4b3055
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Notifications/Auth/ConfirmEmail.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function toMail($notifiable)
$mailMessage->line(__('notification.auth.confirm_email.mail.line.1'));
$mailMessage->line(__('notification.auth.confirm_email.mail.line.2', ['email' => config('mail.from.address')]));

$mailMessage->line(__('notification.auth.confirm_email.mail.line.3'));
$mailMessage->line(__('notification.auth.confirm_email.mail.line.3', ['app' => config('app.name')]));

return $mailMessage;
}
Expand Down

0 comments on commit b4b3055

Please sign in to comment.