发送新密码 - Asp.net - 使用 gmail (smtp.gmail.com)

发布于 2024-08-31 06:17:00 字数 236 浏览 4 评论 0原文

我已经浏览了所有帮助和所有论坛,但没有一个对我有帮助。这是我的问题

  1. 使用 ASP.NET 3.5 在本地主机上开发网站
  2. 我想使用 提供“忘记密码”功能
  3. 非常感谢任何真正的帮助。请注意,我想通过更改 web.config 或以编程方式发送它。

谢谢

I've gone through all helps and all forums., but none of them have helped me. Here is my problem

  1. Developing a site on localhost using ASP.NET 3.5
  2. I want to provide 'forgot password' functionality using <asp:PasswordRecovery>
  3. Any real help is greatly appreciated. Please note that I want to send it by either changing web.config OR programatically.

Thanks

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

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

发布评论

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

评论(2

活泼老夫 2024-09-07 06:17:00

MSDN 上有一篇文章解释了如何使用 PasswordRecovery 控件。

还有一个线程专门介绍如何使用 GMail 与控件。

我相信最好的方法是使用 SendingMail 事件方法并发送您自己的电子邮件,从而在该方法内设置 MailMessage 对象和 SmtpClient 对象。然后,设置取消 属性设置为true,这样其他邮件就不会被发送。

不过我自己还没有尝试过。如果您需要更具体的帮助,请说明您已尝试过的操作以及为什么不起作用。

There is an article on MSDN explaining how to use the PasswordRecovery control.

There is also a thread specifically regarding using GMail with the control.

I believe that the best way is to use the SendingMail event method and send your own email, thus setting the MailMessage object and the SmtpClient object within the method. Then, set the Cancel property to true, so that the other email won't be sent.

I have not tried it myself though. If you want more specific help, show what you have tried and why it doesn't work.

迎风吟唱 2024-09-07 06:17:00

您可以通过 Web 配置设置 smtp:

<system.net>
        <mailSettings>
            <smtp deliveryMethod="Network" from="[email protected]">
                <network defaultCredentials="true" host="localhost" port="25" userName="kaushal" password="testPassword"/>
            </smtp>
        </mailSettings>
    </system.net>

You can set smtp via web config:

<system.net>
        <mailSettings>
            <smtp deliveryMethod="Network" from="[email protected]">
                <network defaultCredentials="true" host="localhost" port="25" userName="kaushal" password="testPassword"/>
            </smtp>
        </mailSettings>
    </system.net>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文