Hello everyone, a quick question: does Parse Server provides scheduled email notification? For example: user can set email notification - like a reminder - where Parse Server will email user on a selected (by the user) date with user input message, ex: “please login into an app - there is something that needs your attention.”
Parse.Cloud.sendEmail({
from: "Excited User <[email protected]>",
to: user.get("email"),
subject: "You have tasks to complete",
text: `Hi ${user.get("firstName")}, you have tasks to complete.`,
})
There is a little bit of information around mail adapters on the Parse Server GitHub. The email provider you choose is up to you (price, availability, etc).