3.2.0 • Published 3 months ago

resend v3.2.0

Weekly downloads
4
License
MIT
Repository
github
Last release
3 months ago

Resend Node.js SDK

Node.js library for the Resend API.

Install

npm install resend
# or
yarn add resend

Examples

Send email with:

Setup

First, you need to get an API key, which is available in the Resend Dashboard.

import { Resend } from 'resend';
const resend = new Resend('re_123456789');

Usage

Send your first email:

await resend.emails.send({
  from: 'you@example.com',
  to: 'user@gmail.com',
  subject: 'hello world',
  text: 'it works!',
});

Send email using HTML

Send an email custom HTML content:

await resend.emails.send({
  from: 'you@example.com',
  to: 'user@gmail.com',
  subject: 'hello world',
  html: '<strong>it works!</strong>',
});

Send email using React

Start by creating your email template as a React component.

import React from 'react';

export default function EmailTemplate(props) {
  const { firstName, product } = props;

  return (
    <div>
      <h1>Welcome, {firstName}!</h1>
      <p>Thanks for trying {product}. We’re thrilled to have you on board.</p>
    </div>
  );
}

Then import the template component and pass it to the react property.

import EmailTemplate from '../components/EmailTemplate';

await resend.emails.send({
  from: 'you@example.com',
  to: 'user@gmail.com',
  subject: 'hello world',
  react: <EmailTemplate firstName="John" product="MyApp" />,
});

License

MIT License

3.2.0

3 months ago

3.2.0-canary.0

3 months ago

3.2.0-canary.1

3 months ago

3.1.0

4 months ago

3.0.0-canary.0

4 months ago

3.0.0

4 months ago

2.1.0-canary.2

4 months ago

2.1.0

4 months ago

2.0.0-canary.0

6 months ago

2.0.0-canary.2

6 months ago

2.0.0-canary.1

6 months ago

2.1.0-canary.1

6 months ago

2.1.0-canary.0

6 months ago

2.0.0

6 months ago

2.0.1-canary.0

6 months ago

1.1.0

8 months ago

1.0.0

9 months ago

0.17.2

10 months ago

0.15.4

11 months ago

1.1.0-canary.0

8 months ago

0.18.0-canary.0

9 months ago

0.18.0-canary.1

9 months ago

0.15.0

12 months ago

0.14.1

12 months ago

0.16.0

11 months ago

0.15.1

12 months ago

0.17.0

10 months ago

0.15.2

11 months ago

0.17.1

10 months ago

0.15.3

11 months ago

1.0.1-canary.0

8 months ago

1.0.1-canary.2

8 months ago

1.0.1-canary.1

8 months ago

0.11.0

1 year ago

0.12.0

1 year ago

0.11.1

1 year ago

0.13.0

1 year ago

0.12.1

1 year ago

0.14.0

1 year ago

0.13.1

1 year ago

0.12.2

1 year ago

0.1.2

1 year ago

0.10.0

1 year ago

0.9.0

1 year ago

0.8.0

1 year ago

0.9.1

1 year ago

0.1.1

7 years ago