feat: wip send an invoice mail the customer email

This commit is contained in:
Ahmed Bouhuolia
2023-12-14 23:49:23 +02:00
parent e5bcb1c19a
commit cfd4540a65
8 changed files with 221 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
import { Service } from 'typedi';
import { SendInvoiceMailDTO } from '@/interfaces';
@Service()
export class SendSaleInvoiceMail {
public sendSaleInvoiceMail(
tenantId: number,
saleInvoiceId: number,
messageDTO: SendInvoiceMailDTO
) {}
}