How to add email Functionality in Employee portal?

0
i have send a mail to employee after 6 month and after 1 year.  example: congratulation you have completed 6 month .
asked
2 answers
0
  1. Implement an e-mail module such as the E-mail module with Templates.
  2. Create a scheduled event that runs every day
  3. In the scheduled event, retrieve all employees whose employment date is a longer time ago than your required time (e.g. 6 months) and who have not received that e-mail yet
  4. For each of those employees, send an e-mail
answered
0

You can make use of the following document:

https://docs.mendix.com/appstore/modules/email-with-templates

answered