authentication
Forgot Password - Use in case you don´t remember your turboSMTP password
This endpoint will allow you to get an email that will help you reset your turboSMTP password
In your password reset email you will find:
- A Reset Password button that will take you to the password reset form on turboSMTP website.
- A secret token to be used to reset the password via /authentication/forgot-password. Note: Token is vaid for 1 hour.
post/forgot-password
Request body
Example request
{
"email": "developer@turboSMTP.com"
}Response
Success
Password reset email sent if the address is registered. Always returns success to prevent email enumeration.
Example response
{
"message": "success"
}