Back to React Email

Overview

apps/docs/integrations/overview.mdx

0.0.15662 B
Original Source

import Integrations from '/snippets/integrations.mdx'

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 utility. Or you can integrate React Email into your NodeJS application by installing @babel/preset-typescript and adding a .babelrc config file:

<CodeGroup>
sh
npm install -D @babel/preset-typescript
sh
yarn add -D @babel/preset-typescript
sh
pnpm add -D @babel/preset-typescript
</CodeGroup>
json
{
  "presets": ["@babel/preset-typescript"]
}
<Integrations/>