diff --git a/lib/ash_hq/accounts/resources/user/senders/send_password_reset_email.ex b/lib/ash_hq/accounts/resources/user/senders/send_password_reset_email.ex index 7c681f6..2deb6c9 100644 --- a/lib/ash_hq/accounts/resources/user/senders/send_password_reset_email.ex +++ b/lib/ash_hq/accounts/resources/user/senders/send_password_reset_email.ex @@ -8,7 +8,7 @@ defmodule AshHq.Accounts.User.Senders.SendPasswordResetEmail do def send(user, token, _) do AshHq.Accounts.Emails.deliver_reset_password_instructions( user, - ~p"/password-reset/#{token}" + url(~p"/password-reset/#{token}") ) end end