문제

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