1.0.0 • Published 1 year ago

gmailit v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Gmailit Node.js SDK

Node.js library for the Gmailit API.

Install

npm install gmailit
# or
yarn add gmailit
# or
pnpm add gmailit

Examples

coming soon

Setup

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

import { Gmailit } from 'gmailit';
const gmailit = new Gmailit('re_123456789');

Usage

Send your first email:

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

License

MIT License

1.0.0

1 year ago

0.0.1

1 year ago