usethesource: Fix typo in email signature

This commit is contained in:
Ben Sturmfels 2024-01-31 12:33:47 +11:00
parent c287dac433
commit 9158aff702
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0

View file

@ -27,7 +27,7 @@ https://sfconservancy.org{reverse('usethesource:candidate', kwargs={'slug': cand
-- --
{signature} {signature}
(Via http//sfconservancy.org{reverse('usethesource:landing')})''' (Via https://sfconservancy.org{reverse('usethesource:landing')})'''
headers = {'Message-ID': candidate.email_message_id} headers = {'Message-ID': candidate.email_message_id}
return EmailMessage(subject, body, sender, to, headers=headers) return EmailMessage(subject, body, sender, to, headers=headers)
@ -47,7 +47,7 @@ https://sfconservancy.org{reverse('usethesource:candidate', kwargs={'slug': cand
-- --
{signature} {signature}
(Via http//sfconservancy.org{reverse('usethesource:landing')})''' (Via https://sfconservancy.org{reverse('usethesource:landing')})'''
headers = {'Message-ID': comment.email_message_id} headers = {'Message-ID': comment.email_message_id}
if in_reply_to := comment.in_reply_to(): if in_reply_to := comment.in_reply_to():
# From my testing, both "In-Reply-To" and "References" headers trigger # From my testing, both "In-Reply-To" and "References" headers trigger