Documentation
Project Links
INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) VALUES ('Send Email to Store Owner when new account opened', 'EMAIL_NEW_ACCOUNT', 'true', 'Send an email message to the store owner when new account is opened.', '12', '10', 'tep_cfg_select_option(array(\'true\', \'false\'), ', now());
Find:
tep_mail($name, $email_address, EMAIL_SUBJECT, $email_text, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);
Add After it:
if (EMAIL_NEW_ACCOUNT =='true') {
tep_mail(STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, ADMIN_EMAIL_SUBJECT, ADMIN_EMAIL_CONTENT, $name, $email_address);
}
STEP 3: Open catalog/includes/languages/english/create_account.php
Add before the ?> at the end
define('ADMIN_EMAIL_SUBJECT', 'A customers has created a new account');
define('ADMIN_EMAIL_CONTENT', 'This is an automated message from ' . STORE_NAME . '. A customer has created a new account');