diff --git a/src/mail_templates/app_down.ejs b/src/mail_templates/app_down.ejs index a94385f40..87ccc8b37 100644 --- a/src/mail_templates/app_down.ejs +++ b/src/mail_templates/app_down.ejs @@ -5,8 +5,7 @@ Dear Admin, The application titled '<%= title %>' that you installed at <%= appFqdn %> is not responding. -This is most likely a problem in the application. Please report this issue to -support@cloudron.io (by forwarding this email). +This is most likely a problem in the application. You are receiving this email because you are an Admin of the Cloudron at <%= fqdn %>. diff --git a/src/mailer.js b/src/mailer.js index 3b18126df..9783330ce 100644 --- a/src/mailer.js +++ b/src/mailer.js @@ -284,7 +284,7 @@ function appDied(app) { var mailOptions = { from: config.get('adminEmail'), - to: adminEmails.join(', '), + to: adminEmails.concat('support@cloudron.io').join(', '), subject: util.format('App %s is down', app.location), text: render('app_down.ejs', { fqdn: config.fqdn(), title: app.manifest.title, appFqdn: config.appFqdn(app.location), format: 'text' }) };