mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
26 lines
750 B
TypeScript
26 lines
750 B
TypeScript
export const generateMailToLink = (email: string, subject?: string, body?: string): string => {
|
|
let mailtoLink = `mailto:${email}`
|
|
|
|
if (subject)
|
|
mailtoLink += `?subject=${encodeURIComponent(subject)}`
|
|
|
|
if (body)
|
|
mailtoLink += `&body=${encodeURIComponent(body)}`
|
|
|
|
return mailtoLink
|
|
}
|
|
|
|
export const mailToSupport = (account: string, plan: string, version: string) => {
|
|
const subject = `Technical Support Request ${plan} ${account}`
|
|
const body = `
|
|
Please do not remove the following information:
|
|
-----------------------------------------------
|
|
Current Plan: ${plan}
|
|
Account: ${account}
|
|
Version: ${version}
|
|
Platform:
|
|
Problem Description:
|
|
`
|
|
return generateMailToLink('support@dify.ai', subject, body)
|
|
}
|