1.0.2 • Published 3 years ago

@uon/email v1.0.2

Weekly downloads
1
License
ISC
Repository
-
Last release
3 years ago

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();
1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

6 years ago