Skip to content
Snippets Groups Projects
Commit 0e82b8aa authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Refactor the emails to have a base template

parent 3ea84039
No related branches found
No related tags found
No related merge requests found
...@@ -151,11 +151,12 @@ class EmailAdapter(AdapterBase): ...@@ -151,11 +151,12 @@ class EmailAdapter(AdapterBase):
MESSAGES.COMMENT: 'notify_comment', MESSAGES.COMMENT: 'notify_comment',
} }
def notify_comment(self, comment, **kwargs): def notify_comment(self, **kwargs):
comment = kwargs['comment']
if not comment.private: if not comment.private:
return render_to_string('messages/email/comment.html', kwargs) return render_to_string('messages/email/comment.html', kwargs)
def email_from_submission(self, submission, **kwargs): def email_from_submission(self, **kwargs):
return render_to_string('funds/email/confirmation.html', kwargs) return render_to_string('funds/email/confirmation.html', kwargs)
def send_message(self, message, submission, **kwargs): def send_message(self, message, submission, **kwargs):
......
Dear {{ submission.user.get_full_name|default:"applicant" }},
{% block content %}{% endblock %}
You can access your application here: {{ request.scheme }}://{{ request.get_host }}{{ submission.get_absolute_url }}
If you have any questions, please email us at info@opentechfund.org.
Kind Regards,
The OTF Team
--
Open Technology Fund
https://www.opentech.fund/
Dear {{ submission.user.get_full_name|default:"applicant" }}, {% extends "messages/email/base.html" %}
{% block content %}
There has been a new comment on your application: {{ submission.title }} There has been a new comment on your application: {{ submission.title }}
{{ comment.message }} {{ comment.message }}
{% endblock %}
You can access your application here: {{ request.scheme }}://{{ request.get_host }}{{ submission.get_absolute_url }}
If you have any questions, please email us at info@opentechfund.org.
Kind Regards,
The OTF Team
--
Open Technology Fund
https://www.opentech.fund/
Dear {{ submission.user.get_full_name|default:"applicant" }}, {% extends "messages/email/base.html" %}
{% block content %}
{% with email_context=submission.page.specific %} {% with email_context=submission.page.specific %}
We appreciate your {{ email_context.title }} application submission to the Open Technology Fund. We will review and reply to your We appreciate your {{ email_context.title }} application submission to the Open Technology Fund. We will review and reply to your
submission as quickly as possible. Our reply will have the next steps for your {{ email_context.title }} application. submission as quickly as possible. Our reply will have the next steps for your {{ email_context.title }} application.
...@@ -8,17 +9,7 @@ You can find more information about our support options, review process and sele ...@@ -8,17 +9,7 @@ You can find more information about our support options, review process and sele
{{ email_context.confirmation_text_text }} {{ email_context.confirmation_text_text }}
{% endwith %} {% endwith %}
If you have any questions, please email us at info@opentechfund.org.
You can access your application at {{ submission.get_absolute_url }}
Project name: {{ submission.title }} Project name: {{ submission.title }}
Contact name: {{ submission.user.get_full_name }} Contact name: {{ submission.user.get_full_name }}
Contact email: {{ submission.user.email }} Contact email: {{ submission.user.email }}
{% endblock %}
Thanks again,
The OTF Team
--
Open Technology Fund
https://www.opentech.fund/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment