MCPcopy Index your code
hub / github.com/simstudioai/sim / renderHelpConfirmationEmail

Function renderHelpConfirmationEmail

apps/sim/components/emails/render.ts:95–106  ·  view source on GitHub ↗
(
  type: 'bug' | 'feedback' | 'feature_request' | 'other',
  attachmentCount = 0
)

Source from the content-addressed store, hash-verified

93}
94
95export 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
108export async function renderEnterpriseSubscriptionEmail(userName: string): Promise<string> {
109 const baseUrl = getBaseUrl()

Callers 3

route.tsFile · 0.90
route.tsFile · 0.90
route.tsFile · 0.90

Calls 2

HelpConfirmationEmailFunction · 0.90
renderFunction · 0.50

Tested by

no test coverage detected