We have a registration process where users can register with their email address. We do not want to allow to register with fake emails like 10minutemail, or equal. How can I implement that? Is there a blacklist for tose domains?

有帮助吗?

解决方案

Here's a pretty comprehensive list of temporary/disposable email domains. So depending on how you're handling the form submission, you might check against a list like that before processing the info for registration.

There are also some email validation APIs you might want to check out.

其他提示

You can add an email confirmation to the registration process. If you are worried about fake temporary emails, you can add a delay before confirmation email is sent.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top