gpt4 book ai didi

c# - SmtpClient 使用错误的凭据

转载 作者:行者123 更新时间:2023-11-30 16:05:19 25 4
gpt4 key购买 nike

我的 Smtpclient 正在使用以下设置

SmtpClient client = new SmtpClient();
client.Host = server;
client.UseDefaultCredentials = false;
client.Credentials = new NetworkCredential("username", "totallywrongpassword", "DOMAIN");

try
{
client.Send(message);
}
catch
{
// no exception is thrown, emails are send
}

我提供的凭据无效,但仍在发送电子邮件。

我哪里配置错了?

smtp 服务器和客户端在同一个本地域中。

最佳答案

很可能是您的 SMTP 服务器设置为允许本地网络发送它而无需凭据。您的代码完全正确,如果服务器仍然让您发送,我会先联系管理员。

关于c# - SmtpClient 使用错误的凭据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33829930/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com