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

emailjs

Package Overview
Dependencies
Maintainers
1
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

emailjs - npm Package Compare versions

Comparing version 0.1.15 to 0.1.16

2

package.json
{
"name": "emailjs",
"description": "send text/html emails and attachments from node.js to any smtp server",
"version": "0.1.15",
"version": "0.1.16",
"author": "eleith",

@@ -6,0 +6,0 @@ "contributors": ["izuzak"],

@@ -1,2 +0,2 @@

#v0.1.15
#v0.1.16

@@ -3,0 +3,0 @@ ### emailjs

@@ -12,5 +12,6 @@ var smtp = require('./smtp');

this.queue = [];
this.timer = null;
this.queue = [];
this.timer = null;
this.sending = false;
this.ready = false;
};

@@ -31,3 +32,3 @@

else if(self.smtp.state() == smtp.state.CONNECTED && !self.sending)
else if(self.smtp.state() == smtp.state.CONNECTED && !self.sending && self.ready)
self._sendmail(self.queue.shift());

@@ -51,4 +52,6 @@ }

if(!err)
{
self.ready = true;
self._poll();
}
else

@@ -68,2 +71,3 @@ stack.callback(err, stack.message);

self.ready = false;
self.smtp.connect(connect);

@@ -70,0 +74,0 @@ },

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