(userName: string)
| 106 | } |
| 107 | |
| 108 | export async function renderEnterpriseSubscriptionEmail(userName: string): Promise<string> { |
| 109 | const baseUrl = getBaseUrl() |
| 110 | const loginLink = `${baseUrl}/login` |
| 111 | |
| 112 | return await render( |
| 113 | EnterpriseSubscriptionEmail({ |
| 114 | userName, |
| 115 | loginLink, |
| 116 | }) |
| 117 | ) |
| 118 | } |
| 119 | |
| 120 | export async function renderUsageThresholdEmail(params: { |
| 121 | userName?: string |
no test coverage detected