How does sending email from the Appwrite Server SDK work in the Free plan?
- 0
- Functions
- Messaging
- Cloud
I noticed that the pricing page mentions “Messages – 1000 per month” for the Free plan. Is this different from sending emails?
When I try to send an email using the Server SDK, I get the following error:
No enabled provider found.
In the Free plan, do I need to configure our own email provider, or does Appwrite provide a default email service for sending emails?
Please see attached images for reference. Thanks in advance🙏 .
My dart function code:
Messaging messaging = Messaging(awClient);
Future resultFuture = messaging.createEmail(
messageId: ID.unique(),
subject: 'Appwrite Event1: Invalid Firmware File Uploaded',
content:
'Invalid firmware file uploaded: ${file.name} with mimeType: ${file.mimeType}',
users: ["6837689e39d020b04962"],
);
try {
// wait for email to be sent
await resultFuture;
} catch (e) {
context.log(
"❌ Failed to send email notification for invalid firmware file: $e");
}
Recommended threads
- I reached my budget limit how?
Hi, I got a message saying I reached my budget limit already? Makes no sense? In 4 days I reached 3.4M reads in a project how with only 100 users? This is my pr...
- Console down yet again ?
Seeing it stuck on the "loading" screen yet again ... second time today. (last time 10+ hours ago). 'roles' and 'plan' requests just hung. Meanwhile, appwrit...
- Function Building show 500 Error
Region: sfo Temple: Starter Function Runtime: Nodejs 22 What happened? Before 2 minutes it show ‘server error.","code":500,"version":"0.7.24"}’ after it show c...