docs: revise architectural modules documentation

This commit is contained in:
Shahed Nasser
2024-12-11 12:36:16 +02:00
parent fd77809158
commit 9acd0f72a6
6 changed files with 196 additions and 21 deletions
@@ -6,15 +6,13 @@ export const metadata = {
# {metadata.title}
A Notification Module exposes the functionalities to send a notification to a customer or user. For example, sending an order confirmation email.
## What is a Notification Module Provider?
The Notification Module exposes the functionalities to send a notification to a customer or user. For example, sending an order confirmation email.
You can resolve the Notification Module and send notifications in API routes, subscribers, or other resources.
---
## What is a Notification Module Provider?
A notification module provider implements the logic of sending the notification. It either integrates a third-party service or uses custom logic to send the notification.
A notification module provider implements the underlying logic of sending notification. It either integrates a third-party service or uses custom logic to send the notification.
By default, Medusa uses the Local Notification Module which only simulates sending the notification by logging a message in the terminal.