Send Notification

0
Hi, I am building a application for the purchase of various orders. So when the order is placed it is assigned to a person who is responsible for the order. That product delivery has a deadline. So when less than or equal to 30 days are left for the delivery of that product i want that the person assigned to that order must automatically receive a notification on his mobile and email that time for the delivery of that product is less than or equal to 30 days so please complete order fast. But i am not able to do that. So please if anyone can tell me how to send notification to that person on his Mobile and Email automatically. The notification should be sent automatically to him when 30 days are left. What can be the procedure for it.
asked
1 answers
3

Well to send an email you can use the email module: https://appstore.home.mendix.com/link/app/2461/

For mobile it depends on what you want to do, you could send push notifications: https://appstore.home.mendix.com/link/app/3003/ or you could send a text message with Nexmo for example: https://appstore.home.mendix.com/link/app/2168/ 

In order to send the message when there are 30 days left you could use a scheduled event and check this: https://docs.mendix.com/refguide/scheduled-events#1-introduction 

answered