1.1.4 • Published 4 years ago

naver-mailer v1.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

Naver Mailer

가벼운 네이버 메일러

install

npm

$ npm install naver-mailer

yarn

$ yarn add naver-mailer

Example

ES5

const NaverMailer = require('naver-mailer').default;
const mailer = new NaverMail('id', 'super secret password');

mailer.send(mailer.createMailOption('to@to.com', 'title', 'description', false));

ES6

import NaverMail from 'naver-mailer';;
const mailer = new NaverMail('id', 'super secret password');

mailer.createMailOption('to@to.com', 'title', 'description', false);
mailer.send();

Add Attachments

const NaverMail = require('naver-mailer');
const mailer = new NaverMail('id', 'super secret password');

mailer.createMailOption('to@to.com', 'title', 'description');
mailer.addAttachments('./your_file_path', 'this_is_option');
mailer.send();
1.1.4

4 years ago

1.1.3

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.4

4 years ago

1.1.2

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago