# huhumails

> Node JS API library for huhumails.com

Latest version **2.0.2** (published 2025-07-25) · MIT license · 0 weekly downloads

## Install

```sh
npm install huhumails
pnpm add huhumails
yarn add huhumails
bun add huhumails
```

## Health

**Score 25/100 (F)** — status: maintenance-mode.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: stale; low maintenance score.

## Facts

| | |
|---|---|
| Version | 2.0.2 |
| Published | 2025-07-25 |
| First published | 2019-11-11 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 16.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Manny Vergel |
| Maintainers | mannyvergel |
| Keywords | huhumails, nodejs, API |

## Links

- npm: https://www.npmjs.com/package/huhumails
- Repository: https://github.com/mannyvergel/huhumails-js
- Homepage: https://github.com/mannyvergel/huhumails-js#readme
- Issues: https://github.com/mannyvergel/huhumails-js/issues
- npm.io page: https://npm.io/package/huhumails

## Alternatives

- [@expo/fingerprint](https://npm.io/package/@expo/fingerprint.md) — 6.2M weekly downloads
- [@azure/monitor-opentelemetry-exporter](https://npm.io/package/@azure/monitor-opentelemetry-exporter.md) — 850.0K weekly downloads
- [@azure/monitor-opentelemetry](https://npm.io/package/@azure/monitor-opentelemetry.md) — 624.0K weekly downloads
- [@posthog/ai](https://npm.io/package/@posthog/ai.md) — 423.3K weekly downloads
- [fakefilter](https://npm.io/package/fakefilter.md) — 63.9K weekly downloads

## Recent versions

- 2.0.2 (latest) — 2025-07-25
- 2.0.1 — 2025-07-25
- 2.0.0 — 2025-07-24
- 1.0.0 — 2019-11-11

## README

# huhumails-js
Node JS API library for huhumails.com


```
npm install huhumails;
```

By default, Huhumails API key will be retrieved from environmental variable:
HUHUMAILS_API_KEY

Sample usage:
```

const addtlConf = {
  bodyTransform: function(body) {
    // replace new line with break line html
    return body.replace(/\n/g, '<br/>');
  }
}

const huhumails = new (require('huhumails'))(addtlConf);

huhumails.email({
  to: 'person1@example.com',
  fr: 'person2@example.com',
  subj: 'Test Subject',
  body: `Hi,

This is a test email.

Regards,
`
  }
)
```

---
_Source: https://npm.io/package/huhumails · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
