We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The text was updated successfully, but these errors were encountered:
def send_notifs_when_first_reply(): first_replies = collect_first_replies() for url, subject, emails, display_name in first_replies: contacts = [{"email": email} for email in emails] params = { "url": f"{url}?mtm_campaign=firstreply&mtm_medium=email", "topic_subject": subject, "display_name": display_name, } send_email( to=[{"email": DEFAULT_FROM_EMAIL}], params=params, template_id=settings.SIB_FIRST_REPLY_TEMPLATE, kind=EmailSentTrackKind.FIRST_REPLY, bcc=contacts, )
Sorry, something went wrong.
l'envoi en destinataire à DEFAULT_FROM_EMAIL est un défaut. il devrait être résolu avec #670
DEFAULT_FROM_EMAIL
vincentporte
No branches or pull requests
The text was updated successfully, but these errors were encountered: