Member Signup handler

Hello,
Is there a way to execute some code when new User signs up on your site (on member profile creation) ?
I would like to be able to insert user e-mail (that new user just entered on SignUp) into separate database with additional fields I am using later on. Is it possible and how ?
Regards,
Vasil

Hi Vassil,

We don’t have an onSignUp event currently, but I did mentioned it to the team that is working on it and they will figure out a solution for your case.
In the meantime, you can add a callback to the onLogin event that will check if the user is already added to your collection. If it is - do nothing. If not - add it as you wish.

Documentation for onLogin:
https://www.wix.com/code/reference/wix-users.html#onLogin

Good luck!