Skip to content

Commit

Permalink
Add no-reply address to meeting invite emails (#598)
Browse files Browse the repository at this point in the history
  • Loading branch information
tnurse18 committed Jan 25, 2022
1 parent 4d2a3c7 commit 77d4600
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions meetings/views.py
Expand Up @@ -389,6 +389,7 @@ def send_invite(meeting, is_update=False, is_cancellation=False):
if is_cancellation:
subject = "Canceled: " + meeting.name

email = DefaultLNLEmailGenerator(subject, to_emails=[], bcc=recipients, from_email=settings.EMAIL_FROM_NOREPLY,
template_basename="emails/email_basic", body=agenda, attachments=[invite])
email = DefaultLNLEmailGenerator(subject, to_emails=settings.EMAIL_FROM_NOREPLY, bcc=recipients,
from_email=settings.EMAIL_FROM_NOREPLY, template_basename="emails/email_basic",
body=agenda, attachments=[invite])
email.send()

0 comments on commit 77d4600

Please sign in to comment.