+ {% if not project.abandoned_mail_sent %}
+
+ {% else %}
+
{%trans "Abandonment mail was sent to the owner of the project." %}
+ {% endif %}
+
+ {% endif %}
diff --git a/readthedocs/templates/projects/email/abandon_project.html b/readthedocs/templates/projects/email/abandon_project.html
new file mode 100644
index 00000000000..d80f2d1b9de
--- /dev/null
+++ b/readthedocs/templates/projects/email/abandon_project.html
@@ -0,0 +1,13 @@
+{% extends "core/email/common.html" %}
+
+{% load i18n %}
+
+{% block content %}
+
+ We've had a request from one of our users for the project name {{proj_name}} on Read the Docs. You are the current owner, and we wanted to reach out to you in accordance with our Abandoned Project policy (http://docs.readthedocs.io/en/latest/abandoned-projects.html).
+
+
+
+ Please reply at hello@readthedocs.com either allowing or disallowing the transfer of the name on Read the Docs within 6 weeks, otherwise we will take the action of *initiating the transfer to a new owner* by default.
+
+{% endblock %}
diff --git a/readthedocs/templates/projects/email/abandon_project.txt b/readthedocs/templates/projects/email/abandon_project.txt
new file mode 100644
index 00000000000..9398e1ec077
--- /dev/null
+++ b/readthedocs/templates/projects/email/abandon_project.txt
@@ -0,0 +1,9 @@
+{% extends "core/email/common.txt" %}
+
+{% load i18n %}
+
+{% block content %}
+We've had a request from one of our users for the project name {{proj_name}} on Read the Docs. You are the current owner, and we wanted to reach out to you in accordance with our Abandoned Project policy (http://docs.readthedocs.io/en/latest/abandoned-projects.html).
+
+Please reply at hello@readthedocs.com either allowing or disallowing the transfer of the name on Read the Docs within 6 weeks, otherwise we will take the action of *initiating the transfer to a new owner* by default.
+{% endblock %}