Mendix microflow

0
Suppose i got a a use-case where i have to create a registration page and after filling all information it will send a registration number in my email so how to create the microflow? Which of the activities i need to use to generate a registration number?
asked
1 answers
1

There are many ways to create unique registration number.

 

The simplest way is to keep the registration number attribute type as AutoNumber or you can decide your own logic for creating unique number (Eg. yyyyMM_<incremental number>)

 

Use email connector module (Email | Mendix Documentation) for sending email. Use placeholder to send the registration number in email.

answered