Using email id as Node name
Hi,
I have a form to grab email id and other info for registration and saving as nodes.
I just want an advice on how right or safe to use email id as Node name.
Thanks
Hi,
I have a form to grab email id and other info for registration and saving as nodes.
I just want an advice on how right or safe to use email id as Node name.
Thanks
Hi @hptarora
If your application requires any specific logic to create node based on certain name you can use that else you can generate node name using UUID:
UUID uuid = UUID.randomUUID();
String nodeName = uuid.toString();
Now all the form values can be stored as a node property in the node so it will be something like below:

Thanks!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.