60 lines
3.5 KiB
HTML
60 lines
3.5 KiB
HTML
{% extends 'ssmembership/email/base.html' %}
|
|
|
|
{#
|
|
Society Self-Service
|
|
Copyright © 2018-2019 Yingtong Li (RunasSudo)
|
|
|
|
Design by SendWithUs (Apache 2.0 licence)
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
#}
|
|
|
|
{% block content %}
|
|
<tr> <!-- main Email content -->
|
|
<th class="small-12 large-12 columns first last">
|
|
<table>
|
|
<tr>
|
|
<th>
|
|
<b><h5>Membership renewal</h5></b>
|
|
<p>Dear {{ name }},</p>
|
|
<p>From 2019, {{ import('django.conf').settings.ORG_NAME }} is required by law to review its membership annually. You can renew your membership for free by clicking the button below or visiting <a href="{{ baseurl }}{{ url('mimport_index') }}">{{ baseurl }}{{ url('mimport_index') }}</a>. The process is very quick and should take less than a minute.</p>
|
|
<p>By making sure your details are up to date, you'll also be able to receive personalised weekly emails with relevant news and events from around the Monash Medicine community.</p>
|
|
<div class="button">
|
|
<a href="{{ baseurl }}{{ renew_url }}" style="background-color:#f7931d;border:0px solid #f7931d;border-radius:3px;color:#ffffff;display:inline-block;font-family:sans-serif;font-size:16px;font-weight:bold;line-height:35px;text-align:center;text-decoration:none;width:300px;-webkit-text-size-adjust:none;mso-hide:all;">Renew membership for free</a>
|
|
</div>
|
|
<br>
|
|
<p>If you do not renew your membership by <b>20 March 2019</b>, your membership will expire, and you will not be able to buy tickets to {{ import('django.conf').settings.ORG_NAME }} events at member prices or run for election within {{ import('django.conf').settings.ORG_NAME }} without paying a membership fee. Please make sure to renew your membership by 20 March 2019 to avoid this.</p>
|
|
<p>If you do not want to renew your membership, or you are no longer a Monash medical student, simply ignore this email.</p>
|
|
<p>If you encounter any issues renewing your membership, or have any other questions, please contact the Secretary, Yingtong Li, at <a href="mailto:{{ import('django.conf').settings.AWS_SENDER_EMAIL }}">{{ import('django.conf').settings.AWS_SENDER_EMAIL }}</a>.</p>
|
|
<p style="font-size: x-small;">Please note that emails are being sent in stages. If other students have not received this email, please let them know that this is normal, and they should receive their email within 7 days. Otherwise, contact <a href="mailto:{{ import('django.conf').settings.AWS_SENDER_EMAIL }}">{{ import('django.conf').settings.AWS_SENDER_EMAIL }}</a>.</p>
|
|
</th>
|
|
<th class="expander"></th>
|
|
</tr>
|
|
</table>
|
|
</th>
|
|
</tr>
|
|
<tr> <!-- This container adds whitespace gap at the bottom of main content -->
|
|
<th class="small-12 large-12 columns first last">
|
|
<table>
|
|
<tr>
|
|
<th>
|
|
 
|
|
</th>
|
|
<th class="expander"></th>
|
|
</tr>
|
|
</table>
|
|
</th>
|
|
</tr>
|
|
{% endblock content %}
|