New Order Notification for Admin

Help for integrating the Laravel package
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
FionLeo1804
Posts: 3
Joined: 04 Jun 2018, 08:25

New Order Notification for Admin

Post by FionLeo1804 » 05 Dec 2018, 03:28

Hi,

Currently, I have setup in shop.php to sent email and receive email notification for both buyers and admins.
However, admin did not received any notification regarding there's new order in.
Here is my shop.php:

Code: Select all

'client' => [
		'html' => [
			'basket' => [
				'cache' => [
					// 'enable' => false, // Disable basket content caching
				],
			],
            'common' => [
                'content' => [
                    'baseurl' => '/',
                ],
                'template' => [
                    'baseurl' => 'packages/aimeos/shop/themes/elegance',
                ],
            ],
            'email' => array(
                'from-email'    => 'admin@email.com',
                'from-name'     => 'Admin Name',
                'reply-email'   => 'admin@email.com',
                'bcc-email'     => 'admin@email.com',
            ),
		],
	],
I have setup the cronjob in my server based on the documentation: https://aimeos.org/docs/Laravel/Configu ... figuration

Please help which steps I have missed out.
Much appreciate for the helps!

User avatar
aimeos
Administrator
Posts: 7881
Joined: 01 Jan 1970, 00:00

Re: New Order Notification for Admin

Post by aimeos » 05 Dec 2018, 21:49

The configuration is OK and the the code adds the BCC e-mail here: https://github.com/aimeos/ai-client-htm ... d.php#L279

Maybe the e-mail server doesn't send the e-mail to the same address as used in the "From" field.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

Post Reply