fix: email notifiations

This commit is contained in:
Nevo David 2026-01-08 21:44:43 +07:00
parent 07238a06a6
commit 3e8f5ddca6
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ export class NotificationService {
}
async sendEmail(to: string, subject: string, html: string, replyTo?: string) {
await this._emailService.sendEmail(to, subject, html, 'bottom', replyTo);
await this._emailService.sendEmail(to, subject, html, 'top', replyTo);
}
hasEmailProvider() {