Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update some email copy #9315

Merged
merged 2 commits into from
Jul 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions app/retail/emails.py
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ def render_bounty_feedback(bounty, persona='submitter', previous_bounties=[]):

kyle, frank & alisa (gitcoin product team)

PS - we've got some new gitcoin schwag on order. send me your mailing address and your t shirt size and i'll ship you some.
PS - we've got some new gitcoin schwag on order. if you are intersted, you can use discount code product-feedback-is-a-gift for 50% off your order :).

"""
elif persona == 'funder':
Expand All @@ -526,7 +526,7 @@ def render_bounty_feedback(bounty, persona='submitter', previous_bounties=[]):

kyle, frank & alisa (gitcoin product team)

PS - we've got some new gitcoin schwag on order. if interested, let us know and we can send you a code to order some :)
PS - we've got some new gitcoin schwag on order. if you are intersted, you can use discount code product-feedback-is-a-gift for 50% off your order :)

"""
elif bounty.status == 'cancelled':
Expand All @@ -547,7 +547,7 @@ def render_bounty_feedback(bounty, persona='submitter', previous_bounties=[]):

kyle, frank & alisa (gitcoin product team)

PS - we've got some new gitcoin schwag on order. if interested, let us know and we can send you a code to order some :)
PS - we've got some new gitcoin schwag on order. if you are intersted, you can use discount code product-feedback-is-a-gift for 50% off your order :)

"""
else:
Expand Down Expand Up @@ -600,7 +600,7 @@ def render_funder_stale(github_username, days=60, time_as_str='a couple months')
response_txt = f"""
hi {github_username},

kyle, frank, and alisa from Gitcoin here (CC scott and vivek too) — i see you haven't funded an issue in {time_as_str}.
kyle, frank, and alisa from Gitcoin here — i see you haven't funded an issue in {time_as_str}.

in the spirit of making Gitcoin better + checking in:

Expand All @@ -611,7 +611,7 @@ def render_funder_stale(github_username, days=60, time_as_str='a couple months')
> are you interested in joining one of our upcoming hackathons? it's possible
we could do so at a discount, as you're a current funder on the platform.

appreciate you being a part of the community + let us know if you'd like some Gitcoin schwag, we can send a link your way to order some :)
appreciate you being a part of the community + if you are intersted, you can use discount code product-feedback-is-a-gift for 50% off your order :)

~ kyle, frank & alisa (gitcoin product team)

Expand Down Expand Up @@ -1420,13 +1420,13 @@ def render_new_bounty_roundup(to_email):

@staff_member_required
def weekly_recap(request):
response_html, _ = render_weekly_recap("mark.beacom@consensys.net")
response_html, _ = render_weekly_recap("product@gitcoin.co")
return HttpResponse(response_html)


@staff_member_required
def unread_notification_email_weekly_roundup(request):
response_html, _, _ = render_unread_notification_email_weekly_roundup('sebastian.tharakan97@gmail.com')
response_html, _, _ = render_unread_notification_email_weekly_roundup('product@gitcoin.co')
return HttpResponse(response_html)

@staff_member_required
Expand Down