asp.net 会员资格 - 自定义密码恢复

发布于 2024-08-14 21:14:54 字数 125 浏览 3 评论 0原文

我想自定义 asp:PasswordRecovery 控件。我正在使用 asp.net 会员资格来控制登录等。

如何更改发送新密码的电子邮件中的“发件人”电子邮件地址?

如何更改发送新密码的电子邮件内容?

I want to customize asp:PasswordRecovery control. I am using asp.net membership to control login etc.

How do I change "from" email-address on the email that sends the new password?

How do I change the content of the email that sends the new password?

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

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

发布评论

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

评论(1

桃扇骨 2024-08-21 21:14:54

是的,您可以使用 Maildefinition 标记

<MailDefinition   
 From="[email protected]"
 Subject="your subject"
 BodyFileName="~/_txt/Recovery.txt" ></MailDefinition>

创建一个如下所示的 recovery.txt 文件:

您的用户帐户的密码已成功检索。遵循您的登录凭据:
用户名:<%用户名%>
密码:<%密码%>

并将其添加到您的 webconfig 文件中的 configSections 标记之后

<system.net>
<mailSettings>
  <smtp>
    <network host="[email protected]" 
                 port="25" 
                 userName="your username" 
                 password="your password"/>
  </smtp>
</mailSettings></system.net>

Gianluca Maggio Cavallaro

yes you can use Maildefinition tag

<MailDefinition   
 From="[email protected]"
 Subject="your subject"
 BodyFileName="~/_txt/Recovery.txt" ></MailDefinition>

Create a recovery.txt file like this :

The password for your user account was retrieved successfully. Follows your credentials for logging-in:
UserName: <% UserName %>
Password: <% Password %>

and add this in your webconfig file after configSections tag

<system.net>
<mailSettings>
  <smtp>
    <network host="[email protected]" 
                 port="25" 
                 userName="your username" 
                 password="your password"/>
  </smtp>
</mailSettings></system.net>

Gianluca Maggio Cavallaro

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