检查电子邮件域类型(个人电子邮件或公司电子邮件)
示例
isPersonalEmail("[email protected]") // true
isPersonalEmail("[email protected]") // false
我找不到 NPM 包来执行此操作 我需要在 Node.js 服务器中检查电子邮件
Example
isPersonalEmail("[email protected]") // true
isPersonalEmail("[email protected]") // false
I can't find NPM package do that
I need to check email in node.js server
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了两个 npm 软件包,您可以使用它们来实现这一目标:
免费电子邮件域名 by Kiko Beats
该软件包基于 HubSpot 阻止的域
电子邮件提供商 由 derhuerst
提供相同的解决方案,优点是可以选择使用列表中的所有 4k 域,或仅使用 312 个公共域。他对共同点的定义如下:
完整解决方案
我还偶然发现了您在提取域时可能需要考虑的相关问题。
I found two npm packages that you can use to achieve that:
Free Email Domains by Kiko Beats
The package is based on HubSpot-blocked domains
Email Providers by derhuerst
Provides the same solution, with the advantage of having the option to use all 4k domains in the list, or the 312 common domains only. he defines common as follows:
Full Solution
I also stumbled upon a relevant issue that you might want to consider when you extract the domain.