New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@iclasser/ink-mailer

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@iclasser/ink-mailer

Lightweight Ink-Des mailer client

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

ink-mailer

Lightweight Ink-Des mailer client.

Install

npm install @iclasser/ink-mailer

Get your credentials

  • Get your API URL, Auth Token, Auth Key, and Tenant from your Ink-Des workspace on inkdes.com.
  • Provide these values when creating the client in your app.

Usage

import InkDesMailer from '@iclasser/ink-mailer';

const mailer = new InkDesMailer({
  apiUrl: process.env.INK_DES_API_URL!,
  authToken: process.env.INK_DES_AUTH_TOKEN!,
  authKey: process.env.INK_DES_AUTH_KEY!,
  tenant: process.env.INK_DES_TENANT!,
  // optional
  defaultLanguage: 'en-US',
  defaultSensitive: false,
  timeoutMs: 10000,
});

await mailer.send({
  experienceId: 'CONFIRM_EMAIL',
  to: 'user@example.com',
  data: { nameTo: 'Jane', code: '123456' },
});

Repo: GitHub

Keywords

ink-des

FAQs

Package last updated on 23 Sep 2025

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