Forgot my password

Sends an email containing a reset password token.

Using the SDK

from cakemail.models import ForgotMyPassword

api.user.forgot_my_password(
    ForgotMyPassword(email='<user email address>')
)
<?php

$api->user->forgotMyPassword([
    'forgot_my_password' => new \Cakemail\Lib\Model\ForgotMyPassword([
        'email' => '<user email address>'
    ])
]);
Language
Click Try It! to start a request and see the response here!