Event after create a admin user, magento 2Magento 2 - On save user insert to other table on databaseHow can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Create an admin user programmatically in Magento 2.0Magento 2.2.5: Overriding Admin Controller sales/orderI have created one field using product form field for my price i want save my field value at product creation time from backend magento2Create admin user in magento 2 using commmand lineMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2: Can't access admin panel after changing user account

Getting a similar picture (colours) on Manual Mode while using similar Auto Mode settings (T6 and 40D)

How does Ctrl+c and Ctrl+v work?

Were any toxic metals used in the International Space Station?

What would a Dragon have to exhale to cause rain?

Understanding Python syntax in lists vs series

1970s short story about a famous hunter who is cloned and will die after three days?

Should I communicate in my applications that I'm unemployed out of choice rather than because nobody will have me?

Do people who work at research institutes consider themselves "academics"?

Can I say: "When was your train leaving?" if the train leaves in the future?

Why commonly or frequently used fonts sizes are even numbers like 10px, 12px, 16px, 24px, or 32px?

Why is Drogon so much better in battle than Rhaegal and Viserion?

How did the horses get to space?

Why are lawsuits between the President and Congress not automatically sent to the Supreme Court

Can anyone give me examples of the relative-determinative 'which'?

Assembly writer vs compiler in VLIW architecture

Wireless headphones interfere with Wi-Fi signal on laptop

Single word that parallels "Recent" when discussing the near future

Could a space colony 1g from the sun work?

Why were the bells ignored in S8E5?

What kind of action are dodge and disengage?

Which creature is depicted in this Xanathar's Guide illustration of a war mage?

Is a "local" version of 3-SAT NP-hard?

Plucker relations in orthogonal Grassmannain

Given 0s on Assignments with suspected and dismissed cheating?



Event after create a admin user, magento 2


Magento 2 - On save user insert to other table on databaseHow can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Create an admin user programmatically in Magento 2.0Magento 2.2.5: Overriding Admin Controller sales/orderI have created one field using product form field for my price i want save my field value at product creation time from backend magento2Create admin user in magento 2 using commmand lineMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2: Can't access admin panel after changing user account






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















When i create a admin user in System/AllUser success, i need to get email from this account. Pls help me. I found this event but i dont know how to use.



<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">
<event name="controller_action_postdispatch_adminhtml_permissions_user_save">
<observer name="my_admin_user_save_after_observer" instance="MagenestKyAnhObserverAddAdminEvents" />
</event>
</config>


and file AddAdminEvents.php



public function execute(MagentoFrameworkEventObserver $observer)

$customer = $observer->getEvent()->getUser(); //get value
print_r($customer->getEmail());





how to get email of account created in here.










share|improve this question







New contributor



Kỳ Anh Vũ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.



















  • send admin user email ???

    – Rk Rathod
    May 10 at 18:36











  • Can you can talk more about this?

    – Kỳ Anh Vũ
    May 11 at 3:58











  • Check here magento.stackexchange.com/questions/274045/…

    – Sohel Rana
    May 11 at 5:38











  • Does your Observer called?

    – Dhiren Vasoya
    May 11 at 6:51











  • i cant call event admin_user_save_after

    – Kỳ Anh Vũ
    May 11 at 6:59

















1















When i create a admin user in System/AllUser success, i need to get email from this account. Pls help me. I found this event but i dont know how to use.



<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">
<event name="controller_action_postdispatch_adminhtml_permissions_user_save">
<observer name="my_admin_user_save_after_observer" instance="MagenestKyAnhObserverAddAdminEvents" />
</event>
</config>


and file AddAdminEvents.php



public function execute(MagentoFrameworkEventObserver $observer)

$customer = $observer->getEvent()->getUser(); //get value
print_r($customer->getEmail());





how to get email of account created in here.










share|improve this question







New contributor



Kỳ Anh Vũ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.



















  • send admin user email ???

    – Rk Rathod
    May 10 at 18:36











  • Can you can talk more about this?

    – Kỳ Anh Vũ
    May 11 at 3:58











  • Check here magento.stackexchange.com/questions/274045/…

    – Sohel Rana
    May 11 at 5:38











  • Does your Observer called?

    – Dhiren Vasoya
    May 11 at 6:51











  • i cant call event admin_user_save_after

    – Kỳ Anh Vũ
    May 11 at 6:59













1












1








1








When i create a admin user in System/AllUser success, i need to get email from this account. Pls help me. I found this event but i dont know how to use.



<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">
<event name="controller_action_postdispatch_adminhtml_permissions_user_save">
<observer name="my_admin_user_save_after_observer" instance="MagenestKyAnhObserverAddAdminEvents" />
</event>
</config>


and file AddAdminEvents.php



public function execute(MagentoFrameworkEventObserver $observer)

$customer = $observer->getEvent()->getUser(); //get value
print_r($customer->getEmail());





how to get email of account created in here.










share|improve this question







New contributor



Kỳ Anh Vũ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











When i create a admin user in System/AllUser success, i need to get email from this account. Pls help me. I found this event but i dont know how to use.



<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">
<event name="controller_action_postdispatch_adminhtml_permissions_user_save">
<observer name="my_admin_user_save_after_observer" instance="MagenestKyAnhObserverAddAdminEvents" />
</event>
</config>


and file AddAdminEvents.php



public function execute(MagentoFrameworkEventObserver $observer)

$customer = $observer->getEvent()->getUser(); //get value
print_r($customer->getEmail());





how to get email of account created in here.







magento2






share|improve this question







New contributor



Kỳ Anh Vũ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.










share|improve this question







New contributor



Kỳ Anh Vũ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








share|improve this question




share|improve this question






New contributor



Kỳ Anh Vũ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








asked May 10 at 17:52









Kỳ Anh VũKỳ Anh Vũ

132




132




New contributor



Kỳ Anh Vũ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




New contributor




Kỳ Anh Vũ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.














  • send admin user email ???

    – Rk Rathod
    May 10 at 18:36











  • Can you can talk more about this?

    – Kỳ Anh Vũ
    May 11 at 3:58











  • Check here magento.stackexchange.com/questions/274045/…

    – Sohel Rana
    May 11 at 5:38











  • Does your Observer called?

    – Dhiren Vasoya
    May 11 at 6:51











  • i cant call event admin_user_save_after

    – Kỳ Anh Vũ
    May 11 at 6:59

















  • send admin user email ???

    – Rk Rathod
    May 10 at 18:36











  • Can you can talk more about this?

    – Kỳ Anh Vũ
    May 11 at 3:58











  • Check here magento.stackexchange.com/questions/274045/…

    – Sohel Rana
    May 11 at 5:38











  • Does your Observer called?

    – Dhiren Vasoya
    May 11 at 6:51











  • i cant call event admin_user_save_after

    – Kỳ Anh Vũ
    May 11 at 6:59
















send admin user email ???

– Rk Rathod
May 10 at 18:36





send admin user email ???

– Rk Rathod
May 10 at 18:36













Can you can talk more about this?

– Kỳ Anh Vũ
May 11 at 3:58





Can you can talk more about this?

– Kỳ Anh Vũ
May 11 at 3:58













Check here magento.stackexchange.com/questions/274045/…

– Sohel Rana
May 11 at 5:38





Check here magento.stackexchange.com/questions/274045/…

– Sohel Rana
May 11 at 5:38













Does your Observer called?

– Dhiren Vasoya
May 11 at 6:51





Does your Observer called?

– Dhiren Vasoya
May 11 at 6:51













i cant call event admin_user_save_after

– Kỳ Anh Vũ
May 11 at 6:59





i cant call event admin_user_save_after

– Kỳ Anh Vũ
May 11 at 6:59










0






active

oldest

votes












Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);






Kỳ Anh Vũ is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f274210%2fevent-after-create-a-admin-user-magento-2%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes








Kỳ Anh Vũ is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















Kỳ Anh Vũ is a new contributor. Be nice, and check out our Code of Conduct.












Kỳ Anh Vũ is a new contributor. Be nice, and check out our Code of Conduct.











Kỳ Anh Vũ is a new contributor. Be nice, and check out our Code of Conduct.














Thanks for contributing an answer to Magento Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f274210%2fevent-after-create-a-admin-user-magento-2%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form