I'm using google app engine for the project. recently changed the queue driver to google cloud task queue. After changing the queue driver, The signed route on my email return the domain starting from api.Domain.com. Which was earlier domain.com
The following code used in the email.
public function toMail($notifiable)
{
$url = URL::signedRoute('activate', [
'email' => $notifiable->email,
]);
return (new MailMessage)
->subject('Activate Your Account')
->markdown('mails.auth.activate', [
'url' => $url,
'email' => $notifiable->email,
]);
}
I'm using google app engine for the project. recently changed the queue driver to google cloud task queue. After changing the queue driver, The signed route on my email return the domain starting from api.Domain.com. Which was earlier domain.com
The following code used in the email.