Enhancement: Convert password_forgotten email to Notification Module #111
blaine-cwe
started this conversation in
Ideas
Replies: 1 comment 1 reply
|
Please fork v1.1.0.7, make the changes, then submit a PR to the current dev branch (1.1.0.8) for testing. |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Explain the details for making this change. What existing problem does it solve?
Currently, the password_forgotten.php script uses a hardcoded email generation routine directly in the root file. This makes it impossible for shop owners to customize, heavily style, or convert the password reset email to HTML without modifying core files.
This proposal updates password_forgotten.php to route the reset email through the existing Notifications::notify() system. This brings the password reset architecture completely in line with the modern "Create Account" and "Order Update" modular notification systems.
Test plan (required)
All reactions