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

emailjs

Package Overview
Dependencies
Maintainers
0
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.4 to 0.1.5

4

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

@@ -14,4 +14,4 @@ "contributors" : [

},
"engine": [ "node >=0.3.8" ],
"engine": [ "node >= 0.3.8" ],
"main": "email"
}

@@ -161,4 +161,4 @@ var stream = require('stream');

data = data.concat(["--", boundary, CRLF]);
data = data.concat(["Content-Type:text/html", CRLF, "Content-Transfer-Encoding: quoted-printable", CRLF, "Content-Disposition: inline", CRLF, CRLF]);
data = data.concat([self.message.html, CRLF, CRLF]);
data = data.concat(["Content-Type:text/html", CRLF, "Content-Transfer-Encoding: base64", CRLF, "Content-Disposition: inline", CRLF, CRLF]);
data = data.concat([(new Buffer(self.message.html)).toString("base64"), CRLF, CRLF]);

@@ -165,0 +165,0 @@ data = data.concat(["--", boundary, "--", CRLF, CRLF]);

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