Skip to content

Commit

Permalink
chore: add radix
Browse files Browse the repository at this point in the history
  • Loading branch information
ihooni committed Dec 2, 2019
1 parent d07b5b0 commit 25ebb43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/modules/Mailer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default class Mailer {
this.transporter = nodeMailer.createTransport({
service: process.env.MAIL_SERVICE,
host: process.env.MAIL_HOST,
port: parseInt(process.env.MAIL_PORT),
port: parseInt(process.env.MAIL_PORT, 10),
secure: true,
auth: {
user: process.env.MAIL_USERNAME,
Expand Down

0 comments on commit 25ebb43

Please sign in to comment.