Skip to content

Node OTP Sender is a lightweight npm package for generating and sending one-time passwords (OTPs) via email using Nodemailer. It provides a simple and easy-to-use API for integrating OTP functionality into your Node.js applications.

License

MuhdHanish/Otp-Sender-Package

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Node OTP Sender is a lightweight npm package for generating and sending one-time passwords (OTPs) via email using Nodemailer. It provides a simple and easy-to-use API for integrating OTP functionality into your Node.js applications.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published