diff --git a/ghost/staff-service/lib/email-templates/mention-report.hbs b/ghost/staff-service/lib/email-templates/mention-report.hbs
new file mode 100644
index 0000000000..98bd233a70
--- /dev/null
+++ b/ghost/staff-service/lib/email-templates/mention-report.hbs
@@ -0,0 +1,136 @@
+
+
+
+
+
+
diff --git a/ghost/staff-service/lib/email-templates/mention-report.txt.js b/ghost/staff-service/lib/email-templates/mention-report.txt.js
new file mode 100644
index 0000000000..042bb0666d
--- /dev/null
+++ b/ghost/staff-service/lib/email-templates/mention-report.txt.js
@@ -0,0 +1,11 @@
+module.exports = function (data) {
+ // Be careful when you indent the email, because whitespaces are visible in emails!
+ return `
+ You have been mentioned by ${data.sourceUrl}.
+
+---
+
+Sent to ${data.toEmail} from ${data.siteDomain}.
+If you would no longer like to receive these notifications you can adjust your settings at ${data.staffUrl}.
+ `;
+};