-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Change email templates * Improve reply emails code * Change call to action * Standardize email subjects
- Loading branch information
1 parent
de6e368
commit 9486f1b
Showing
4 changed files
with
36 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
<!-- TYPES: | ||
name: | ||
type: string | ||
branding_site_name: | ||
type: string | ||
branding_site_email: | ||
type: string | ||
reply_emails: | ||
type: array | ||
items: | ||
type: string | ||
--> | ||
{% extends 'emails/base.html' %} | ||
|
||
{% block content %} | ||
<h2><b>{{ name }}</b> has been marked as deleted on {{ branding_site_name }}</h2> | ||
<p style="font-size: 1.2em; color: #8B2222"> | ||
<b>Oh no!</b> Your club has <b>been removed</b> from {{ branding_site_name }} by the <b>Office of Student Affairs</b>. | ||
<h2><b>{{ name }}</b> status update on Penn Clubs</h2> | ||
<p style="font-size: 1.2em;"> | ||
Your club has been removed from Penn Clubs by the Office of Student Affairs. | ||
</p> | ||
<p style="font-size: 1.2em"> | ||
If you have any questions or concerns, please | ||
respond to this email or <a href="mailto:{% for email in reply_emails %}{% if not forloop.first %},{% endif %}{{ email }}{% endfor %}">contact the Office of Student Affairs</a>. | ||
</p> | ||
<p style="font-size: 1.2em">If you believe this is an error, please contact <a href="mailto:{{ branding_site_email }}">{{ branding_site_email }}</a>.</p> | ||
{% endblock %} | ||
{% endblock %} |