From ce25e2fe7759e4dbd7dc0fb4c9d6238c5715b748 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Pant=C5=AF=C4=8Dek?= Date: Tue, 19 Sep 2023 21:03:25 +0200 Subject: [PATCH] Add CC header. --- src/notifications.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/notifications.scm b/src/notifications.scm index 2de4254..31020f4 100644 --- a/src/notifications.scm +++ b/src/notifications.scm @@ -119,10 +119,12 @@ (define (make-reminder-email mr) (make-ldict `((to . ,(brmember-info mr 'mail)) + (cc . ,(*notifications-cc*)) (subject . "Připomínka členských příspěvků / Membership fees reminder") (body . ,(reminder-email-body mr)) (headers . ,(list "Content-Type: text/plain; charset=\"UTF-8\"" - (format "From: ~A" (*email-from*)))) + (format "From: ~A" (*email-from*)) + (format "CC: ~A" (*notifications-cc*)))) ))) ;; Creates and prints reminder email for given member record