workwiththomas/module-manage-customer-password
Magento 2 Customer Password, Reset Customer Password in Admin, Send Reset Password Email to Customers
If this project help you reduce time to develop, you can give me a cup of coffee :)
- Change customer password when edit/add customer in backend
- Bulk reset password for customers in admin grid
- Command line tool reset password and send emails to customers
- Logging customer password changes.
- Unzip the zip file in
app/code/Thomas
- Enable the module by running
php bin/magento module:enable Thomas_CustomerPassword
- Apply database updates by running
php bin/magento setup:upgrade --keep-generated
- Flush the cache by running
php bin/magento cache:flush
- Make the module available in a composer repository for example:
- private repository
repo.magento.com
- public repository
packagist.org
- public github repository as vcs
- private repository
- Add the composer repository to the configuration by running
composer config repositories.repo.magento.com composer https://repo.magento.com/
- Install the module composer by running
composer require workwiththomas/module-manage-customer-password
- enable the module by running
php bin/magento module:enable Thomas_CustomerPassword
- apply database updates by running
php bin/magento setup:upgrade --keep-generated
- Flush the cache by running
php bin/magento cache:flush
- Console command tools:
-
Send welcome with reset password emails:
- Run send emails to all customer per limit:
bin/magento thomas:customer-password:reset-password --limit=100
- Run send emails to special customer email address:
bin/magento thomas:customer-password:reset-password --emails="[email protected],[email protected]"