0.0.4 • Published 4 months ago

letterbuilder v0.0.4

Weekly downloads
3
License
BSD-3-Clause-Clea...
Repository
github
Last release
4 months ago

letterbuilder is a library created for building RFC 5322 compliant e-mail messages. The library is written in TypeScript, fully supports both browser and server environments.

ParserSMTP client/server
letterparser@typemail/smtp

Usage

General information

To build the message, use build:

import { build } from 'letterbuilder';
let res = build({
  from: 'test@example.com',
  to: ['someone@example.com'],
  text: 'Hello, world!',
});