# kva-email-service

> provide email service to send custom email through IMAP

Latest version **1.3.0** (published 2024-03-04) · MIT license · 0 weekly downloads

## Install

```sh
npm install kva-email-service
pnpm add kva-email-service
yarn add kva-email-service
bun add kva-email-service
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.3.0 |
| Published | 2024-03-04 |
| First published | 2024-02-24 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 5 |
| Unpacked size | 3.6 KB |
| Known vulnerabilities | 0 (+12 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Kiet PVA |
| Maintainers | kietpva |
| Keywords | email, mail, service, transfer, send, custom |

## Links

- npm: https://www.npmjs.com/package/kva-email-service
- Repository: https://github.com/kietpva/email-service
- Homepage: https://github.com/kietpva/email-service#readme
- Issues: https://github.com/kietpva/email-service/issues
- npm.io page: https://npm.io/package/kva-email-service

## Dependencies (5)

- [cors](https://npm.io/package/cors.md) ^2.8.5
- [lodash](https://npm.io/package/lodash.md) ^4.17.21
- [express](https://npm.io/package/express.md) ^4.18.2
- [nodemailer](https://npm.io/package/nodemailer.md) ^6.9.10
- [ssl-http-with-docker](https://npm.io/package/ssl-http-with-docker.md) ^1.0.1

## 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

- 1.3.0 (latest) — 2024-03-04
- 1.2.0 — 2024-03-03
- 1.1.0 — 2024-02-28
- 1.0.1 — 2024-02-24
- 1.0.0 — 2024-02-24

## README

# Email Service

## Installation

Use the package manager [npm] to install email service.

```bash
npm install email-service --save
```

## Usage

```
const mailer = emailTransport(
                host,
                port,
                secure,
                auth
              );
const mailHtmlTemplate = magicEmailTemplate();
mailer.sendMail(mailHtmlTemplate, (error) => {
  if (error) {
    console.log(`error sending email: ${error}`);
  }
});
```

## Contributing

Pull requests are welcome. For major changes, please open an issue first
to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License

[MIT](https://choosealicense.com/licenses/mit/)

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