reverted to no ssl

This commit is contained in:
David Baldwynn 2016-05-19 16:17:41 -07:00
parent 2d864577d4
commit 4bc3d163cf

View file

@ -55,10 +55,10 @@ module.exports = {
from: process.env.MAILER_FROM || 'no-reply@tellform.com', from: process.env.MAILER_FROM || 'no-reply@tellform.com',
options: { options: {
service: process.env.MAILER_SERVICE_PROVIDER || '', service: process.env.MAILER_SERVICE_PROVIDER || '',
ssl: true, ssl: false,
host: "smtp.sparkpostmail.com", host: "smtp.sparkpostmail.com",
port: 587, port: 587,
secure: true, secure: false,
auth: { auth: {
user: process.env.MAILER_EMAIL_ID || '', user: process.env.MAILER_EMAIL_ID || '',
pass: process.env.MAILER_PASSWORD || '' pass: process.env.MAILER_PASSWORD || ''