Fork me on GitHub
#planck
<
2018-05-23
>
borkdude16:05:37

I wondered if I could do this script in Planck. Planck has an HTTP API. But how do I send e-mails with it? I could fall back to the command line of course. https://github.com/borkdude/balcony/blob/master/balcony.clj

mfikes16:05:47

@borkdude Planck also has a socket namespace. I can't recall if it supports SSL

borkdude16:05:33

It would be nicer if Planck had an API for this. Is this hard to build?

borkdude16:05:47

Or maybe a lib I could use but I suspect there are none except maybe in the node world which is not usable in Planck?

borkdude16:05:06

I’ll see how far I can get with socket

slipset16:05:31

Have a look at postal, and see how hard it would be to port.

slipset16:05:37

When I did the first implementation of the http stuff, I basically looked at cljs-http and added the missing infrastructure. Which was the hard bit.

slipset16:05:12

I don’t know much (Objective-)C