>>
In Magento 2, customers can log in from the website’s frontend by themselves by using username and password, and the admin can also handle customers from the backend manually.
But, when you are required to login customer, but you don’t have password, or you want to login any customer by only email then you can use this method.
To login any customer without password Programmatically, you have to use below block of code in your controller file as below :
Here, we have used Magento\Customer\Model\CustomerFactory instance and created it’s object($customerFactory) then used Magento\Customer\Model\Session instance and created it’s object($customerSession) and in last we have used Magento\Store\Model\StoreManagerInterface and created it’s object($storeManager).
<?php |
When you call above controller then the customer who has email id ‘roni_cost@example.com’ he will be logged in your website without giving password programmatically. In this way, we can login any customer to our website by just having customer’s email id by programmatically.
We hope above blog helps you to clearly understand how to login customer programmatically without password in Magento 2. In case of any kind of problem with the above code implementation, you can contact us or let us know in comment section.
Sign In
Create New Account