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
- Log in to your Magento admin panel.
- Go to System > Configuration > Sales > Orders.
- Scroll down to the Order Options section.
- In the Order Email field, enter the email address you want to receive new order notifications at.
- Click Save Config.
Method 2: Using Order Settings
- Log in to your Magento admin panel.
- Go to Sales > Orders.
- Click on Order Settings.
- In the Order Email field, enter the email address you want to receive new order notifications at.
- 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:
-
Create a new file called
local.xml
in theapp/etc
directory of your Magento installation. -
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. -
Save the file and refresh your Magento cache.
After following these steps, you should receive new order notifications at the email address you specified.