> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: sendResetPasswordEmail(email: string) # Method package: wixMembersFrontend # Method menu location: wixMembersFrontend --> Authentication --> sendResetPasswordEmail # Method Link: https://dev.wix.com/docs/velo/apis/wix-members-frontend/authentication/send-reset-password-email.md # Method Description: Sends a site member an email with a link to set their password. > **Note:** > This method is in Developer Preview and is subject to change. The reset password link is valid for 3 hours, and it can be used only once. If the link expires, no changes are made to the password. A site can send a maximum of 200 reset password emails per day. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Email a member with a link to reset their password ```javascript import { authentication } from 'wix-members-frontend'; authentication .sendResetPasswordEmail(email) .then((status) => { console.log('Password reset email sent'); }) .catch((error) => { console.error('Error sending email:', error); }); ``` ---