Each time a user enters a record in the database, I need a simple report of the record to be sent to a predefined email address.
Is this possible via a database trigger? Or do I need to use a plugin like SendGrid?
Each time a user enters a record in the database, I need a simple report of the record to be sent to a predefined email address.
Is this possible via a database trigger? Or do I need to use a plugin like SendGrid?
Hello!
1) We don't have database trigger, you would need to implement this app logic
2) Yes, you need to use SendGrid if want to send email
3) If for some reason it's not convenient to send email from app, you can do that using server code.