( inviterName: string, organizationName: string, organizationRole: 'admin' | 'member', workspaceInvitations: WorkspaceInvitation[], acceptUrl: string )
| 75 | } |
| 76 | |
| 77 | export async function renderBatchInvitationEmail( |
| 78 | inviterName: string, |
| 79 | organizationName: string, |
| 80 | organizationRole: 'admin' | 'member', |
| 81 | workspaceInvitations: WorkspaceInvitation[], |
| 82 | acceptUrl: string |
| 83 | ): Promise<string> { |
| 84 | return await render( |
| 85 | BatchInvitationEmail({ |
| 86 | inviterName, |
| 87 | organizationName, |
| 88 | organizationRole, |
| 89 | workspaceInvitations, |
| 90 | acceptUrl, |
| 91 | }) |
| 92 | ) |
| 93 | } |
| 94 | |
| 95 | export async function renderHelpConfirmationEmail( |
| 96 | type: 'bug' | 'feedback' | 'feature_request' | 'other', |
no test coverage detected