We're going to use Postmark to send report emails. This diff introduces a simple config file format:
{ "postmarkToken": "api key here", "senderEmail": "comm@example.com", "mailingGroups": { "inconsistencyReports": "mailgroup1@example.com", "mediaReports": "mailgroup2@example.com", "errorReports": "mailgroup3@example.com" } }
The config will be loaded from CLI args or file - implemented in the next diff
Depends on D8865