tuddman /
moarweba
This seed repo provides a collection of Clojure libraries patterned together to get you up and running in less than one minute with a solid Clojure REST-ful Web Server.
Loading repository data…
kay1759 / repository
This library provides enqueueing mail to MailQueue in Clojure.
This library provides enqueueing mail to MailQueue in Clojure.
A file 'src/java/clj_enqueue_mail/email/Example.java' are created from 'resources/proto/clj_enqueue_mail/email.proto' by the command below:
protoc -I=/usr/include -I=/usr/local/include -I=resources/proto --java_out=src/java resources/proto/clj_enqueue_mail/*.proto
(require '[clj-enqueue-mail.core :as cem])
(cem/open <amqp server> <amqp server user> <amqp server password> <exchange> <queue> <queue error>)
(cem/send_mail
<sender address>
<receiver address>
<title>
<content (plain text)>)
(cem/close)
(cem/open "localhost" "app" "app"
"gen_server_mail_exchange" "gen_server_mail_queue" "gen_server_mail_queue_error")
(cem/send_mail
"sender@example.com"
"receiver@example.com"
"Greeting"
"Long time no see.\nHow are you ?")
(cem/close)
message Email {
required string from = 1;
required string to = 2;
required string subject = 3;
optional string text_body = 4;
optional string html_body = 5;
}
lein test
[MIT]
Selected from shared topics, language and repository description—not editorial ratings.
tuddman /
This seed repo provides a collection of Clojure libraries patterned together to get you up and running in less than one minute with a solid Clojure REST-ful Web Server.
andeemarks /
This library provides a Clojure interface to access the Novation Launchpad MK2 programmatically.
lomin /
This library for both Clojure and ClojureScript provides an 'each' selector to use in combination with specter and tree-like data structures. It also provides the macros '+>>' and 'each+>>' to chain specter transformations.
kay1759 /
This library provides Selenium Driver in Clojure - a wrapper of 'java selenium webdriver'.
bsinglet /
This library provides basic Tenable.io and Tenable.SC API functionality in Clojure.