在 Sitecore 中设置电子邮件地址忘记的密码
我正在尝试将 Sitecore 配置为在 CMS 用户重置密码时从特定电子邮件地址发送电子邮件。
目前,电子邮件是从 [email protected] 发送的,但不在任何配置文件。
I am trying to configure Sitecore to send emails from a specific email address when a CMS user goes through to reset their password.
Currently the email is sent from [email protected] but it isn't in any of the config files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不会在配置文件中找到“发件人”电子邮件地址,因为它是硬编码的。
您可以通过转至
[website_root]/sitecore/login/passwordrecovery.aspx
并编辑第 39 行
上的MailDefinition.From
属性来手动更改此设置。编辑:
编辑该页面的代码隐藏并从配置文件中提取发件人地址可能是个好主意。
You won't find from email address in a config file because it is hard-coded.
You can change this manually by going to
[website_root]/sitecore/login/passwordrecovery.aspx
and editingMailDefinition.From
property online 39
.Edit:
Might be a good idea to edit codebehind for that page and pull sender address from a config file.