Changes between Initial Version and Version 2 of Ticket #35864


Ignore:
Timestamp:
Oct 28, 2024, 3:02:31 PM (3 weeks ago)
Author:
Mike Edmunds
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35864

    • Property Triage Stage UnreviewedAccepted
    • Property Summary EmailMessage.connection option ignored when using send_messages()Warn that EmailMessage.connection option is ignored when using send_messages()
    • Property Type UncategorizedCleanup/optimization
    • Property Owner set to Mike Edmunds
    • Property Status newassigned
  • Ticket #35864 – Description

    initial v2  
    1212        # Override the ESP for users in the EU; otherwise the default is fine.
    1313        if user.profile.must_use_eu_data_processor():
    14             email.connection = mail.get_connection(hostname="smtp-eu.example.net")
     14            email.connection = mail.get_connection(host="smtp-eu.example.net")
    1515        notification_emails.append(email)
    1616    return notification_emails
Back to Top