Skip to content
This repository was archived by the owner on Dec 12, 2025. It is now read-only.

Commit e5cfc8f

Browse files
committed
aaa
1 parent cbe387a commit e5cfc8f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

dist/services/MailService.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ const nodemailer_1 = __importDefault(require("nodemailer"));
99
const path_1 = __importDefault(require("path"));
1010
const dotenv_1 = require("dotenv");
1111
(0, dotenv_1.config)();
12+
console.log(process.env);
1213
class MailService {
1314
constructor() {
1415
this.transporter = nodemailer_1.default.createTransport({

src/services/MailService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export interface IMailService {
99
sendPasswordResetMail(to: string, resetLink: string): Promise<void>;
1010
sendAccountConfirmationMail(to: string, confirmationLink: string): Promise<void>;
1111
}
12-
12+
console.log(process.env)
1313
export class MailService implements IMailService {
1414
private transporter;
1515

0 commit comments

Comments
 (0)