Link reminders module.
This commit is contained in:
parent
da82efa356
commit
3351f62e88
2 changed files with 14 additions and 2 deletions
|
|
@ -50,7 +50,13 @@
|
|||
|
||||
;; Prints email to the console
|
||||
(define (print-reminder-email em)
|
||||
(print em))
|
||||
(print "### From: " (ldict-ref em 'from "-"))
|
||||
(print "### To: " (ldict-ref em 'to))
|
||||
(print "### Subject: " (ldict-ref em 'subject))
|
||||
(let loop ((lines (ldict-ref em 'body)))
|
||||
(when (not (null? lines))
|
||||
(print (car lines))
|
||||
(loop (cdr lines)))))
|
||||
|
||||
;; Creates and prints reminder email for given member record
|
||||
(define (make+print-reminder-email mr)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue