Skip to content

Commit

Permalink
url in email
Browse files Browse the repository at this point in the history
  • Loading branch information
makssein committed Aug 30, 2023
1 parent 45e8332 commit e70ea6e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion app/Http/Middleware/TrustProxies.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class TrustProxies extends Middleware
*
* @var array<int, string>|string|null
*/
protected $proxies;
protected $proxies = '*';

/**
* The headers that should be used to detect proxies.
Expand Down
2 changes: 1 addition & 1 deletion app/Notifications/Account/VerifyEmailNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function toMail($notifiable) {

return (new MailMessage)
->greeting("Привет, @$notifiable->username!")
->subject('Подтверждение регистрации! | Y.com')
->subject('Подтверждение регистрации! | '.config('app.url'))
->line('Используйте действие ниже, чтобы подтвердить регистрацию.')
->action('Подтвердить почту', $verificationUrl)
->salutation('Спасибо за регистрацию на нашем сайте!');
Expand Down

0 comments on commit e70ea6e

Please sign in to comment.