skip to Main Content

Print the data of customer after registration in magento 2

I want to print the customer data after registration in magento 2. I have done following code. In appcodeCloudwaysNewmoduleetcevents.xml I have written following code <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../lib/internal/Magento/Framework/App/etc/events.xsd"> <event name="customer_register_success"> <observer name="customer_register_success_observer" instance="CloudwaysNewmoduleObserverCustomerRegister" /> </event> </config> and in appcodeClowdwaysNewmoduleObserverCustomerRegister.php…

VIEW QUESTION
Back To Top
Search