├── .circleci └── config.yml ├── .dir-locals.el ├── .github └── workflows │ └── clj-kondo.yml ├── .gitignore ├── LICENSE ├── README.md ├── deps.edn ├── resources └── donut │ └── email-templates │ ├── test.html │ └── test.txt ├── src └── donut │ └── email.clj └── test └── donut └── email_test.clj /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donut-party/email/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- 1 | ((nil 2 | (cider-clojure-cli-global-options . "-A:dev"))) 3 | -------------------------------------------------------------------------------- /.github/workflows/clj-kondo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donut-party/email/HEAD/.github/workflows/clj-kondo.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donut-party/email/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donut-party/email/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donut-party/email/HEAD/README.md -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donut-party/email/HEAD/deps.edn -------------------------------------------------------------------------------- /resources/donut/email-templates/test.html: -------------------------------------------------------------------------------- 1 | hi {{username}} html 2 | -------------------------------------------------------------------------------- /resources/donut/email-templates/test.txt: -------------------------------------------------------------------------------- 1 | hi {{username}} text 2 | -------------------------------------------------------------------------------- /src/donut/email.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donut-party/email/HEAD/src/donut/email.clj -------------------------------------------------------------------------------- /test/donut/email_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donut-party/email/HEAD/test/donut/email_test.clj --------------------------------------------------------------------------------