Load sender address from configuration.

This commit is contained in:
Dominik Pantůček 2023-04-12 20:10:00 +02:00
parent 8e188a0a8c
commit 073c1efbc6
4 changed files with 16 additions and 10 deletions

View file

@ -28,7 +28,6 @@
(module
reminders
(
*reminder-from*
make+print-reminder-email
make+send-reminder-email
)
@ -41,10 +40,8 @@
util-dict-list
members-payments
util-format
brmember-format)
;; From address
(define *reminder-from* (make-parameter "Brmlab - Rada <rada@brmlab.cz>"))
brmember-format
configuration)
;; Creates reminder email body
(define (reminder-email-body mr)
@ -101,7 +98,7 @@
(let ((em (make-reminder-email mr)))
(print "Sending " (ldict-ref em 'subject) " originally to " (ldict-ref em 'to))
(send-mail (ldict-ref em 'body)
#:from (*reminder-from*)
#:from (*email-from*)
#:to "joe@joe.cz"
#:subject (ldict-ref em 'subject))))