( type: 'bug' | 'feedback' | 'feature_request' | 'other', attachmentCount = 0 )
| 93 | } |
| 94 | |
| 95 | export async function renderHelpConfirmationEmail( |
| 96 | type: 'bug' | 'feedback' | 'feature_request' | 'other', |
| 97 | attachmentCount = 0 |
| 98 | ): Promise<string> { |
| 99 | return await render( |
| 100 | HelpConfirmationEmail({ |
| 101 | type, |
| 102 | attachmentCount, |
| 103 | submittedDate: new Date(), |
| 104 | }) |
| 105 | ) |
| 106 | } |
| 107 | |
| 108 | export async function renderEnterpriseSubscriptionEmail(userName: string): Promise<string> { |
| 109 | const baseUrl = getBaseUrl() |
no test coverage detected