npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

saksh-mailer

v1.0.1

Published

This package provides utility functions for sending and validating emails in batches using Node.js and `nodemailer`.

Downloads

16,222

Readme

Email Utility Package

This package provides utility functions for sending and validating emails in batches using Node.js and nodemailer.

Functions

sakshSendEmail(to, subject, message, config)

Sends an email.

  • Parameters:

    • to (string): The recipient's email address.
    • subject (string): The subject of the email.
    • message (string): The body of the email.
    • config (object): The configuration object for the email service.
      • host (string): The SMTP server host.
      • port (number): The SMTP server port.
      • secure (boolean): Whether to use SSL.
      • user (string): The SMTP server username.
      • pass (string): The SMTP server password.
  • Returns: Promise<void>

sakshSendEmailsBatch(emailAddresses, subject, message, configs)

Sends multiple emails in batch using one or multiple SMTP server configurations.

  • Parameters:

    • emailAddresses (Array): Array of email addresses.
    • subject (string): The subject of the email.
    • message (string): The body of the email.
    • configs (object|Array): A single configuration object or an array of configuration objects for the email service.
  • Returns: Promise<void>

sakshValidateEmail(email)

Validates a single email address.

  • Parameters:

    • email (string): The email address to validate.
  • Returns: object - The validation result.

sakshValidateEmailsInBatches(emailAddresses, batchSize, callback)

Validates emails in batches and informs the status to a callback function.

  • Parameters:

    • emailAddresses (Array): Array of email addresses.
    • batchSize (number): The size of each batch.
    • callback (function): The callback function to inform the validation status.
  • Returns: Promise<void>

sakshProcessEmailsInBatches(emailAddresses, subject, message, configs, callback)

Processes email sending in batches and updates the status via a callback.

  • Parameters:

    • emailAddresses (Array): Array of email addresses.
    • subject (string): The subject of the email.
    • message (string): The body of the email.
    • configs (object|Array): A single configuration object or an array of configuration objects for the email service.
    • callback (function): The callback function to update email statuses.
  • Returns: Promise<void>

Usage

Installation

npm install nodemailer saksh-mailer
const { sakshSendEmail, sakshSendEmailsBatch, sakshValidateEmailsInBatches, sakshProcessEmailsInBatches } = require('./index');

// Configuration for the email service
const emailConfig = {
    host: 'smtp.example.com',
    port: 587,
    secure: false,
    user: '[email protected]',
    pass: 'your_email_password'
};

// Sending a single email
sakshSendEmail('[email protected]', 'Test Subject', 'Test Message', emailConfig)
    .then(() => console.log('Email sent successfully'))
    .catch(error => console.error('Error sending email:', error));

// Sending multiple emails in batch
const emailAddresses = ['[email protected]', '[email protected]'];
sakshSendEmailsBatch(emailAddresses, 'Batch Subject', 'Batch Message', emailConfig)
    .then(() => console.log('Batch emails sent successfully'))
    .catch(error => console.error('Error sending batch emails:', error));

// Validating emails in batches
const validateCallback = (email, validation) => {
    console.log(`Email: ${email}, Validation: ${validation}`);
};
sakshValidateEmailsInBatches(emailAddresses, 50, validateCallback)
    .then(() => console.log('Email validation completed'))
    .catch(error => console.error('Error validating emails:', error));

// Processing email sending in batches
const processCallback = (email, status) => {
    console.log(`Email: ${email}, Status: ${status}`);
};
sakshProcessEmailsInBatches(emailAddresses, 'Batch Subject', 'Batch Message', emailConfig, processCallback)
    .then(() => console.log('Email processing completed'))
    .catch(error => console.error('Error processing emails:', error));

    ```



    ### Support 

    susheel2339 at gmail.com