|
|
|
|
@ -38,28 +38,36 @@ def send_invite_member_mail_task(language: str, to: str, token: str, inviter_nam
|
|
|
|
|
if dify_config.ENTERPRISE_ENABLED:
|
|
|
|
|
application_title = FeatureService.get_system_features().get("application_title", "Dify")
|
|
|
|
|
template = "without-brand/invite_member_mail_template_zh-CN.html"
|
|
|
|
|
html_content = render_template(
|
|
|
|
|
template,
|
|
|
|
|
to=to,
|
|
|
|
|
inviter_name=inviter_name,
|
|
|
|
|
workspace_name=workspace_name,
|
|
|
|
|
url=url,
|
|
|
|
|
application_title=application_title,
|
|
|
|
|
)
|
|
|
|
|
html_content = render_template(
|
|
|
|
|
template,
|
|
|
|
|
to=to,
|
|
|
|
|
inviter_name=inviter_name,
|
|
|
|
|
workspace_name=workspace_name,
|
|
|
|
|
url=url,
|
|
|
|
|
application_title=application_title,
|
|
|
|
|
)
|
|
|
|
|
else:
|
|
|
|
|
html_content = render_template(
|
|
|
|
|
template, to=to, inviter_name=inviter_name, workspace_name=workspace_name, url=url
|
|
|
|
|
)
|
|
|
|
|
mail.send(to=to, subject="立即加入 Dify 工作空间", html=html_content)
|
|
|
|
|
else:
|
|
|
|
|
template = "invite_member_mail_template_en-US.html"
|
|
|
|
|
if dify_config.ENTERPRISE_ENABLED:
|
|
|
|
|
application_title = FeatureService.get_system_features().get("application_title", "Dify")
|
|
|
|
|
template = "without-brand/invite_member_mail_template_en-US.html"
|
|
|
|
|
html_content = render_template(
|
|
|
|
|
template,
|
|
|
|
|
to=to,
|
|
|
|
|
inviter_name=inviter_name,
|
|
|
|
|
workspace_name=workspace_name,
|
|
|
|
|
url=url,
|
|
|
|
|
application_title=application_title,
|
|
|
|
|
)
|
|
|
|
|
html_content = render_template(
|
|
|
|
|
template,
|
|
|
|
|
to=to,
|
|
|
|
|
inviter_name=inviter_name,
|
|
|
|
|
workspace_name=workspace_name,
|
|
|
|
|
url=url,
|
|
|
|
|
application_title=application_title,
|
|
|
|
|
)
|
|
|
|
|
else:
|
|
|
|
|
html_content = render_template(
|
|
|
|
|
template, to=to, inviter_name=inviter_name, workspace_name=workspace_name, url=url
|
|
|
|
|
)
|
|
|
|
|
mail.send(to=to, subject="Join Dify Workspace Now", html=html_content)
|
|
|
|
|
|
|
|
|
|
end_at = time.perf_counter()
|
|
|
|
|
|