Skip to content

Commit

Permalink
fix bug in email package
Browse files Browse the repository at this point in the history
  • Loading branch information
znewsham committed Apr 21, 2023
1 parent 8507ec3 commit 955373c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/email/email.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ Email.send = function(options) {
}

if (mailUrlEnv || mailUrlSettings) {
const transport = getTransport();
const transport = getTransport.call(Email);
smtpSend(transport, options);
return;
}
Expand Down
2 changes: 1 addition & 1 deletion packages/email/package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
summary: 'Send email messages',
version: '2.2.2',
version: '2.2.2-1',
});

Npm.depends({
Expand Down

0 comments on commit 955373c

Please sign in to comment.