workwiththomas / module-manage-customer-password
Magento 2 send welcome and reset password emails to all customers program
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 0
Open Issues: 0
Type:magento2-module
This package is auto-updated.
Last update: 2025-07-05 04:31:35 UTC
README
workwiththomas/module-manage-customer-password
Magento 2 Customer Password, Reset Customer Password in Admin, Send Reset Password Email to Customers
Donation
If this project help you reduce time to develop, you can give me a cup of coffee :)
Main Functionalities
- 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.
Installation
Type 1: Zip file
- 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
Type 2: Composer
- 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
Configuration
Specifications
Attributes
How to work
- 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="customer1@gmail.com,customer2@gmail.com"