asp.net 会员资格 - 自定义密码恢复
我想自定义 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以使用 Maildefinition 标记
创建一个如下所示的 recovery.txt 文件:
您的用户帐户的密码已成功检索。遵循您的登录凭据:
用户名:<%用户名%>
密码:<%密码%>
并将其添加到您的 webconfig 文件中的 configSections 标记之后
Gianluca Maggio Cavallaro
yes you can use Maildefinition tag
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
Gianluca Maggio Cavallaro