ASP.Net 邮件发送问题

发布于 2024-11-26 03:34:27 字数 597 浏览 1 评论 0原文

我想通过 ASP.Net 发送邮件。但是,这给了我“SendUsing”错误。

代码:

<%
string strKime = "[email protected]";
string strKimden = "[email protected]";
string strKonu = "ASP.net mail gönderme işlemi";
string strMetin = "Bu sayfa asp.net mail komponenti     tarafından gönderildi";
System.Web.Mail.SmtpMail.Send(strKimden, strKime, strKonu, strMetin);

%> 

I want to send a mail with through ASP.Net.But,that's gives me "SendUsing" error.

Code:

<%
string strKime = "[email protected]";
string strKimden = "[email protected]";
string strKonu = "ASP.net mail gönderme işlemi";
string strMetin = "Bu sayfa asp.net mail komponenti     tarafından gönderildi";
System.Web.Mail.SmtpMail.Send(strKimden, strKime, strKonu, strMetin);

%> 

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

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

发布评论

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

评论(3

知你几分 2024-12-03 03:34:27

也许 SMTP 服务器配置不正确?建议我们在调用 System.Web.Mail 组件或 CDO 时始终指定明确的 smtp 服务器名称。

不确定您是否直接在标记中使用它。理想情况下,您应该有一个通用代码来发送带有所需参数的电子邮件。查看其他答案之一中的链接。

Perhaps, SMTP Server is not configured correctly? it is recommended that we always specify the definite smtpserver names for when calling the System.Web.Mail components or CDO.

Not sure if you are using this directly in the markup. Ideally, you should have a common code that sends emails taking the required parameters. Check out the link in one of the other answers.

故人的歌 2024-12-03 03:34:27

您是否在 web.config 文件中添加了 SMTP 设置?

<system.net>
<mailSettings>
  <smtp>
    <network 
         host="ServerHostname" 
         port="portNumber"
         userName="username"
         password="password" />
  </smtp>
</mailSettings>

电子邮件发送需要 SMTP 设置。

Did you add the SMTP settings in the web.config file?

<system.net>
<mailSettings>
  <smtp>
    <network 
         host="ServerHostname" 
         port="portNumber"
         userName="username"
         password="password" />
  </smtp>
</mailSettings>

Email sending requires SMTP settings.

愛放△進行李 2024-12-03 03:34:27

您必须将 SmtpClient Host 属性设置为“mail.hot.com”或外发邮件服务器的 IP。

You have to set the SmtpClient Host property to the "mail.hot.com" or the ip of your outgoing mail server.

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