C# 中的 SMTP Gmail 响应
在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
smtp 服务器不知道目标地址是否存在。如果地址未知,接收服务器会向您发回一条消息。
smtp servers dont know if an target address exists. the receiving server sends an message back to you, if the address is unknown.