Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@muil/muil-javascript

Package Overview
Dependencies
Maintainers
3
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@muil/muil-javascript

## Installation

  • 0.0.9
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

JavaScript development for Muil API

Installation

NPM
npm install @muil/muil-javascript --save
Yarn
yarn add @muil/muil-javascript

Initialization

First you have to initialize the service with Api Key and host (if not using our SaaS solution)

import muil from '@muil/muil-javascript';

muil.init({ host: 'MY_HOST_ADDRESS', apiKey: 'MY_API_KEY' });

Generate Template

To generate html from template pass templateId and props

const html = await muil.generate({
  templateId: 'awesomeTemplate',
  props: { name: 'John' },
});

You can also set type to 'pdf' or 'png' to generate PDF or png, functions returns pdf or png as binary string

const content = await muil.generate({
  templateId: 'awesomeTemplate',
  type: 'pdf',
  props: { name: 'John' },
});

Send Email from Template

To generate email from template and send it

muil.sendMail({
  templateId: 'awesomeTemplate',
  subject: 'This is an awesome mail',
  to: 'mail@example.com',
  props: { name: 'John' },
});
  • from - The email address of the sender. All email addresses can be plain ‘sender@server.com’ or formatted '“Sender Name” sender@server.com
  • to - Comma separated list or an array of recipients email addresses
  • cc - Comma separated list or an array of recipients email addresses
  • bcc - Comma separated list or an array of recipients email addresses
  • subject - The subject of the email Y

Send Email from Template with Attachment

muil.sendMail({
  templateId: 'awesomeTemplate',
  subject: 'This is an awesome mail',
  to: 'mail@example.com',
  props: { name: 'John' },
  attachments: [{
    filename: 'a.png',
    type: 'png',
    templateId: 'awesomeTemplate',
    props: {
      name: 'John',
    }
  },
  {
    filename: 'file.txt',
    content: 'hello world!'
  },
  {
    filename: 'license.txt',
    path: 'https://example.com/license.txt'
  }]
});

Upload Asset

to upload asset to you Muil project bucket

await muil.uploadAsset('file.png', value);

Value can be a string, a buffer or a file stream.

Delete Asset

to delete asset from Muil project bucket

await muil.deleteAsset('file.png');

FAQs

Package last updated on 12 Feb 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc