diff --git a/cloudron.js b/cloudron.js index 4836c45..39e826f 100644 --- a/cloudron.js +++ b/cloudron.js @@ -639,7 +639,7 @@ Cloudron.prototype.sendMail = function (account, to, callback) { from: (account.from || account.username) + '@'+ this._box.domain, to: to, subject: 'Hi from e2e test - ' + this._box.domain, - text: 'This release depends on you' + text: 'This release depends on you' // keep in sync with mailer.sendMailToCloudronUser }; debug('Sending mail with options %j', mailOptions); diff --git a/mailer.js b/mailer.js index 8bd0db5..394197d 100644 --- a/mailer.js +++ b/mailer.js @@ -54,7 +54,7 @@ function sendMailToCloudronUser(email, callback) { var mailOptions = { to: email, subject: 'Hi from e2e test - ' + email.split('@')[1], - text: 'I hope you get this. The release depends on you!' + text: 'This release depends on you!' // match this with cloudron.sendMail }; send(mailOptions, callback);