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;
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
New contributor
add a comment |
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
New contributor
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
add a comment |
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
New contributor
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
magento2
New contributor
New contributor
New contributor
asked May 10 at 17:52
Kỳ Anh VũKỳ Anh Vũ
132
132
New contributor
New contributor
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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.
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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