(userName?: string)
| 186 | } |
| 187 | |
| 188 | export async function renderOnboardingFollowupEmail(userName?: string): Promise<string> { |
| 189 | return await render(OnboardingFollowupEmail({ userName })) |
| 190 | } |
| 191 | |
| 192 | export async function renderAbandonedCheckoutEmail(userName?: string): Promise<string> { |
| 193 | return await render(AbandonedCheckoutEmail({ userName })) |
no test coverage detected