Skip to content

Commit

Permalink
fix(email-plugin): Fix smtp auth
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbromley committed Sep 26, 2019
1 parent 230703f commit 98bc90a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/email-plugin/src/email-sender.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class EmailSender {
host: options.host,
port: options.port,
secure: options.secure,
auth: options.auth.user,
auth: options.auth,
} as SMTPTransport.Options);
await this.sendMail(email, transporter);
break;
Expand Down

0 comments on commit 98bc90a

Please sign in to comment.