1. <small id='ZcLZF'></small><noframes id='ZcLZF'>

    2. <legend id='ZcLZF'><style id='ZcLZF'><dir id='ZcLZF'><q id='ZcLZF'></q></dir></style></legend>

        <i id='ZcLZF'><tr id='ZcLZF'><dt id='ZcLZF'><q id='ZcLZF'><span id='ZcLZF'><b id='ZcLZF'><form id='ZcLZF'><ins id='ZcLZF'></ins><ul id='ZcLZF'></ul><sub id='ZcLZF'></sub></form><legend id='ZcLZF'></legend><bdo id='ZcLZF'><pre id='ZcLZF'><center id='ZcLZF'></center></pre></bdo></b><th id='ZcLZF'></th></span></q></dt></tr></i><div id='ZcLZF'><tfoot id='ZcLZF'></tfoot><dl id='ZcLZF'><fieldset id='ZcLZF'></fieldset></dl></div>
        <tfoot id='ZcLZF'></tfoot>
          <bdo id='ZcLZF'></bdo><ul id='ZcLZF'></ul>
      1. 使用 localhost SMTP 发送邮件

        时间:2023-10-06

          <small id='JOPmO'></small><noframes id='JOPmO'>

          • <legend id='JOPmO'><style id='JOPmO'><dir id='JOPmO'><q id='JOPmO'></q></dir></style></legend>
            <i id='JOPmO'><tr id='JOPmO'><dt id='JOPmO'><q id='JOPmO'><span id='JOPmO'><b id='JOPmO'><form id='JOPmO'><ins id='JOPmO'></ins><ul id='JOPmO'></ul><sub id='JOPmO'></sub></form><legend id='JOPmO'></legend><bdo id='JOPmO'><pre id='JOPmO'><center id='JOPmO'></center></pre></bdo></b><th id='JOPmO'></th></span></q></dt></tr></i><div id='JOPmO'><tfoot id='JOPmO'></tfoot><dl id='JOPmO'><fieldset id='JOPmO'></fieldset></dl></div>
              <tbody id='JOPmO'></tbody>
                  <bdo id='JOPmO'></bdo><ul id='JOPmO'></ul>
                  <tfoot id='JOPmO'></tfoot>

                • 本文介绍了使用 localhost SMTP 发送邮件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在尝试在 IIS 上设置 SMTP 服务器以发送邮件.SMTP 服务器旨在供 C# 中的 ASP.NET 代码使用.

                  I am trying to setup SMTP server on IIS for sending mails. The SMTP server is intended to be used by the ASP.NET code in C#.

                  我之前使用的是 gmail smtp,其中我将 smtp.gmail.com 作为主机提供了安全端口和我的 gmail uid/pwd.那工作得很好.这是用于执行此操作的代码.

                  I was previously using gmail smtp wherein i provided the smtp.gmail.com as host with secure port and my gmail uid/pwd. That worked fine. Here is the code used to do that.

                  SmtpClient smtpClient = new SmtpClient();
                  smtpClient.UseDefaultCredentials = false;
                  smtpClient.Host = "smtp.gmail.com";
                  smtpClient.Port = 587;
                  smtpClient.Credentials = new NetworkCredential(uname,pwd);
                  smtpClient.EnableSsl = true;
                  smtpClient.Send(mailMessage);
                  

                  现在我计划在 IIS 上使用 localhost SMTP 服务器,我应该为参数 UseDefaultCredentials 和 Credentials 提供什么值.我将分配 false 给 EnableSsl,因为它通过端口 25.

                  Now i am planning to use the localhost SMTP server on IIS, what values should i be giving for the parameters UseDefaultCredentials and Credentials. I will be assigning false to EnableSsl as it's over port 25.

                  另外,最简单的 SMTP 虚拟服务器配置可能是什么.

                  Also, what could be the most simple SMTP virtual server configuration.

                  推荐答案

                  我认为在 localhost 中你可以使用:

                  I think in localhost you can use :

                  SmtpClient smtpClient = new SmtpClient();
                  smtpClient.UseDefaultCredentials = true;
                  smtpClient.Send(mailMessage);
                  

                  这篇关于使用 localhost SMTP 发送邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:如何检查邮件是否发送成功 下一篇:GMail + C# + Web.Config:以编程方式发送邮件,使用 Web.Config 值引发异常

                  相关文章

                  <legend id='Ur6w9'><style id='Ur6w9'><dir id='Ur6w9'><q id='Ur6w9'></q></dir></style></legend>

                    <tfoot id='Ur6w9'></tfoot>
                      <bdo id='Ur6w9'></bdo><ul id='Ur6w9'></ul>
                  1. <i id='Ur6w9'><tr id='Ur6w9'><dt id='Ur6w9'><q id='Ur6w9'><span id='Ur6w9'><b id='Ur6w9'><form id='Ur6w9'><ins id='Ur6w9'></ins><ul id='Ur6w9'></ul><sub id='Ur6w9'></sub></form><legend id='Ur6w9'></legend><bdo id='Ur6w9'><pre id='Ur6w9'><center id='Ur6w9'></center></pre></bdo></b><th id='Ur6w9'></th></span></q></dt></tr></i><div id='Ur6w9'><tfoot id='Ur6w9'></tfoot><dl id='Ur6w9'><fieldset id='Ur6w9'></fieldset></dl></div>

                    <small id='Ur6w9'></small><noframes id='Ur6w9'>