Jonny5 Posted January 9, 2004 Share Posted January 9, 2004 Notify admins when a new user signs up. Is this possible and where would I need to change some of the code? Link to comment Share on other sites More sharing options...
John Doswell Posted January 11, 2004 Share Posted January 11, 2004 backup your catalog/create_account.php and search for $email_text .= EMAIL_WELCOME . EMAIL_TEXT . EMAIL_CONTACT . EMAIL_WARNING; tep_mail($name, $email_address, EMAIL_SUBJECT, $email_text, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); underneath paste // ########### JTC New Customer Notification $smemail_text .= NEW_CUSTOMER_NOTIFICATION_TEXT . ' The new customer name is ' . nl2br($name) . '.'; tep_mail(STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, NEW_CUSTOMER_NOTIFICATION_SUBJECT, nl2br($smemail_text), STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); // ########## end add then add in catalog/includes/languages/english.php define('NEW_CUSTOMER_NOTIFICATION_TEXT', 'New customer signed up'); define('NEW_CUSTOMER_NOTIFICATION_SUBJECT', 'New customer at STORENAME.'); by John Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.