“发送使用”配置值无效

发布于 2024-11-25 11:12:38 字数 732 浏览 0 评论 0原文

我使用 System.Web.Mail 在我的应用程序中使用以下代码发送电子邮件

System.Web.Mail.MailMessage message = new System.Web.Mail.MailMessage();
message.From = "[email protected]";
message.To = "[email protected]";
message.Subject = "TestMail";
message.Body = "Test Mail";
message.BodyFormat = MailFormat.Text;
SmtpMail.SmtpServer = "smtp.mail.yahoo.com";
System.Web.Mail.SmtpMail.Send(message);

它在我的系统中工作正常,但当我在另一个系统中运行相同的系统时,它在那里不起作用。它显示““SendUsing”配置值无效。”发生错误。我无法继续,请提出一些解决此问题的想法。提前致谢。

The following code i had used to send e-mail in my application,

using System.Web.Mail;

System.Web.Mail.MailMessage message = new System.Web.Mail.MailMessage();
message.From = "[email protected]";
message.To = "[email protected]";
message.Subject = "TestMail";
message.Body = "Test Mail";
message.BodyFormat = MailFormat.Text;
SmtpMail.SmtpServer = "smtp.mail.yahoo.com";
System.Web.Mail.SmtpMail.Send(message);

It's working properly in my system but when i run the same in another system it doesn't work there. It shows up with 'The "SendUsing" configuration value is invalid.' error occurs. I'm unable to proceed so kindly suggest some idea to solve this. Thanx in advance.

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

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

发布评论

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

评论(1

情绪失控 2024-12-02 11:12:38

检查“其他”计算机的 SMTP 服务器设置。如果此处仅提供代码,则问题很可能是 SMTP 服务器配置不正确。

问候。

Check SMTP server setup for "other" computer. If the only code is presented here, most probabbly the problem is in not correct SMTP serevr configuration.

Regards.

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