Categories: How ToMagento 2

How to Send Email to Admin After Customer Registration in Magento 2

Customer retention is fundamental for any Ecommerce operation and website registration is a great way to accommodate needs of repeat customers and building long term relationships. Magento sends registration Email to customers when they sign up or register. But what about admin or store owner? It doesn’t notify admin for new registration and thus store owner stays uninformed about this key event or he has to check the admin panel frequently which wastes time. Today we have come up with custom code to send Email to admin after customer registration in Magento 2.

Sending Email notification to admin after customer registration simply requires to create an event & observer to serve your need.

Let’s see the steps to send Email to admin after customer registration in Magento 2

Create events.xml file in \app\code\Namespace_Modulename\etc\frontend\ and add following code. Here, we need to define an event for Send mail after customer registration.



    
        
    

Create SendMailToAdmin.php file in \app\code\Namespace_Modulename\Observer\. This observer class is used to send mail after customer is registered successfully.

<?php namespace Namespace_Modulename\Custom\Observer; use Magento\Framework\Event\ObserverInterface; class SendMailToAdmin implements ObserverInterface { const XML_PATH_EMAIL_RECIPIENT = 'trans_email/ident_general/email'; protected $_transportBuilder; protected $inlineTranslation; protected $scopeConfig; protected $storeManager; protected $_escaper; public function __construct( \Magento\Framework\Mail\Template\TransportBuilder $transportBuilder, \Magento\Framework\Translate\Inline\StateInterface $inlineTranslation, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\Escaper $escaper ) { $this->_transportBuilder = $transportBuilder;
  $this->inlineTranslation = $inlineTranslation;
  $this->scopeConfig = $scopeConfig;
  $this->storeManager = $storeManager;
  $this->_escaper = $escaper;
 }
 
    public function execute(\Magento\Framework\Event\Observer $observer)
    {
  
  
  $customer = $observer->getData('customer');
  
  $this->inlineTranslation->suspend();
  try 
  {
   $error = false;
   
   $sender = [
    'name' => $this->_escaper->escapeHtml($customer->getFirstName()),
    'email' => $this->_escaper->escapeHtml($customer->getEmail()),
   ];
   $postObject = new \Magento\Framework\DataObject();
   $postObject->setData($sender);
   $storeScope = \Magento\Store\Model\ScopeInterface::SCOPE_STORE; 
   $transport = 
    $this->_transportBuilder
    ->setTemplateIdentifier('1') // Send the ID of Email template which is created in Admin panel
    ->setTemplateOptions(
     ['area' => \Magento\Framework\App\Area::AREA_FRONTEND, // using frontend area to get the template file
     'store' => \Magento\Store\Model\Store::DEFAULT_STORE_ID,]
    )
    ->setTemplateVars(['data' => $postObject])
    ->setFrom($sender)
    ->addTo($this->scopeConfig->getValue(self::XML_PATH_EMAIL_RECIPIENT, $storeScope))
    ->getTransport();
   $transport->sendMessage(); ;
   $this->inlineTranslation->resume();
   
   
  } 
  catch (\Exception $e) 
  {
   \Magento\Framework\App\ObjectManager::getInstance()->get('Psr\Log\LoggerInterface')->debug($e->getMessage());
  }
 
 }
 
}

Creating custom code to send Email notification to admin after customer registration is not a tough cookie to crack. You need to simply follow the steps above and you are done. Let me know if you stuck somewhere or have any queries through commenting, I would be glad to help you!

Click to rate this post!
[Total: 20 Average: 3.8]
Dhiren Vasoya

Dhiren Vasoya is a Director and Co-founder at MageComp, Passionate 🎖️ Certified Magento Developer👨‍💻. He has more than 9 years of experience in Magento Development and completed 850+ projects to solve the most important E-commerce challenges. He is fond❤️ of coding and if he is not busy developing then you can find him at the cricket ground, hitting boundaries.🏏

View Comments

  • Hello,
    I used your code to send the registration e-mail to admin.
    The e-mail is sent without any error, but in luma theme- is it possible to change it to my custom theme (the luma logo is only shown in the e-mail to admin).

    Where can i define the admin e-mail address, addressed by your code?
    I don´t want the e-mail to be sent to the same address as the automatic generated invoice e-mails.

    Kind regards
    MMM

  • I created the module and installed it... Also created the email template. But I didn't get the email. I registered an new account and got the regular welcome email. But I didn't get the additional email.
    How do I trouble shot the code?
    Kevin

    • Confirm your extension is installed and enabled and you have implemented the code properly also check that your code is executing.

  • I created the module and installed it... Also created the email template. But I didn't get the email. I registered an new account and got the regular welcome email. But I didn't get the additional email.
    How do I trouble shot the code?
    Kevin

  • Hello,

    I've done as you mentioned above, but it seems not to be working.
    please advise would be appreciated,
    regards

    • Can you please tell us if you are facing any error?
      Please confirm your other emails are working fine, like registration and order confirmation.

      • Hi,

        thank you for responding,
        yes the emails are working correct and I'm not facing any errors.

        regards

  • Hello,

    I've done as you mentioned above, but it seems not to be working.
    please advise would be appreciated,
    regards

    • Can you please tell us if you are facing any error?
      Please confirm your other emails are working fine, like registration and order confirmation.

      • Hi,

        thank you for responding,
        yes the emails are working correct and I'm not facing any errors.

        regards

    • it's an event not a module. you don't need to activate it from the terminal.
      did it work with you?

Recent Posts

How to Integrate ChatGPT with Laravel Application?

In this guide, we'll explore how to integrate ChatGPT, an AI-powered chatbot, with a Laravel…

2 days ago

What are Net Sales? How to Calculate Your Net Sales?

In the world of business, understanding financial metrics is crucial for making informed decisions and…

5 days ago

Magento 2 Extensions Digest April 2024 (New Release & Updates)

Welcome to the MageComp Monthly Digest, where we bring you the latest updates, releases, and…

5 days ago

The ABCs of Geofencing: Definition, Features and Uses

In this era, businesses are always on the lookout for ways to engage with their…

5 days ago

How to Delete Product Variant in a Shopify Remix App using GraphQL Mutations?

Managing a Shopify store efficiently involves keeping your product catalog organized. This includes removing outdated…

6 days ago

6 Innovative Tools Revolutionizing E-Commerce Operations

E-commerce has transformed the way consumers shop for products and services and interact with businesses.…

1 week ago