Huge News!Announcing our $40M Series B led by Abstract Ventures.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 1.0.1 to 1.0.2

2

package.json
{
"name": "emailjs",
"description": "send text/html emails and attachments (files, streams and strings) from node.js to any smtp server",
"version": "1.0.1",
"version": "1.0.2",
"author": "eleith",

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

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

{
// do not output BCC in the headers...
if(!(/bcc/i.test(header)))
// do not output BCC in the headers (regex) nor custom Object.prototype functions...
if(!(/bcc/i.test(header)) && self.message.header.hasOwnProperty (header))
data = data.concat([fix_header_name_case(header), ": ", self.message.header[header], CRLF]);

@@ -502,0 +502,0 @@ }

@@ -13,2 +13,6 @@ var SMTPError = require('./error');

var line = buffer.replace("\r", '');
if(!line.trim().split(/\n/).pop().match(/^(\d{3})\s/))
return;
var match = line ? line.match(/(\d+)\s?(.*)/) : null;

@@ -15,0 +19,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