电子邮件验证(不仅仅是正则表达式)

发布于 2024-10-10 22:25:21 字数 370 浏览 2 评论 0原文

我想验证完整的电子邮件地址。 我并不是要求使用特定的字符串进行匹配。

但假设有人输入电子邮件 ID [email protected] 那么首先 bnm 应该是已验证,如果找到这样的域,那么它还应该检查这样的[电子邮件受保护] 可用或无效。???

谁能告诉我我该怎么做?>?>

I want to validate complete Email address.
I am not asking to match using pericular string.

but suppose someone enter email id [email protected] then first the bnm should be validated and if such domain found then also it should check for such [email protected] is available or invalid.???

Can anyone tell me how can i do this?>?>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

从来不烧饼 2024-10-17 22:25:21

验证电子邮件地址和验证帐户是否确实存在是两件截然不同的事情。

一种方法(可能是唯一有效的方法)是在用户注册过程结束时,向提供的电子邮件地址发送一封“需要回复确认”的电子邮件(在检查格式正确后)。

正如 Greg Hewgill 指出的那样,如果在特定时间段(例如 7 天)内没有收到回复,您应该使注册过期。

Validating an email address and verifying the account actually exists are two very different things.

One way (and possibly the only effective way) to do this is at the end of the user registration process, send a 'reply required to confirm' email to the supplied email address (after checking the format is correct).

As Greg Hewgill noted, you should expire registrations that do not receive a reply in a certain time period, say 7 days.

陌上芳菲 2024-10-17 22:25:21

或者您可以使用一些电子邮件验证服务来验证它们是否存在。我为您找到了一个最佳编码实践,这是一项免费服务,并且有一些对它的限制。

如果您不喜欢它,您可以通过谷歌搜索其他电子邮件验证服务。

Or you could use some Email validation service for verifing if they exists. I have found one for you Best Coding Pratices, well this is a free service and has some limitations on it.

If you dont like it you can google for other email validation services.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文