From c959753780af90dc2fff12db7e938436c7afcd87 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Fri, 31 Oct 2014 00:01:39 -0300 Subject: [PATCH] small fixes in email --- plugins/emailstore.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/emailstore.js b/plugins/emailstore.js index 471d07c3..340d00d1 100644 --- a/plugins/emailstore.js +++ b/plugins/emailstore.js @@ -158,7 +158,7 @@ emailPlugin.sendVerificationEmail = function (email, secret) { var emailBody = results[0]; var emailBodyHTML = results[1]; var mailOptions = { - from: 'Insight Services ', + from: 'copay@copay.io', to: email, subject: '[Copay] Your wallet backup needs confirmation', text: emailBody, @@ -172,7 +172,7 @@ emailPlugin.sendVerificationEmail = function (email, secret) { if (err) { logger.error('An error occurred when trying to send email to ' + email, err); } else { - logger.error('Message sent: ', info); + logger.info('Message sent: ', info ? info : ''); } }); });