Skip to content
This repository was archived by the owner on Apr 8, 2026. It is now read-only.

Commit 09104f3

Browse files
committed
fix: Update SMTP host configuration in MailService
1 parent 09fb222 commit 09104f3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

dist/services/MailService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const path_1 = __importDefault(require("path"));
1010
class MailService {
1111
constructor() {
1212
this.transporter = nodemailer_1.default.createTransport({
13-
host: process.env.SMTP_HOST || "ssl0.ovh.net",
13+
host: process.env.SMTP_HOST || "mail.croissant-api.fr",
1414
port: Number(process.env.SMTP_PORT) || 465,
1515
secure: true, // true for 465, false for other ports
1616
auth: {

src/services/MailService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export class MailService implements IMailService {
1515

1616
constructor() {
1717
this.transporter = nodemailer.createTransport({
18-
host: process.env.SMTP_HOST || "ssl0.ovh.net",
18+
host: process.env.SMTP_HOST || "mail.croissant-api.fr",
1919
port: Number(process.env.SMTP_PORT) || 465,
2020
secure: true, // true for 465, false for other ports
2121
auth: {

0 commit comments

Comments
 (0)