New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nodemailer-smtp-transport

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nodemailer-smtp-transport - npm Package Compare versions

Comparing version 0.1.6 to 0.1.7

2

package.json
{
"name": "nodemailer-smtp-transport",
"version": "0.1.6",
"version": "0.1.7",
"description": "SMTP transport for Nodemailer",

@@ -5,0 +5,0 @@ "main": "src/smtp-transport.js",

@@ -45,5 +45,9 @@ 'use strict';

SMTPTransport.prototype.send = function(mail, callback) {
var connection = new SMTPConnection(this.options),
returned = false;
var connection = new SMTPConnection(this.options);
var returned = false;
connection.once('log', function(log) {
this.emit('log', log);
}.bind(this));
connection.once('error', function(err) {

@@ -50,0 +54,0 @@ if (returned) {

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc