mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
Implements a bulk send feature allowing users to upload a CSV file to create multiple documents from a template. Includes CSV template generation, background processing, and email notifications. <img width="563" alt="image" src="https://github.com/user-attachments/assets/658cee71-6508-4a00-87da-b17c6762b7d8" /> <img width="578" alt="image" src="https://github.com/user-attachments/assets/bbfac70b-c6a0-466a-be98-99ca4c4eb1b9" /> <img width="635" alt="image" src="https://github.com/user-attachments/assets/65b2f55d-d491-45ac-84d6-1a31afe953dd" /> ## Changes Made - Added `TemplateBulkSendDialog` with CSV upload/download functionality - Implemented bulk send job handler using background task system - Created email template for completion notifications - Added bulk send option to template view and actions dropdown - Added CSV parsing with email/name validation ## Testing Performed - CSV upload with valid/invalid data - Bulk send with/without immediate sending - Email notifications and error handling - Team context integration - File size and row count limits Resolves #1550
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
import { z } from 'zod';
|
|
|
|
import { ZRequestMetadataSchema } from '../../../universal/extract-request-metadata';
|
|
import { type JobDefinition } from '../../client/_internal/job';
|
|
|
|
const SEND_BULK_COMPLETE_EMAIL_JOB_DEFINITION_ID = 'send.bulk.complete.email';
|
|
|
|
const SEND_BULK_COMPLETE_EMAIL_JOB_DEFINITION_SCHEMA = z.object({
|
|
userId: z.number(),
|
|
templateId: z.number(),
|
|
templateName: z.string(),
|
|
totalProcessed: z.number(),
|
|
successCount: z.number(),
|
|
failedCount: z.number(),
|
|
errors: z.array(z.string()),
|
|
requestMetadata: ZRequestMetadataSchema.optional(),
|
|
});
|
|
|
|
export type TSendBulkCompleteEmailJobDefinition = z.infer<
|
|
typeof SEND_BULK_COMPLETE_EMAIL_JOB_DEFINITION_SCHEMA
|
|
>;
|
|
|
|
export const SEND_BULK_COMPLETE_EMAIL_JOB_DEFINITION = {
|
|
id: SEND_BULK_COMPLETE_EMAIL_JOB_DEFINITION_ID,
|
|
name: 'Send Bulk Complete Email',
|
|
version: '1.0.0',
|
|
trigger: {
|
|
name: SEND_BULK_COMPLETE_EMAIL_JOB_DEFINITION_ID,
|
|
schema: SEND_BULK_COMPLETE_EMAIL_JOB_DEFINITION_SCHEMA,
|
|
},
|
|
handler: async ({ payload, io }) => {
|
|
const handler = await import('./send-bulk-complete-email.handler');
|
|
|
|
await handler.run({ payload, io });
|
|
},
|
|
} as const satisfies JobDefinition<
|
|
typeof SEND_BULK_COMPLETE_EMAIL_JOB_DEFINITION_ID,
|
|
TSendBulkCompleteEmailJobDefinition
|
|
>;
|