Skip to content

Commit

Permalink
removed const
Browse files Browse the repository at this point in the history
  • Loading branch information
gubbih committed Nov 22, 2023
1 parent c7da012 commit 2d4332f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nodemailer/mailService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export async function sendEmail(user: User, token: string) {
},
});
// send mail with defined transport object
const info = await transporter.sendMail({
await transporter.sendMail({
from: `"5-semester procejct 👻" <${gmail}>`, // sender address
to: user.email, // list of receivers
subject: 'Testmail', // Subject line
Expand Down

0 comments on commit 2d4332f

Please sign in to comment.