122 lines
5.5 KiB
JavaScript
122 lines
5.5 KiB
JavaScript
"use strict";
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
}
|
|
Object.defineProperty(o, k2, desc);
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
};
|
|
var __importStar = (this && this.__importStar) || (function () {
|
|
var ownKeys = function(o) {
|
|
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
var ar = [];
|
|
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
return ar;
|
|
};
|
|
return ownKeys(o);
|
|
};
|
|
return function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
})();
|
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
};
|
|
var MailService_1;
|
|
var _a;
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.MailService = void 0;
|
|
const common_1 = require("@nestjs/common");
|
|
const config_1 = require("@nestjs/config");
|
|
const nodemailer = __importStar(require("nodemailer"));
|
|
let MailService = MailService_1 = class MailService {
|
|
configService;
|
|
logger = new common_1.Logger(MailService_1.name);
|
|
transporter;
|
|
constructor(configService) {
|
|
this.configService = configService;
|
|
const host = this.configService.get('SMTP_HOST');
|
|
const port = this.configService.get('SMTP_PORT') || 587;
|
|
const user = this.configService.get('SMTP_USER');
|
|
const pass = this.configService.get('SMTP_PASS');
|
|
if (host && user && pass) {
|
|
this.transporter = nodemailer.createTransport({
|
|
host,
|
|
port,
|
|
secure: port === 465,
|
|
auth: {
|
|
user,
|
|
pass,
|
|
},
|
|
});
|
|
this.logger.log(`📧 MailService initialized with host: ${host}`);
|
|
}
|
|
else {
|
|
this.logger.warn('⚠️ SMTP settings not fully configured. MailService will run in mock mode.');
|
|
}
|
|
}
|
|
async sendInvoiceEmail(to, data) {
|
|
const from = this.configService.get('SMTP_FROM') || 'support@intaleqapp.com';
|
|
const htmlContent = `
|
|
<div style="font-family: sans-serif; max-width: 600px; margin: auto; border: 1px solid #eee; padding: 20px; border-radius: 10px;">
|
|
<h2 style="color: #2563eb;">Intaleq Maps - Payment Successful</h2>
|
|
<p>Hello <b>${data.tenantName}</b>,</p>
|
|
<p>Thank you for subscribing to our <b>${data.plan}</b> plan. Your payment has been processed successfully.</p>
|
|
|
|
<div style="background: #f8fafc; padding: 15px; border-radius: 8px; margin: 20px 0;">
|
|
<p style="margin: 5px 0;"><b>Plan:</b> ${data.plan}</p>
|
|
<p style="margin: 5px 0;"><b>Amount:</b> ${data.amount}</p>
|
|
<p style="margin: 5px 0;"><b>Transaction ID:</b> ${data.transactionId}</p>
|
|
<p style="margin: 5px 0;"><b>Date:</b> ${new Date().toLocaleDateString()}</p>
|
|
</div>
|
|
|
|
<p>You can now access all your premium features from your dashboard.</p>
|
|
<hr style="border: none; border-top: 1px solid #eee; margin: 20px 0;">
|
|
<p style="font-size: 12px; color: #64748b;">If you have any questions, contact us at ${from}</p>
|
|
</div>
|
|
`;
|
|
if (!this.transporter) {
|
|
this.logger.warn(`[Mock Email] To: ${to}, Plan: ${data.plan}, Amount: ${data.amount}`);
|
|
return true;
|
|
}
|
|
try {
|
|
await this.transporter.sendMail({
|
|
from: `"Intaleq Support" <${from}>`,
|
|
to,
|
|
subject: `Invoice: ${data.plan} Subscription - Intaleq Maps`,
|
|
html: htmlContent,
|
|
});
|
|
this.logger.log(`✅ Invoice email sent to ${to}`);
|
|
return true;
|
|
}
|
|
catch (error) {
|
|
this.logger.error(`❌ Failed to send email: ${error.message}`);
|
|
return false;
|
|
}
|
|
}
|
|
};
|
|
exports.MailService = MailService;
|
|
exports.MailService = MailService = MailService_1 = __decorate([
|
|
(0, common_1.Injectable)(),
|
|
__metadata("design:paramtypes", [typeof (_a = typeof config_1.ConfigService !== "undefined" && config_1.ConfigService) === "function" ? _a : Object])
|
|
], MailService);
|
|
//# sourceMappingURL=mail.service.js.map
|