Skip to content

Commit

Permalink
Merge pull request #4549 from gitcoinco/fix-invite-email
Browse files Browse the repository at this point in the history
fix spoofing email sender on bounty invite
  • Loading branch information
thelostone-mc authored May 31, 2019
2 parents f0439bb + fd5b9ff commit 9e9e414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/marketing/mails.py
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ def funder_payout_reminder(to_email, bounty, github_username, live):
def share_bounty(emails, msg, profile, invite_url=None, kudos_invite=False):
for email in emails:
to_email = email
from_email = profile.email
from_email = settings.CONTACT_EMAIL
subject = "You have been invited to work on a bounty."
html, text = render_share_bounty(to_email, msg, profile, invite_url, kudos_invite)
send_mail(
Expand Down

0 comments on commit 9e9e414

Please sign in to comment.