Marc Harter
Marc Harter
We don't URL encode the subject directly in this project (but perhaps the email dependency does). We do use `mustache.render` for templates which I believe will modify content to remove...
OK, URL encoded would be something like this which seems unlikely: ``` Counter%20increment%20(20000)%20for%20%22orderNumberElectronic%22%20is%20too%20large ``` In testing Mustache directly, I'm not seeing that either: ```js Mustache.render(`Counter increment (20000) for "orderNumberElectronic" is...
Thanks for reporting, sounds like a bug. A PR is welcome.
winston-mail supports whatever https://github.com/eleith/emailjs supports (options are passed directly), it appears XOAuth2 is supported.
This library does not support stacking notifications.
Sure thing, you could write a little wrapper to only allow one in the queue at a time.
If you use the same instance of humane, they will not overlap but will queue, are you creating a new instance every time?
In `app.module.ts`, what happens if you replace: ```js session({ store: new (RedisStore(session))({ client: redisClientFactory, }), secret: 'my-secret', resave: false, saveUninitialized: false, }), ``` With: ```js session({ store: new RedisStore({ client:...
OK, I'm unfamiliar with NestJS so I'm not sure what else is going on under the hood, what version of `connect-redis` are you running?
to load a shapefile, checkout the updated readme, it may answer your question, basically you should do: ``` js new Shapefile ({ shp: link + ". shp", dbf: link +...