From 69834f0bc81c360567a90c2cb4308cc36217ee18 Mon Sep 17 00:00:00 2001 From: mhbdev Date: Wed, 28 Jan 2026 19:43:52 +0330 Subject: [PATCH] docs: Add new documentation for notifications, including an overview and a dedicated guide for Resend. --- .../docs/core/(Notifications)/meta.json | 1 + .../docs/core/(Notifications)/overview.mdx | 7 ++--- .../docs/core/(Notifications)/resend.mdx | 27 +++++++++++++++++++ 3 files changed, 32 insertions(+), 3 deletions(-) create mode 100644 apps/docs/content/docs/core/(Notifications)/resend.mdx diff --git a/apps/docs/content/docs/core/(Notifications)/meta.json b/apps/docs/content/docs/core/(Notifications)/meta.json index 4c8db4f..5f330c8 100644 --- a/apps/docs/content/docs/core/(Notifications)/meta.json +++ b/apps/docs/content/docs/core/(Notifications)/meta.json @@ -7,6 +7,7 @@ "discord", "lark", "email", + "resend", "gotify", "ntfy", "webhook" diff --git a/apps/docs/content/docs/core/(Notifications)/overview.mdx b/apps/docs/content/docs/core/(Notifications)/overview.mdx index df95094..9961520 100644 --- a/apps/docs/content/docs/core/(Notifications)/overview.mdx +++ b/apps/docs/content/docs/core/(Notifications)/overview.mdx @@ -27,7 +27,8 @@ Dokploy supports the following notification providers: 3. **Discord**: Discord is generally used for communication between users in a chat or voice channel. 4. **Lark**: Lark is a collaboration platform that provides messaging and team communication features. 5. **Email**: Email is a popular method for sending messages to a group of recipients. -6. **Gotify**: Gotify is a self-hosted push notification service. -7. **Ntfy**: Ntfy is a simple HTTP-based pub-sub notification service. -8. **Webhook**: Webhook is a generic webhook notification service. +6. **Resend**: Resend is a modern email API for developers to send transactional emails. +7. **Gotify**: Gotify is a self-hosted push notification service. +8. **Ntfy**: Ntfy is a simple HTTP-based pub-sub notification service. +9. **Webhook**: Webhook is a generic webhook notification service. diff --git a/apps/docs/content/docs/core/(Notifications)/resend.mdx b/apps/docs/content/docs/core/(Notifications)/resend.mdx new file mode 100644 index 0000000..770bd77 --- /dev/null +++ b/apps/docs/content/docs/core/(Notifications)/resend.mdx @@ -0,0 +1,27 @@ +--- +title: Resend +description: 'Configure Resend notifications for your applications.' +--- + +Resend notifications are a great way to stay up to date with important events in your Dokploy panel. You can choose to receive notifications for specific events or all events. + +## Resend Notifications + +For start receiving Resend notifications, you need to fill the form with the following details: + +- **Name**: Enter any name you want. +- **API Key**: Enter your Resend API key. +- **From Address**: Enter the email address that will be used as the sender. This must be from a verified domain in your Resend account. +- **To Address**: Enter the email address(es) that will receive the notifications. You can add multiple addresses. + +To Setup Resend notifications, follow these steps: + +1. Go to [Resend](https://resend.com) and create an account if you don't have one. +2. Navigate to [API Keys](https://resend.com/api-keys) and create a new API key. +3. Add and verify your domain at [Domains](https://resend.com/domains) to be able to send emails from your own domain. +4. Go to Dokploy `Notifications` and select `Resend` as the notification provider. +5. Enter your API key, from address (using your verified domain), and recipient email addresses. +6. Click on `Test` to make sure everything is working. +7. Click on `Create` to save the notification. + +For more information, you can read the [Resend Documentation](https://resend.com/docs).