How to block Disposable Email Addresses in your website's registration form?

后端 未结 11 2162
天命终不由人
天命终不由人 2020-11-29 23:55

I would like to know of the possible ways to block disposable email addresses from registering in my website.

For simplicity, let\'s take the example where the regi

11条回答
  •  一生所求
    2020-11-30 00:24

    I'm facing the same problems so I create a Free API service that recognize disposable and temporary email address: Block Temporary Email

    Email Endpoint:

    GET https://block-temporary-email.com/check/email/example@simplemail.top

    JSON response:

    {
      "status": 200,
      "domain": "simplemail.top",
      "temporary": true,
      "dns": true,
    }
    

    This API is 100% free and have no limits.

    This site provides a free and updated TXT list of disposable email providers too.

    Disclaimer: I made this API

提交回复
热议问题