Skip to content

Commit

Permalink
fix logs
Browse files Browse the repository at this point in the history
  • Loading branch information
birdpump committed May 23, 2024
1 parent 520aa86 commit 1caa9a1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion utils/app/email/sendEmail.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ export async function sendVerificationEmail(email, link) {
};
try {
let result = await sesClient.send(new SendEmailCommand(params));
console.log(`Email Sent: ${email} - Code: ${result}`);
console.log(result);
console.log(`Email Sent: ${email} - Code: ${result.httpStatusCode}`);
} catch (err) {
throw err;
}
Expand Down

0 comments on commit 1caa9a1

Please sign in to comment.