You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I have not found anything in the documentation on, so, if this is there somewhere, forgive me for letting it go unnoticed. I'm using mailgun to send emails, like verification, and reset password. But let's say a "human profiteer", keep clicking on send the password reset email, there will be 2 things.
1- Flood of messages from my app in the user's email.
2- Email limit has exceeded, causing me to have more costs.
I would like to know if there is any method to set a time limit, for example, the user sent 1 e-mail, and it did not arrive (okay, there may have been some problem, or email has not yet been sent yet), then the user sends again an email to reset password. I would like to prevent this user from sending you another email for the next 1 hour. Do I have to do this manually? Thank you!
The text was updated successfully, but these errors were encountered:
I implemented a similar feature by adding a bool called "resetSent" to the User column which is set to true if a reset link has been sent, and false when it has been successfully reset by the user. If a password reset is requested and the "resetSent" is true, it wont send it the email.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Hello, I have not found anything in the documentation on, so, if this is there somewhere, forgive me for letting it go unnoticed. I'm using mailgun to send emails, like verification, and reset password. But let's say a "human profiteer", keep clicking on send the password reset email, there will be 2 things.
1- Flood of messages from my app in the user's email.
2- Email limit has exceeded, causing me to have more costs.
I would like to know if there is any method to set a time limit, for example, the user sent 1 e-mail, and it did not arrive (okay, there may have been some problem, or email has not yet been sent yet), then the user sends again an email to reset password. I would like to prevent this user from sending you another email for the next 1 hour. Do I have to do this manually? Thank you!
The text was updated successfully, but these errors were encountered: