C# 中的 SMTP Gmail 响应

发布于 2024-11-19 12:49:21 字数 252 浏览 1 评论 0原文

在使用 Gmail 作为 SMTP 邮件服务时,如果我向不存在的电子邮件发送邮件,是否会出现任何异常?

 try
 {
    smtpserver.Send(MailMessage);
 }
 catch (SmtpFailedRecipientException ex)
 {
    // when does this exception occur?
 }

如果邮件尚未发送到不存在的电子邮件,我需要捕获什么异常?

in using Gmail as SMTP mailing service, do i get any exception if i send a message to an email that doesn't exists?

 try
 {
    smtpserver.Send(MailMessage);
 }
 catch (SmtpFailedRecipientException ex)
 {
    // when does this exception occur?
 }

what exception do i need to catch if the mail has not been sent to an email that doesn't exist?

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

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

发布评论

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

评论(1

停顿的约定 2024-11-26 12:49:21

smtp 服务器不知道目标地址是否存在。如果地址未知,接收服务器会向您发回一条消息。

smtp servers dont know if an target address exists. the receiving server sends an message back to you, if the address is unknown.

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