How to send email at registration time

0
We have registration page anonymous user can register itself but password and user id send user email user email fill on registeration page i have also done add module email connector and encryption and mx module but how can I send user id(user email) and password (random)through email on the Click on registered button 
asked
1 answers
0

Hi Shubham, 

 

we can easily achieve it as Abdul commented, 

You have an anonymous registration page where the user will register himself with the help of his user id ( with the help of his email ID). With a click of the register button, we can pass the email ID entered in the field to the microflow connected to the register button and generate a random password with the help of Java action from the community commons module. we can have both email id and password being passed as a placeholders to the email and send the email to user

Refer the below blog to send email with placeholders 

https://medium.com/mendix/how-to-send-styled-html-emails-using-email-module-with-templates-and-mxmodel-reflection-mendix-3d80d18019b9

 

answered