检查电子邮件凭据是否存在
有很多问题询问 smtp 服务器是否像 测试 SMTP 服务器是否通过 C# 运行 和 我可以测试吗SmtpClient 在调用 client.Send()? 之前,它们通过向 smtp 服务器发送命令来进行检查。他们从不使用任何凭据进行测试。所以我想知道是否有一种方法可以在不发送邮件的情况下检查这些登录名和密码在此 smtp 服务器上是否有效?
There are dozen of questions asking is smtp server working like Testing SMTP server is running via C# and Can I test SmtpClient before calling client.Send()? and they do they work of checking by sending commands to smtp servers. They never use any credentials for testing purposes. So I'm wondering is there a way to check are these login and password valid on this smtp-server without sending a mail?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当我处理这个问题时,我最关心的是找到一种解决方案,让我不必发送电子邮件来检查凭据是否有效。因此,在尝试了一系列在线提供的解决方案之后,我想出了自己可以接受的解决方案来测试电子邮件凭据:
我使用MailKit 来帮助我。
My big concern when I was working on this issue is to find a solution where I do not have to send email to check if the credentials are valid or not. So after trying a bunch of the solutions offered online, I came up with my own acceptable one to test email credentials :
I use MailKit to help me out.
SMTP 不允许您在不发送电子邮件的情况下登录。
看一下下面的内容:
如何验证 smtp 凭据发送邮件之前?
SMTP doesn't allow you login without sending an email.
have a look at the below:
How to validate smtp credentials before sending mail?