(userName?: string)
| 182 | } |
| 183 | |
| 184 | export async function renderWelcomeEmail(userName?: string): Promise<string> { |
| 185 | return await render(WelcomeEmail({ userName })) |
| 186 | } |
| 187 | |
| 188 | export async function renderOnboardingFollowupEmail(userName?: string): Promise<string> { |
| 189 | return await render(OnboardingFollowupEmail({ userName })) |
no test coverage detected