Skip to content

Commit

Permalink
feat(otis): holiday spirit
Browse files Browse the repository at this point in the history
vEnhance committed Nov 27, 2023
1 parent cfe3f1e commit 1343ece
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion venueQ/otis.py
Original file line number Diff line number Diff line change
@@ -338,7 +338,21 @@ def compose_email_body(self, data: Data, comments: str) -> str:
salutation = random.choice(["Hi", "Hello", "Hey"])

if datetime.today().month == 12 and datetime.today().day > 10:
closing = "Happy Holidays"
christmas_mv_url = random.choice(
[
"https://youtu.be/iTgcp1oDk2M", # Beautiful Christmas - Red Velvet + aespa
"https://youtu.be/LvgzpvB3uEw", # Christmas Present - GFriend
"https://youtu.be/mc274HUFhQQ", # Fallin Light - GFriend
"https://youtu.be/zi_6oaQyckM", # Merry and Happy - TWICE
"https://youtu.be/w14rSMl35ro", # Merry Christmas ahead - IU
"https://youtu.be/AU3QQLFNZR0", # My My - Purple Kiss
"https://youtu.be/hsh54g9JmC0", # This Christmas - TAEYEON
"https://youtu.be/y2BwMqpGzC8", # Timing - B1A4 + Oh My Girl
"https://youtu.be/kLUKXX0sfII", # Snowy - ITZY
"https://youtu.be/jQ_ogJWssXU", # Winter - Handong solo
]
)
closing = f"[Happy holidays]({christmas_mv_url})"
else:
closing = random.choice(
[

0 comments on commit 1343ece

Please sign in to comment.