From 46b5887bfdce8b89c2c3776aa1f095a819deb0f4 Mon Sep 17 00:00:00 2001 From: CRoed Date: Tue, 14 Jun 2016 11:45:59 -0500 Subject: [PATCH] Update mailjet.js (#125) * Update mailjet.js configuring this with the nodemailer {service: "mailjet"} sets the port to 587, which is blocked by the google. This setup configuration works. --- compute/mailjet.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compute/mailjet.js b/compute/mailjet.js index 3231a0141c..0d03fe11c7 100644 --- a/compute/mailjet.js +++ b/compute/mailjet.js @@ -18,7 +18,8 @@ var mailer = require('nodemailer'); var smtp = require('nodemailer-smtp-transport'); var transport = mailer.createTransport(smtp({ - service: 'Mailjet', + host: 'in.mailjet.com', + port: 2525, auth: { user: process.env.MAILJET_API_KEY || ''