send_password_reset_email
Send password reset emails to users who need to recover their account access. Enter the user's email address to deliver a secure password reset link.
Instructions
Send Password Reset Email
This action initializes the user's password reset and sends a password reset email.
Args: email: Email address to receive the password reset link
Returns: Confirmation that the reset email was sent
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| Yes |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"type": "string"
}
},
"required": [
"email"
],
"type": "object"
}