Email Notifications Of New Users

Hi guys,

We have a pretty old cs-cart version - 2.2.1 PROFESSIONAL

For email marketing purposes we would like to setup an email notification about every new user registration. So that we receive an email when user creates an acount or enters his data at step 2 on checkout.

Please lmk if that is possible and how to do this.

Thanks a lot!

It would require either a smaill addon or to extend your my_changes addon to support an "update" to a user's profile and provide the appropriate logic to determine if it's a new account or truly an update. Then, if new, to send an email.

There are several pieces, none of which are complicated for an experienced developer.

Actually, the customer is created after the first checkout step is completed. Do you need to receive customer address for marketing purposes?

Actually, the customer is created after the first checkout step is completed. Do you need to receive customer address for marketing purposes?

yes, but to do it automatically (like to send notification to some email we set up). Thanks

In this case I suggest you to use hooks in the fn_update_user (app/functions/fn.users.php) function to check if it called from checkout and customer address was updated.