Hello all, I am thinking of using appwrite as my backend for an upcoming project. However I am unable to figure out how to send a notification to a user after a certa in event happens. Has anyone done this before? I am planning to develop an app using Flutter As far as I can tell, this should be done using cloud fuctions but im still unsure Thanks
Appwrite does not (yet) have any built in push notifications method. Cloud Functions is just a way for you to run your own code within Appwrite. So yes, you could build an integration with a push provider, and use a Function to send notifications
Thank you for confirming the approach. Are you aware of anu guides that can point me in the right direction?
Recommended threads
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...
- Project in AppWrite Cloud doesn't allow ...
I have a collection where the data can't be opened. When I check the functions, there are three instances of a function still running that can't be deleted. The...