diff --git a/opentech/apply/activity/messaging.py b/opentech/apply/activity/messaging.py index a71d00a5e383ace3f23c37a2d31042bf025add90..3cba89b8caf61fbf9ee3333240f53185617b0c8d 100644 --- a/opentech/apply/activity/messaging.py +++ b/opentech/apply/activity/messaging.py @@ -73,7 +73,7 @@ class ActivityAdapter(AdapterBase): MESSAGES.TRANSITION: 'Progressed from {old_phase.display_name} to {submission.phase}', MESSAGES.NEW_SUBMISSION: 'Submitted {submission.title} for {submission.page.title}', MESSAGES.UPDATE_LEAD: 'Lead changed from {old.lead} to {submission.lead}', - MESSAGES.DETERMINATION_OUTCOME: 'Sent a determination. Outcome: {submission.determination.clean_outcome}', + MESSAGES.DETERMINATION_OUTCOME: 'Sent a determination. Outcome: {submission.determination.clean_outcome}', MESSAGES.INVITED_TO_PROPOSAL: 'Invited to submit a proposal', MESSAGES.REVIEWERS_UPDATED: 'reviewers_updated', MESSAGES.NEW_REVIEW: '{user} submitted a review' @@ -155,6 +155,7 @@ class EmailAdapter(AdapterBase): MESSAGES.COMMENT: 'notify_comment', MESSAGES.TRANSITION: 'messages/email/transition.html', MESSAGES.DETERMINATION_OUTCOME: 'messages/email/determination.html', + MESSAGES.INVITED_TO_PROPOSAL: 'messages/email/invited_to_proposal.html', } def notify_comment(self, **kwargs): diff --git a/opentech/apply/activity/templates/messages/email/invited_to_proposal.html b/opentech/apply/activity/templates/messages/email/invited_to_proposal.html new file mode 100644 index 0000000000000000000000000000000000000000..f840778810b1783f1e29d394fbbe54fa0e503b6b --- /dev/null +++ b/opentech/apply/activity/templates/messages/email/invited_to_proposal.html @@ -0,0 +1,9 @@ +{% extends "messages/email/base.html" %} + +{% block content %} +We’ve reviewed your Concept Note and think it could be a good fit for OTF funding. We would like to invite you to submit a Proposal with more details about your project. + +You can find more information about what we’d like to see in your Proposal here: https://www.opentech.fund/apply/guide#sections + +The system will allow you to save a draft of your Proposal as you work on it. When you feel it is ready for our review, please just “Submit†and we’ll know to take a look at it. We’ll reply to you with feedback on your Proposal shortly after you submit it. +{% endblock %}