We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 929271b commit 8fddf1cCopy full SHA for 8fddf1c
src/utils/mail.ts
@@ -40,6 +40,7 @@ export class mailUtils {
40
this.mailer.sendMail({ to: `${name} <${email}>`, subject, html, text }, (err, info) => {
41
if (err) return reject(err);
42
43
+ console.log(`[INFO] Sent mail ${info.messageId} to ${name} with subject ${subject}`);
44
resolve(info);
45
});
46
0 commit comments