@uon/email
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

Email Builder

Install

npm i @uon/email

Usage

import { EmailMessage } from '@uon/email';

const msg = new EmailMessage()
    .from('me@me.com')
    .to('example@example.com')
    .subject('Hello World!')
    .html('<h1>Hi!</h1>')
    .text('Hi!')
    .attachment({
        name: 'image.png',
        mime: 'image/png',
        data: img_buffer
    });

const msg_buffer = msg.render();

Readme

Keywords

none

Package Sidebar

Install

npm i @uon/email

Weekly Downloads

0

Version

1.0.2

License

ISC

Unpacked Size

14.4 kB

Total Files

9

Last publish

Collaborators

  • uon-io