# zoho-node-mailer

Latest version **1.0.6** (published 2020-12-17) · ISC license · 0 weekly downloads

## Install

```sh
npm install zoho-node-mailer
pnpm add zoho-node-mailer
yarn add zoho-node-mailer
bun add zoho-node-mailer
```

## 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.0.6 |
| Published | 2020-12-17 |
| First published | 2020-12-17 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 2.8 KB |
| Known vulnerabilities | 0 (+14 in 1 direct dependencies) |
| Install scripts | no |
| Author | Harish Mahajan |
| Maintainers | harishmahajan |
| Keywords | zoho, zoho node mailer, node mailer, zoho mail, send mail with zoho using node, node zoho mail |

## Links

- npm: https://www.npmjs.com/package/zoho-node-mailer
- npm.io page: https://npm.io/package/zoho-node-mailer

## Dependencies (1)

- [nodemailer](https://npm.io/package/nodemailer.md) ^4.6.3

## 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.0.6 (latest) — 2020-12-17
- 1.0.4 — 2020-12-17
- 1.0.3 — 2020-12-17
- 1.0.2 — 2020-12-17
- 1.0.1 — 2020-12-17
- 1.0.0 — 2020-12-17

## README

####Zoho Node Mailer 


#####**Requirements**

1. Node.js v6 and above.


##### **Uses**

Step 1: Install zoho-node-mailer using below command

```bash
$ npm install zoho-node-mailer --save
```

Step 2: Setup your Zoho Transport, with your email and password.

```bash
const Emailer = require('zoho-node-mailer');

const credentials = {
    username: 'xyz@domain.com',
	password: 'password'
}
Emailer.UseZohoSMTPTransport(credentials)

var mailOptions = {
    from: 'xyz@domain.com',
    to: 'abc@gmail.com',
    subject: 'Hello, world',
    body: '<h1>This is body</h1>',
    bodyType: 'html'
};
var result = new Emailer.Email(mailOptions)

result.send(function(res){
    console.log(" response : ", res );
})
```

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