Brad Christie
Brad Christie
@Eldblom RE: gulp May make sense to add a "gulp" script (which npm will reference from `node_modules/`) and modify directions to run that script. e.g. (edit to (package.json`): ``` "scripts":...
I like it. My only qualm is subscriptions should be defined globally and iterated over once (and checked as needed) rather than every `.listen` attaching a new event subscription. Make...
Are you planning on storing settings in Environment.CommonAppConfig? Any ideas on this, as I'd like to stand up SIM as a service (rest or wcf) and allow it to be...
And apologies, logged into personal git. /cc @brad-christie
Something like the following should work from inside your mailer: ``` public override MvcMailMessage Populate(Action action) { MvcMailMessage mailMessage = base.Populate(action); if (mailMessage.IsBodyHtml) { mailMessage.Body = new PreMailer.Net.PreMailer().MoveCssInline(mailMessage.Body, true).Html; }...