Skip to content

Commit 7a6eec8

Browse files
fix(docs): Missing links to some integrations (#1844)
Co-authored-by: gabriel miranda <[email protected]>
1 parent 0525909 commit 7a6eec8

File tree

8 files changed

+4010
-74
lines changed

8 files changed

+4010
-74
lines changed

apps/docs/integrations/overview.mdx

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ description: 'Leverage different email service providers to send emails using Re
55
'og:image': 'https://react.email/static/covers/react-email.png'
66
---
77

8+
import Integrations from '/snippets/integrations.mdx'
9+
810
In order to use React Email with any email service provider, you'll need to convert the components made with React into a HTML string. This is done using the [render](/utilities/render) utility. Or you can integrate React Email into your NodeJS application by installing `@babel/preset-typescript` and adding a `.babelrc` config file:
911

1012
<CodeGroup>
@@ -29,23 +31,4 @@ pnpm add -D @babel/preset-typescript
2931
}
3032
```
3133

32-
<CardGroup>
33-
<Card title="Resend" href="/integrations/resend">
34-
Send email using Resend
35-
</Card>
36-
<Card title="Nodemailer" href="/integrations/nodemailer">
37-
Send email using Nodemailer
38-
</Card>
39-
<Card title="SendGrid" href="/integrations/sendgrid">
40-
Send email using SendGrid
41-
</Card>
42-
<Card title="Postmark" href="/integrations/postmark">
43-
Send email using Postmark
44-
</Card>
45-
<Card title="AWS SES" href="/integrations/aws-ses">
46-
Send email using AWS SES
47-
</Card>
48-
<Card title="Plunk" href="/integrations/plunk">
49-
Send email using Plunk
50-
</Card>
51-
</CardGroup>
34+
<Integrations/>

apps/docs/integrations/scaleway.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Send email using Scaleway Transactional Email"
3-
sidebarTitle: "Scaleway Transactional Email"
3+
sidebarTitle: "Scaleway"
44
description: "Learn how to send an email using React Email and the Scaleway Node.js SDK."
55
"og:image": "https://react.email/static/covers/react-email.png"
66
---

apps/docs/introduction.mdx

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ icon: 'hand-wave'
77
---
88

99
import Support from '/snippets/support.mdx'
10+
import Integrations from '/snippets/integrations.mdx'
1011

1112
## Why
1213

@@ -64,26 +65,7 @@ This is a set of standard components to help you build amazing emails without ha
6465

6566
In order to use React Email with any email service provider, you'll need to convert the components made with React into a HTML string. This is done using the [render](/utilities/render) utility.
6667

67-
<CardGroup>
68-
<Card title="Resend" href="/integrations/resend">
69-
Send email using Resend
70-
</Card>
71-
<Card title="Nodemailer" href="/integrations/nodemailer">
72-
Send email using Nodemailer
73-
</Card>
74-
<Card title="SendGrid" href="/integrations/sendgrid">
75-
Send email using SendGrid
76-
</Card>
77-
<Card title="Postmark" href="/integrations/postmark">
78-
Send email using Postmark
79-
</Card>
80-
<Card title="AWS SES" href="/integrations/aws-ses">
81-
Send email using AWS SES
82-
</Card>
83-
<Card title="MailerSend" href="/integrations/mailersend">
84-
Send email using MailerSend
85-
</Card>
86-
</CardGroup>
68+
<Integrations />
8769

8870
<Support />
8971

apps/docs/mint.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@
113113
"integrations/postmark",
114114
"integrations/aws-ses",
115115
"integrations/mailersend",
116+
"integrations/scaleway",
116117
"integrations/plunk"
117118
]
118119
}

apps/docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"version": "0.0.0",
44
"private": true,
55
"scripts": {
6-
"install": "mintlify install",
76
"dev": "mintlify dev"
87
},
98
"dependencies": {
10-
"mintlify": "4.0.200"
9+
"zod": "3.24.1",
10+
"mintlify": "4.0.395"
1111
}
1212
}

apps/docs/snippets/integrations.mdx

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<CardGroup>
2+
<Card title="Resend" href="/integrations/resend">
3+
Send email using Resend
4+
</Card>
5+
<Card title="Nodemailer" href="/integrations/nodemailer">
6+
Send email using Nodemailer
7+
</Card>
8+
<Card title="SendGrid" href="/integrations/sendgrid">
9+
Send email using SendGrid
10+
</Card>
11+
<Card title="Postmark" href="/integrations/postmark">
12+
Send email using Postmark
13+
</Card>
14+
<Card title="AWS SES" href="/integrations/aws-ses">
15+
Send email using AWS SES
16+
</Card>
17+
<Card title="MailerSend" href="/integrations/mailersend">
18+
Send email using AWS SES
19+
</Card>
20+
<Card title="Scaleway" href="/integrations/scaleway">
21+
Send email using Plunk
22+
</Card>
23+
<Card title="Plunk" href="/integrations/plunk">
24+
Send email using Plunk
25+
</Card>
26+
</CardGroup>

0 commit comments

Comments
 (0)