Reset password emails allow users to regain access to their accounts if they have forgotten their passwords.
javascript
Copy
const waitlyst = new Waitlyst("PUBLISHABLE_KEY");
/* Track event */
waitlyst.track('Password reset');
/* Track event with properties */
waitlyst.track('Password reset', {
email: 'test@example.com',
link: 'https://example.com/path/to/reset/url',
});