Add email address for new orders received magento

To add an email address for new orders received in Magento, you can follow these steps:

Method 1: Using System Configuration

  1. Log in to your Magento admin panel.
  2. Go to System > Configuration > Sales > Orders.
  3. Scroll down to the Order Options section.
  4. In the Order Email field, enter the email address you want to receive new order notifications at.
  5. Click Save Config.

Method 2: Using Order Settings

  1. Log in to your Magento admin panel.
  2. Go to Sales > Orders.
  3. Click on Order Settings.
  4. In the Order Email field, enter the email address you want to receive new order notifications at.
  5. Click Save.

Method 3: Using a Custom Module

If you want to add a custom email address for new orders received, you can create a custom module. Here's an example of how you can do it:

  1. Create a new file called local.xml in the app/etc directory of your Magento installation.

  2. Add the following code to the file:

    <?xml version="1.0"?>
    <config>
     <modules>
         <YourModule>
             <version>1.0.0</version>
         </YourModule>
     </modules>
     <global>
         <sales>
             <order>
                 <email>[email protected]</email>
             </order>
         </sales>
     </global>
    </config>

    Replace YourModule with the name of your custom module, and [email protected] with the email address you want to receive new order notifications at.

  3. Save the file and refresh your Magento cache.

After following these steps, you should receive new order notifications at the email address you specified.