config('app.name'),
]);
$accountSettingsTxt = __('Account settings');
return (new MailMessage())
->subject(
__('Your :site security code is :code', [
'site' => config('app.name'),
'code' => $this->otp,
]),
)
->greeting(new HtmlString("
$title
"))
->line(
new HtmlString(
'' .
$this->otp .
'',
),
)
->line(
__(
'If you did not request this code, please go to your :link and change your password right away.',
[
'link' => "$accountSettingsTxt",
],
),
)
->line(
__('This code will expire in :minutes minutes.', [
'minutes' => 30,
]),
);
}
}