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

@open-source-initiative/notify-email

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@open-source-initiative/notify-email - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

2

package.json
{
"name": "@open-source-initiative/notify-email",
"version": "1.0.3",
"version": "1.0.4",
"description": "Nodemailer wrapper for simple \"send email\" cases",

@@ -5,0 +5,0 @@ "main": "build/index.js",

@@ -10,17 +10,2 @@ import nodemailer from 'nodemailer'

let officialConfigurations = {
host: process.env.EMAIL_SERVER,
// port: 25,
secure: true, // upgrade later with STARTTLS
auth: {
user: process.env.SYSTEM_EMAIL_USERNAME,
pass: process.env.SYSTEM_EMAIL_PASS
},
tls: {
// do not fail on invalid certs
rejectUnauthorized: false
}
}
export const buildBasicConfigs = ({ host, port, username, password }: { host: string, port?: number, username: string, password: string }, configs: nodemailer.TransportOptions) => {

@@ -27,0 +12,0 @@ return {

import nodemailer from 'nodemailer';
import { EmailConfigs } from '../build';
export * as EmailConfigs from './configs';

@@ -5,0 +3,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