* docs improvements and changes * updated module definition * modules + dml changes * fix build * fix vale error * fix lint errors * fixes to stripe docs * fix condition * fix condition * fix module defintion * fix checkout * disable UI action * change oas preview action * flatten provider module options * fix lint errors * add module link docs * pr comments fixes * fix vale error * change node engine version * links -> linkable * add note about database name * small fixes * link fixes * fix response code in api reference * added migrations step
174 lines
4.8 KiB
Plaintext
174 lines
4.8 KiB
Plaintext
import { Table } from "docs-ui"
|
|
|
|
export const metadata = {
|
|
title: `SendGrid Notification Module Provider`,
|
|
}
|
|
|
|
# {metadata.title}
|
|
|
|
The SendGrid Notification Module Provider integrates [SendGrid](https://sendgrid.com) to send emails to users and customers.
|
|
|
|
---
|
|
|
|
## Install the SendGrid Notification Module
|
|
|
|
<Note type="check">
|
|
|
|
- [SendGrid account](https://signup.sendgrid.com)
|
|
- [Setup SendGrid single sender](https://docs.sendgrid.com/ui/sending-email/sender-verification)
|
|
- [SendGrid API Key](https://docs.sendgrid.com/ui/account-and-settings/api-keys)
|
|
|
|
</Note>
|
|
|
|
To install the SendGrid Notification Module Provider, run the following command in the directory of your Medusa application:
|
|
|
|
```bash npm2yarn
|
|
npm install @medusajs/notification-sendgrid
|
|
```
|
|
|
|
Next, add the module into the `providers` array of the Notification Module:
|
|
|
|
<Note>
|
|
|
|
Only one provider can be defined for a channel.
|
|
|
|
</Note>
|
|
|
|
```js title="medusa-config.js"
|
|
import { Modules } from "@medusajs/utils"
|
|
|
|
// ...
|
|
|
|
module.exports = defineConfig({
|
|
// ...
|
|
modules: {
|
|
[Modules.NOTIFICATION]: {
|
|
resolve: "@medusajs/notification",
|
|
options: {
|
|
providers: [
|
|
// ...
|
|
{
|
|
resolve: "@medusajs/notification-sendgrid",
|
|
id: "sendgrid",
|
|
options: {
|
|
channels: ["email"],
|
|
api_key: process.env.SENDGRID_API_KEY,
|
|
from: process.env.SENDGRID_FROM,
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
},
|
|
})
|
|
```
|
|
|
|
### Environment Variables
|
|
|
|
Make sure to add the following environment variables:
|
|
|
|
```bash
|
|
SENDGRID_API_KEY=<YOUR_SENDGRID_API_KEY>
|
|
SENDGRID_FROM=<YOUR_SENDGRID_FROM>
|
|
```
|
|
|
|
### SendGrid Notification Module Options
|
|
|
|
<Table>
|
|
<Table.Header>
|
|
<Table.Row>
|
|
<Table.HeaderCell>Option</Table.HeaderCell>
|
|
<Table.HeaderCell>Description</Table.HeaderCell>
|
|
</Table.Row>
|
|
</Table.Header>
|
|
<Table.Body>
|
|
<Table.Row>
|
|
<Table.Cell>`channels`</Table.Cell>
|
|
<Table.Cell>
|
|
The channels this notification module is used to send notifications for.
|
|
Only one provider can be defined for a channel.
|
|
</Table.Cell>
|
|
</Table.Row>
|
|
<Table.Row>
|
|
<Table.Cell>`api_key`</Table.Cell>
|
|
<Table.Cell>The SendGrid API key.</Table.Cell>
|
|
</Table.Row>
|
|
<Table.Row>
|
|
<Table.Cell>`from`</Table.Cell>
|
|
<Table.Cell>The SendGrid from email.</Table.Cell>
|
|
</Table.Row>
|
|
</Table.Body>
|
|
</Table>
|
|
|
|
---
|
|
|
|
## SendGrid Templates
|
|
|
|
When you send a notification, you must specify the ID of the template to use in SendGrid.
|
|
|
|
Refer to [this SendGrid documentation guide](https://docs.sendgrid.com/ui/sending-email/how-to-send-an-email-with-dynamic-templates) on how to create templates for your different email types.
|
|
|
|
---
|
|
|
|
## Test out the Module
|
|
|
|
To test the module out, create a simple subscriber at `src/subscribers/product-created.ts` with the following content:
|
|
|
|
export const highlights = [
|
|
["12", "notificationModuleService", "Resolve the Notification Module."],
|
|
["17", "create", "Create the notification to be sent."],
|
|
[
|
|
"19",
|
|
'"email"',
|
|
"By specifying the `email` channel, SendGrid will be used to send the notification.",
|
|
],
|
|
["20", '"product-created"', "The ID of the template defined in SendGrid."],
|
|
["21", "data", "The data to pass to the template defined in SendGrid."],
|
|
]
|
|
|
|
```ts title="src/subscribers/product-created.ts" highlights={highlights} collapsibleLines="1-7" expandButtonLabel="Show Imports"
|
|
import type {
|
|
SubscriberArgs,
|
|
SubscriberConfig,
|
|
} from "@medusajs/medusa"
|
|
import { ModuleRegistrationName } from "@medusajs/utils"
|
|
import { INotificationModuleService } from "@medusajs/types"
|
|
|
|
export default async function productCreateHandler({
|
|
data,
|
|
container,
|
|
}: SubscriberArgs<{ id: string }>) {
|
|
const notificationModuleService: INotificationModuleService =
|
|
container.resolve(ModuleRegistrationName.NOTIFICATION)
|
|
|
|
await notificationModuleService.create({
|
|
to: "test@gmail.com",
|
|
channel: "email",
|
|
template: "product-created",
|
|
data: "data" in data ? data.data : data,
|
|
})
|
|
}
|
|
|
|
export const config: SubscriberConfig = {
|
|
event: "product.created",
|
|
}
|
|
```
|
|
|
|
In this subscriber:
|
|
|
|
- Resolve the Notification Module's main service.
|
|
- Use the `create` method of the main service to create a notification to be sent to the specified email.
|
|
- By specifying the `email` channel, the SendGrid Notification Module Provider is used to send the notification.
|
|
- The `template` property of the `create` method's parameter specifies the ID of the template defined in SendGrid.
|
|
- The `data` property allows you to pass data to the template in SendGrid.
|
|
|
|
Then, start the Medusa application:
|
|
|
|
```bash npm2yarn
|
|
npm run dev
|
|
```
|
|
|
|
{/* TODO add links */}
|
|
|
|
And create a product either using the [API route](!api!/api/admin#products_postproducts) or the Medusa Admin. This runs the subscriber and sends an email using SendGrid.
|