node-otp-sender

1.0.10 • Public • Published

Node OTP Sender

License npm Version

A simple and lightweight npm package for sending one-time passwords (OTPs) via email using Nodemailer with retry functionality.

Features

  • Generate and send one-time passwords (OTPs) via email
  • Retry sending OTP emails in case of temporary network or email server issues
  • Simple and easy to use

Installation

Install the package using npm:

npm install node-otp-sender

Usage

const otpSender = require('node-otp-sender');

const senderEmail = 'your-email@example.com';
const senderPassword = 'your-email-password';
const recipientEmail = 'recipient-email@example.com';
const subject = 'OTP Verification';

// Optional: Customize retry settings
const maxRetries = 3; // Number of retry attempts (default is 3)
const retryDelay = 1000; // Delay between retries in milliseconds (default is 1000 milliseconds or 1 second)

otpSender(senderEmail, senderPassword, recipientEmail, subject)
  .then((response) => {
    console.log(response);
  })
  .catch((error) => {
    console.error('Error:', error);
  });

Customizing Retry Behavior

You can customize the retry behavior by adjusting the maxRetries and retryDelay parameters. maxRetries determines the maximum number of retry attempts, and retryDelay sets the delay between retry attempts.

Make sure to replace

Package Sidebar

Install

npm i node-otp-sender

Weekly Downloads

6

Version

1.0.10

License

ISC

Unpacked Size

6.41 kB

Total Files

4

Last publish

Collaborators

  • muhdhanish