notes/cisco_ft_securex_registration.org

This commit is contained in:
Yann Esposito (Yogsototh) 2022-03-21 11:14:16 +01:00
parent a2566b13f3
commit 868b1aa708
Signed by untrusted user who does not match committer: yogsototh
GPG key ID: 7B19A4C650D59646

View file

@ -807,7 +807,12 @@ In order to achieve this; you should:
*** Dev details
#+begin_src clojure
(defschema EmailTemplate)
(s/defschema MailTemplate
(st/optional-keys
{:subject s/Str
:subtitle s/Str
:text s/Str ;; could contain HTML
:mail-source s/Str}))
(defprotocol EMailTemplatingService
(create-email-template [this email-template-id new-email-template])