-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Send gift card claim code in email, too.
- Loading branch information
Showing
6 changed files
with
90 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{% extends "email/base/body.dhtml" %} | ||
|
||
{% block message %} | ||
{% include "email/base/p.html" %} | ||
Hi {{ student.first_name }}, | ||
{% include "email/base/p_close.html" %} | ||
{% include "email/base/p.html" %} | ||
Your ${{ gift_card.amount }} Amazon gift code is: <strong>{{ gift_card.code }}</strong> | ||
{% include "email/base/p_close.html" %} | ||
{% include "email/base/p.html" %} | ||
Copy and paste it into Amazon's gift card redemption page to claim your gift. | ||
{% include "email/base/p_close.html" %} | ||
{% include "email/base/p.html" %} | ||
And: be sure to tell your friends at {{ school.short_name }} to visit VoterBowl, too! | ||
{% include "email/base/p_close.html" %} | ||
{% endblock message %} |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{% extends "email/base/body.txt" %} | ||
|
||
{% block message %}Hi {{ student.first_name }}, | ||
Your ${{ gift_card.amount }} Amazon gift code is: {{ gift_card.code }} | ||
|
||
Copy and paste it into Amazon's gift card redemption page to claim your gift. | ||
|
||
And: be sure to tell your friends at {{ school.short_name }} to visit VoterBowl, too! | ||
{% endblock message %} |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
Your ${{ gift_card.amount }} Amazon gift card |
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