MCPcopy Index your code
hub / github.com/simstudioai/sim / renderBatchInvitationEmail

Function renderBatchInvitationEmail

apps/sim/components/emails/render.ts:77–93  ·  view source on GitHub ↗
(
  inviterName: string,
  organizationName: string,
  organizationRole: 'admin' | 'member',
  workspaceInvitations: WorkspaceInvitation[],
  acceptUrl: string
)

Source from the content-addressed store, hash-verified

75}
76
77export 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
95export async function renderHelpConfirmationEmail(
96 type: 'bug' | 'feedback' | 'feature_request' | 'other',

Callers 2

sendInvitationEmailFunction · 0.90
route.tsFile · 0.90

Calls 2

BatchInvitationEmailFunction · 0.90
renderFunction · 0.50

Tested by

no test coverage detected