forwardemail / email-templates

Create, preview (browser/iOS Simulator), and send custom email templates for Node.js. Made for @forwardemail, @ladjs, @cabinjs, @spamscanner, and @breejs.
https://forwardemail.net/docs/send-emails-with-node-js-javascript
MIT License
3.64k stars 339 forks source link

add config option to disable automatic preview #419

Closed PhilippMolitor closed 3 years ago

PhilippMolitor commented 3 years ago

I found there is no real way to disable the automatic preview, only when setting NODE_ENV to something non-standard, which could interfere with other parts of the application.

I'd love to see something like:

const mailer = new Email({
  preview: {
    enabled: false,
  }
});
PhilippMolitor commented 3 years ago

I just found out you can do: preview: false and preview: true. Please document this, thanks!