Configure Email Package?

Is it possible to configure the email package to always send the same headers in every email?

Something like

Email.configure({headers: {...}});

Have you thought about wrapping the email function?

SuperMail = function (to, content) { 
  Email.send({
    from: "me@me.com",
    to: to,
    etc...
  })
}

That’s what I ended up doing. Thanks!