Send email when Appwrite database gets update

648 Views Asked by At

How to trigger notification on Appwrite when a record is added to my database? The same function exists in Firebase, but in the paied plan .

1

There are 1 best solutions below

0
On

Appwrite doesn't include a notification service but you can make use of Firebase Cloud Messagaging for to send your push notifications.

As for how to trigger the notification, the best way is to create an Appwrite Function that triggers on document create. The function can use Firebase Cloud Messaging to send the push notification.