How can I create an Action that will send an email to the Admin users when the user hits a specific button?
Asked
Active
Viewed 44 times
2
-
did you see this video that explains the use of backand actions? https://www.youtube.com/watch?v=CEsndv0Lmaw In general what you need to do is create on demand action that will process after the button is clicked. Either, it's a CRUD operation, you can create a trigger-based action. (After Create, for example) – Daniel Naim Apr 19 '16 at 12:01
1 Answers
1
You can send the email with two options:
- After an event of Create or Update of an object
- By calling server side code which called on-demand action
In the first method, it assuming the button creates a new row in an object, in this case add After Create event and send the email to the Admin
In the second method, there is no object, so you make REST API call to invoke the server side action which will send the email.

Itay
- 734
- 4
- 5