我的情况:我有 3 个网站,名为:websiteA websiteB websiteC all in a Magento installs。客户数据在全局视图中共享。当客户(在网站 A 上注册)请求在网站 B 上重置密码时,他们将收到一封密码重置电子邮件,该电子邮件会将他们定向到网站 A 以重置密码。我不想要那个。我希望客户收到一封将他们定向到网站 B 的密码重置电子邮件。
我在密码重置电子邮件中找到的代码:
<a href="{{store url="customer/account/resetpassword/" _query_id=$customer.id _query_token=$customer.rp_token}}">{{store url="customer/account/resetpassword/" _query_id=$customer.id _query_token=$customer.rp_token}}</a>
如何修改此代码以不使用 {{store url=}},但仍捕获客户 ID 和令牌信息?