-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resending user signup confirmation email #50
Comments
I think that's what send_verification is for. |
send_verification requires an active access token which is obviously not available if the user has not yet The client method "resend_confirmation_code" achieves what the OP was asking. Will look into adding this shortly |
@amankejriwal |
Thanks for adding that method. It's important to note, however that admins who have created a user with u = Cognito('your-user-pool-id', 'your-client-id')
user = u.admin_create_user(
user_email_address,
temporary_password='NewPassword^56',
additional_kwargs={`'MessageAction': 'RESEND'},
) Source: StackOverflow |
Thanks for the info @nk9 Cheers for the FYI |
I've discovered another fun caveat. The "RESEND" trick above only works if the user's status is |
Is there a way to send the confirmation email that a new user receives upon signup?
The text was updated successfully, but these errors were encountered: