I tried to update email in my react-native project. I called this api.
Auth.updateUserAttributes(user, newAttribute)
It will send the verify code(123456) with the user's email.
I thought its limitation will be over after 10 or 30 mins. But not, it was lasting... So I had to check the logs. Here, it is.
{
"code": "LimitExceededException",
"message": "Exceeded daily email limit for the operation or the account. If a higher limit is required, please configure your user pool to use your own Amazon SES configuration for sending email.",
"name": "LimitExceededException"
}
Any idea to avoid this?
Thanks.