( inviterName: string, workspaceName: string, workspaceLink: string )
| 231 | } |
| 232 | |
| 233 | export async function renderWorkspaceAddedEmail( |
| 234 | inviterName: string, |
| 235 | workspaceName: string, |
| 236 | workspaceLink: string |
| 237 | ): Promise<string> { |
| 238 | return await render( |
| 239 | WorkspaceAddedEmail({ |
| 240 | inviterName, |
| 241 | workspaceName, |
| 242 | workspaceLink, |
| 243 | }) |
| 244 | ) |
| 245 | } |
| 246 | |
| 247 | export async function renderPollingGroupInvitationEmail(params: { |
| 248 | inviterName: string |
no test coverage detected