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,
2014-02-25 14:08 GMT+04:00 The Dude (Abides) :
> (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 ad
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 vars
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
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
1
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
1
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
same here, we are using Postal with Mailgun, no issues so far
On Mon, Feb 24, 2014 at 1:42 PM, Dave Della Costa wrote:
> 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 y
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 li
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
How about the JavaMail API? here is an example :
(defn- map->properties
"Converts a Map 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)))
(defn mail "
11 matches
Mail list logo