Skip to content

Commit c6975e0

Browse files
committed
Tweak language for Superstars
Updates the emails to specify that it's MAGWest since all three major events have Superstar functionality now
1 parent b6dd376 commit c6975e0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

magwest/automated_emails.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@
4444

4545

4646
AutomatedEmailFixture(
47-
Attendee, 'Thank you for your Super MAGWest Superstars Donation!',
47+
Attendee, 'Thank you for your MAGWest Superstars Donation!',
4848
'superstar_intro.html',
4949
filter=lambda a: a.extra_donation >= c.SUPERSTAR_MINIMUM and a.active_receipt and not a.amount_unpaid,
5050
ident='superstar_intro',
5151
when=[before(c.SUPERSTAR_DEADLINE)],
52-
sender='MAGWest Superstar Program <superstars@magfest.org>'
52+
sender='MAGFest Superstar Program <superstars@magfest.org>'
5353
)
5454

5555

magwest/tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def superstar_receipts():
3333
already_emailed = session.query(Email.ident).filter(Email.ident == ident,
3434
Email.fk_id == attendee.id).first()
3535
if not already_emailed:
36-
subject = f"MAGFest {c.EVENT_YEAR} Superstar Donation Receipt"
36+
subject = f"MAGWest {c.EVENT_YEAR} Superstar Donation Receipt"
3737
body = render('emails/superstar_receipt.html', {'donation': donation, 'attendee': attendee},
3838
encoding=None)
3939
send_email("MAGWest Superstar Program <superstars@magfest.org>", attendee.email_to_address,

magwest/templates/emails/superstar_intro.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
With your donation, you are helping us to grow these events, create new content, educate more people about video game music, art, and history, and you are also supporting the continued preservation of video game culture and history. If you are interested in learning more about how you can continue supporting our mission, please reach out to us at {{ 'superstars@magfest.org'|email_to_link }}!
1313
</p>
1414
<p>
15-
You should receive an email as an official receipt for tax purposes, titled "MAGFest {{ c.EVENT_YEAR }} Superstar Donation Receipt."
15+
You should receive an email as an official receipt for tax purposes, titled "MAGWest {{ c.EVENT_YEAR }} Superstar Donation Receipt."
1616
If you donated multiple times (e.g., you upgraded an existing donation), you'll receive one email for each time you donated.
1717
</p>
1818
<p>Thank you again for your thoughtful and generous contribution.</p>

0 commit comments

Comments
 (0)