diff --git a/History.md b/History.md index ae80eec32e..b60cecad65 100644 --- a/History.md +++ b/History.md @@ -4,6 +4,10 @@ * `meteor-tool@2.4` - `meteor show` now reports if a package is deprecated + +* `email@2.2` + - Modernized package code + - #### Independent Releases diff --git a/packages/email/email.js b/packages/email/email.js index 89090db3e6..41a5a2aa1a 100644 --- a/packages/email/email.js +++ b/packages/email/email.js @@ -24,7 +24,7 @@ export const EmailInternals = { const MailComposer = EmailInternals.NpmModules.mailcomposer.module; const makeTransport = function (mailUrlString) { - // TODO check for + const mailUrl = urlModule.parse(mailUrlString, true); const mailUrl = urlModule.parse(mailUrlString, true);