@envialosimple/transaccional
v1.0.5
Published
Node.js SDK for EnvíaloSimple Transaccional
Downloads
7
Readme
EnvíaloSimple Transaccional - Node.js SDK
Requirements
- Node.js 18 or higher
- EnvíaloSimple Transaccional API Key (Create a demo account for free here)
Installation
npm install @envialosimple/transaccional
Basic Usage
import { Transaccional, MailParams } from "@envialosimple/transaccional";
const estr = new Transaccional(your_api_key);
const params = new MailParams();
params
.setFrom('[email protected]', 'MyCompany Notifications')
.setTo('[email protected]', 'John Doe')
.setReplyTo('[email protected]')
.setSubject('This is a test for {{name}}')
.setPreviewText('A glimpse of what comes next...')
.setHtml('<h1>HTML emails are cool, {{name}}</h1>')
.setText('Text emails are also cool, {{name}}')
.setContext({name: 'John'});
await estr.mail.send(params);