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

sendzk

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sendzk

latest
npmnpm
Version
0.3.0
Version published
Maintainers
1
Created
Source
Sendzk Logo

Sendzk

On-chain encrypted email via blob transactions.

Install

npm i sendzk

Usage

import { sendzk } from 'sendzk';

await sendzk(
    { privateKey: '0x...', rpcUrl: 'https://...' },
    { to: 'recipient@example.com', subject: 'Hello', body: '<p>Message</p>' }
);

Test

node test_email.js \
  --private-key $PRIVATE_KEY \
  --rpc-url https://eth.llamarpc.com \
  --email "alice@example.com, bob@example.com" \
  --subject "Hello from sendzk" \
  --body "<div><p>This is a <strong>test</strong> email</p></div>" \
  --cc "cc1@example.com, cc2@example.com" \
  --bcc "bcc@example.com" \
  --reply-to reply@example.com

Options:

FlagDescription
--private-keyYour wallet private key (required)
--rpc-urlEthereum RPC endpoint (required)
--emailRecipient email address(es), comma-separated (required)
--subjectEmail subject (required)
--bodyEmail body (required)
--reply-toReply-to address (required)
--ccCC recipients, comma-separated (required, use '' for none)
--bccBCC recipients, comma-separated (required, use '' for none)

FAQs

Package last updated on 08 Dec 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