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 🙏

© 2026 – Pkg Stats / Ryan Hefner

strapi-provider-email-vlkmailer

v1.1.1

Published

A nodemailer provider for Strapi, powered by VLK STUDIO

Downloads

194

Readme

📫 VLK Mailer

A Nodemailer Provider for 🚀 Strapi!
Table of contents:

powered by VLK Studio

🏗 Installation

Simply run this command in the same location where strapi is installed:

npm i strapi-provider-email-vlkmailer

... and then restart strapi!

strapi develop

⚙ How to use

Navigate to PLUGINS --> EMAIL and go to the configurations by clicking the gear (⚙).

Select VlkMailer as your default email provider, now you only have to fill in the form with your email configurations (like host, username, password, etc..)!

That's all folks!

🔧 Available configurations

You can set this configuration directly from the Strapi Administration Panel

  • nodemailer_default_from: The default sender address
  • nodemailer_default_replyto: The default reply to address
  • host: The address of the SMTP server
  • port: The port used for the connections
  • username: Your username
  • password: Your password
  • maxConnections: is the count of maximum simultaneous connections to make against the SMTP server (defaults to 10)
  • maxMessages: limits the message count to be sent using a single connection (defaults to 100). After maxMessages is reached the connection is dropped and a new one is created for the following messages
  • rateDelta: defines the time measuring period in milliseconds (defaults to 1000, ie. to 1 second) for rate limiting
  • pool: Enable pooled connection

📌 Available options

You can set this options in your code for each email you want to send!

  • to: The receiver email address
  • from: The sender email address
  • replyTo: The email address where user's can text you back!
  • subject: The subject of the email
  • text: The text of the email (no HTML here!)
  • html: The HTML version of the email
  • attachments: The attachments to your email

🎓 Example

Maybe you want to send an email when a new member of your website has complete the registration process, to do this just go to your model (/api/member/models/Member.js)

Then edit the afterCreate method like this:

// After creating a value.
// Fired after an `insert` query.
afterCreate: async (model, attrs, options) => {
  const member = model.attributes;

  return await strapi.plugins['email'].services.email.send({
    to: member.email,
    from: '[email protected]',
    replyTo: '[email protected]',
    subject: 'Welcome!',
    text: `Welcome to our website, ${member.name}`,
    html: '... the html of your email!'
  });
},

🔗 Links