[WEB-6420] chore: self-host social icons in project invitation email (#8718)

* chore: add self-hosted social icon assets for email templates

* chore: pass current_site to project invitation email context

* chore: replace mailinblue CDN icons with self-hosted static assets
This commit is contained in:
Anmol Singh Bhatia 2026-03-05 18:17:42 +05:30 committed by GitHub
parent 71b0d30afb
commit c3a9f99789
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 5 additions and 4 deletions

View file

@ -37,6 +37,7 @@ def project_invitation(email, project_id, token, current_site, invitor):
"first_name": user.first_name,
"project_name": project.name,
"invitation_url": abs_url,
"current_site": current_site,
}
html_content = render_to_string("emails/invitations/project_invitation.html", context)