Spam check your emails using Postmark's API
npm install grunt-spamcheck

> Spam check your emails using Postmark's API
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
``shell`
npm install grunt-spamcheck --save-dev
After the plugin is installed, it can be enabled in your Gruntfile:
`js`
grunt.loadNpmTasks('grunt-spamcheck');
command._Options
$3
_Specifies whether you would like more detailed reporting._Type:
StringDefault:
longOptions:
short, long
$3
_Specifies whether you want to hide the score graph._Type:
BooleanDefault:
false
Examples
`javascript
grunt.initConfig({
spamcheck: {
emails: {
report: 'long',
src: ['emails/template1.html', 'emails/template2.html', 'emails/template3.html']
}
}
});
`Tests
_Run this task with the grunt test` command._