Socket
Socket
Sign inDemoInstall

strapi-provider-email-smtp

Package Overview
Dependencies
2
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.2 to 1.0.3

6

lib/index.js

@@ -58,3 +58,3 @@ "use strict";

init: (config) => {
init: (config, settings) => {
let transporter = nodemailer.createTransport({

@@ -80,4 +80,4 @@ host: config.host,

options = _.isObject(options) ? options : {};
options.from = options.from || config.username;
options.replyTo = options.replyTo || config.username;
options.from = options.from || settings.defaultFrom || config.username;
options.replyTo = options.replyTo || settings.defaultReplyTo || config.username;
options.text = options.text || options.html;

@@ -84,0 +84,0 @@ options.html = options.html || options.text;

{
"name": "strapi-provider-email-smtp",
"version": "1.0.2",
"version": "1.0.3",
"description": "Strapi SMTP email provider with nodemailer",

@@ -5,0 +5,0 @@ "main": "./lib",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc