- 🇺🇸United States Kristen Pol Santa Cruz, CA, USA
Thanks for the issue. Sounds like this may be a mail provider issue rather than a module issue given it works in Outlook.
As the 8.x is no longer supported, I'm postponing this issue for now and need feedback as to whether or not this issue is relevant to 4.0.x.
If it is, please reopen and change the version and make sure the issue summary is clear and complete, including concrete steps to reproduce. If it's not, please close.
If there is no response to this in a month addressing the above, it can be closed.
- 🇮🇹Italy skrudge
I found a possible problem. In Drupal 10 the Password Reset Link is generated as:
because:
Line 427 -> $link = Url::fromRoute('user.login', [], ['absolute' => TRUE])->toString();
Generate the Link as Default.If you change to:
$base_url = \Drupal::request()->getSchemeAndHttpHost();
$link = $base_url . Url::fromRoute('user.login', [], ['absolute' => FALSE])->toString();the link is correct