From 2b32ada5b6a05bb2d8ea3b1e8b55dc236b54e59e Mon Sep 17 00:00:00 2001 From: romanetar Date: Thu, 3 Jul 2025 14:02:37 +0200 Subject: [PATCH] fix: change otp code possition in subject Signed-off-by: romanetar --- app/Mail/OAuth2PasswordlessOTPMail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Mail/OAuth2PasswordlessOTPMail.php b/app/Mail/OAuth2PasswordlessOTPMail.php index 28bf335d..43954beb 100644 --- a/app/Mail/OAuth2PasswordlessOTPMail.php +++ b/app/Mail/OAuth2PasswordlessOTPMail.php @@ -118,7 +118,7 @@ public function __construct */ public function build() { - $this->subject = sprintf("[%s] Your Single-use Code - %s", Config::get('app.app_name'), $this->otp); + $this->subject = sprintf("[%s] %s is your Single-use Code", Config::get('app.app_name'), $this->otp); Log::debug(sprintf("OAuth2PasswordlessOTPMail::build to %s", $this->email)); return $this->from(Config::get("mail.from")) ->to($this->email)