-
-
Notifications
You must be signed in to change notification settings - Fork 775
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3219 from oddballbutler/emailForLowBounty
Send an email if a bounty is funded below a threshold
- Loading branch information
Showing
4 changed files
with
56 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,7 @@ | |
from django.templatetags.static import static | ||
from django.utils import timezone, translation | ||
from django.utils.translation import gettext | ||
from django.utils.translation import gettext_lazy as _ | ||
|
||
import requests | ||
import twitter | ||
|
@@ -42,6 +43,31 @@ | |
logger = logging.getLogger(__name__) | ||
|
||
|
||
def notify_of_lowball_bounty(bounty): | ||
"""Send an email to [email protected] with the lowball bounty info | ||
Args: | ||
bounty (dashboard.models.Bounty): The lowball bounty object | ||
""" | ||
to_email = '[email protected]' | ||
from_email = settings.CONTACT_EMAIL | ||
cur_language = translation.get_language() | ||
try: | ||
setup_lang(to_email) | ||
subject = _("Low Bounty Notification") | ||
body = \ | ||
f"Bounty: {bounty}\n\n" \ | ||
f"url: {bounty.url}\n\n" \ | ||
f"Owner Name: {bounty.bounty_owner_name}\n\n" \ | ||
f"Owner Email: {bounty.bounty_owner_email}\n\n" \ | ||
f"Owner Address: {bounty.bounty_owner_address}\n\n" \ | ||
f"Owner Profile: {bounty.bounty_owner_profile}" | ||
send_mail(from_email, to_email, subject, body, from_name=_("No Reply from Gitcoin.co"), categories=['admin'], ) | ||
finally: | ||
translation.activate(cur_language) | ||
|
||
|
||
def github_org_to_twitter_tags(github_org): | ||
"""Build a string of github organization twitter tags. | ||
|
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