Re: Email delivery libs not working

2014-02-25 Thread The Dude (Abides)
I managed to get Postal delivery working with Mandrill, still use of templates with formatting v helpful. Mailer and Postal have a slight problem on recognizing the meta info for smtp auth. So with some fiddling figured out how to merge Clostache into Postal for html templates with dynamic

Re: Email delivery libs not working

2014-02-25 Thread Michael Klishin
2014-02-25 14:08 GMT+04:00 The Dude (Abides) exel...@gmail.com: (postal/send-message ^{:host smtp.mandrillapp.com :user your mandrill acct email address :pass your mandrill api key :port 587} {:type text/html :from from email address :to to email

Re: Email delivery libs not working

2014-02-25 Thread exel...@gmail.com
Let me know whenever its updated, dynamic email and img resize v heavy use cases. You guys are doing an amazing job with all the libs, most of them higher end stuff. I've never done msg queuing or used a graph db, so looking forward to expanding. Its a polygot reality hereon. P. On Feb 25,

Email delivery libs not working

2014-02-24 Thread The Dude (Abides)
Hi, I'm new to clojure and have got a productive handle on CRUD, sessions, routing, writing functions. Last couple things are email delivery, image processing (resizing). So I looked on the clojure-toolbox site for email delivery libs with smtp authentication for a Mandrill acct fo

Re: Email delivery libs not working

2014-02-24 Thread Jim - FooBar();
How about the JavaMail API? here is an example : (defn- map-properties Converts a MapString, String to a java.util.Properties object. [^java.util.Map property-value-map] {:pre [(every? #(every? string? %) property-value-map)]} (doto (java.util.Properties.) (.putAll property-value-map)))

Re: Email delivery libs not working

2014-02-24 Thread The Dude (Abides)
Hi Jim, am not opposed to using java and put the code in a diff namespace to reuse. Am going to try out a lib for delivery svc, one for Mandrill and the other for Postmark. If any glitches there, will use java as you suggested. Thanks for the working example. Pardeep. -- You received this

Re: Email delivery libs not working

2014-02-24 Thread Dave Della Costa
I'm sending authenticated emails via Mandrill with Postal and not having any trouble, and setting it up was pretty much a smooth workable out-of-the-gate solution. If you describe the errors or issues you're experiencing someone may be able to help, but it's absolutely not the case that these

Re: Email delivery libs not working

2014-02-24 Thread László Török
same here, we are using Postal with Mailgun, no issues so far On Mon, Feb 24, 2014 at 1:42 PM, Dave Della Costa ddellaco...@gmail.comwrote: I'm sending authenticated emails via Mandrill with Postal and not having any trouble, and setting it up was pretty much a smooth workable

Re: Email delivery libs not working

2014-02-24 Thread Sam Ritchie
If you want to use Mandrill, here's a gist with my core.async mandrill API code I wrote for PaddleGuru: https://gist.github.com/sritchie/9191297 You can figure out the requires from the namespace declaration, I think. I use the conf namespace to get my API key (toggled for prod and dev), and

Re: Email delivery libs not working

2014-02-24 Thread The Dude (Abides)
I'm not inferring it doesn't work at all as obviously over the years some of these libs have worked for someone. However these libs are not working for me with Mandrill which has worked seamlessly for email delivery in other langs. I checked the API logs on Mandrill and it appears in the last

Re: Email delivery libs not working

2014-02-24 Thread The Dude (Abides)
I'm not inferring it doesn't work at all as obviously over the years some of these libs have worked for someone. However these libs are not working for me with Mandrill which has worked seamlessly for email delivery in other langs. I checked the API logs on Mandrill and it appears in the last

Re: Email delivery libs not working

2014-02-24 Thread The Dude (Abides)
I'm not inferring it doesn't work at all as obviously over the years some of these libs have worked for someone. However these libs are not working for me with Mandrill which has worked seamlessly for email delivery in other langs. I checked the API logs on Mandrill and it appears in the last