> ## Documentation Index
> Fetch the complete documentation index at: https://react.email/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> Leverage different email service providers to send emails using React.

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:

<CodeGroup>
  ```sh npm theme={"theme":{"light":"github-light","dark":"vesper"}}
  npm install -D @babel/preset-typescript
  ```

  ```sh yarn theme={"theme":{"light":"github-light","dark":"vesper"}}
  yarn add -D @babel/preset-typescript
  ```

  ```sh pnpm theme={"theme":{"light":"github-light","dark":"vesper"}}
  pnpm add -D @babel/preset-typescript
  ```
</CodeGroup>

```json .babelrc theme={"theme":{"light":"github-light","dark":"vesper"}}
{
  "presets": ["@babel/preset-typescript"]
}
```

<CardGroup>
  <Card title="Resend" href="/integrations/resend">
    Send email using Resend
  </Card>

  <Card title="Nodemailer" href="/integrations/nodemailer">
    Send email using Nodemailer
  </Card>

  <Card title="Mailgun" href="/integrations/mailgun">
    Send email using Mailgun
  </Card>

  <Card title="SendGrid" href="/integrations/sendgrid">
    Send email using SendGrid
  </Card>

  <Card title="Postmark" href="/integrations/postmark">
    Send email using Postmark
  </Card>

  <Card title="AWS SES" href="/integrations/aws-ses">
    Send email using AWS SES
  </Card>

  <Card title="MailerSend" href="/integrations/mailersend">
    Send email using MailerSend
  </Card>

  <Card title="Scaleway" href="/integrations/scaleway">
    Send email using Scaleway
  </Card>

  <Card title="Plunk" href="/integrations/plunk">
    Send email using Plunk
  </Card>
</CardGroup>
