From 6139e19c28950ea4b919978bfe571899328c9341 Mon Sep 17 00:00:00 2001 From: Sean Zubrickas Date: Thu, 20 Nov 2025 10:48:23 -0500 Subject: [PATCH] adds banner documenting default password reset URL --- docs/authentication/email.mdx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/authentication/email.mdx b/docs/authentication/email.mdx index b54dc971e4e..f95d479feb9 100644 --- a/docs/authentication/email.mdx +++ b/docs/authentication/email.mdx @@ -116,6 +116,13 @@ The following options are available: | **`generateEmailHTML`** | Allows for overriding the HTML within emails that are sent to users attempting to reset their password. [More details](#generateEmailHTML). | | **`generateEmailSubject`** | Allows for overriding the subject of the email that is sent to users attempting to reset their password. [More details](#generateEmailSubject). | + + **Tip:** Payload provides a built-in password reset page. If you don't need a + custom frontend, you can link directly to `${serverURL}/admin/reset/${token}`. + The admin and reset routes are configurable via `config.routes.admin` and + `config.admin.routes.reset` respectively. + + #### generateEmailHTML This function allows for overriding the HTML within emails that are sent to users attempting to reset their password. The function should return a string that supports HTML, which can be a full HTML email.