-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathinvitation_volunteer_message.html
30 lines (29 loc) · 1.19 KB
/
invitation_volunteer_message.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{% extends 'base_email.html' %}
{% block preheader %}Acceptance email for {{ h_name }}{% endblock %}
{% block content %}
<p>Hi {{ name }}!</p>
<p>
Thanks for applying as a volunteer for HackUPC 2021! Volunteering is one of the most important roles and we need people like you.
</p>
<p>
Therefore, we invite you to help us achieving our goals during this hackathon.
</p>
<p>
Don't forget to help us sharing HackUPC with your friends so that they can enjoy as well (sharing is caring).
</p>
<p>
Respond to this invitation by clicking on the "Confirm" link below.
</p>
{% include 'mails/include/email_button.html' with text='Confirm' url=confirm_url %}
{% include 'mails/include/cancel.html' %}
{% if reimb.waitlisted %}
{% include 'include/waitlisted_reimbursement.html' %}
{% elif reimb %}
<p>
Your reimbursement petition is being reviewed by our staff. Check your email in the next few days for an
update.
</p>
{% endif %}
{% include 'mails/include/arrival_departure_info.html' %}
{% include 'mails/include/closing.html' %}
{% endblock %}