Temp feat change user email enterprise (#22390)
parent
2a0a315187
commit
856d07ca2f
@ -0,0 +1,78 @@
|
|||||||
|
import logging
|
||||||
|
import time
|
||||||
|
|
||||||
|
import click
|
||||||
|
from celery import shared_task # type: ignore
|
||||||
|
from flask import render_template
|
||||||
|
|
||||||
|
from extensions.ext_mail import mail
|
||||||
|
from services.feature_service import FeatureService
|
||||||
|
|
||||||
|
|
||||||
|
@shared_task(queue="mail")
|
||||||
|
def send_change_mail_task(language: str, to: str, code: str, phase: str):
|
||||||
|
"""
|
||||||
|
Async Send change email mail
|
||||||
|
:param language: Language in which the email should be sent (e.g., 'en', 'zh')
|
||||||
|
:param to: Recipient email address
|
||||||
|
:param code: Change email code
|
||||||
|
:param phase: Change email phase (new_email, old_email)
|
||||||
|
"""
|
||||||
|
if not mail.is_inited():
|
||||||
|
return
|
||||||
|
|
||||||
|
logging.info(click.style("Start change email mail to {}".format(to), fg="green"))
|
||||||
|
start_at = time.perf_counter()
|
||||||
|
|
||||||
|
email_config = {
|
||||||
|
"zh-Hans": {
|
||||||
|
"old_email": {
|
||||||
|
"subject": "检测您现在的邮箱",
|
||||||
|
"template_with_brand": "change_mail_confirm_old_template_zh-CN.html",
|
||||||
|
"template_without_brand": "without-brand/change_mail_confirm_old_template_zh-CN.html",
|
||||||
|
},
|
||||||
|
"new_email": {
|
||||||
|
"subject": "确认您的邮箱地址变更",
|
||||||
|
"template_with_brand": "change_mail_confirm_new_template_zh-CN.html",
|
||||||
|
"template_without_brand": "without-brand/change_mail_confirm_new_template_zh-CN.html",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"en": {
|
||||||
|
"old_email": {
|
||||||
|
"subject": "Check your current email",
|
||||||
|
"template_with_brand": "change_mail_confirm_old_template_en-US.html",
|
||||||
|
"template_without_brand": "without-brand/change_mail_confirm_old_template_en-US.html",
|
||||||
|
},
|
||||||
|
"new_email": {
|
||||||
|
"subject": "Confirm your new email address",
|
||||||
|
"template_with_brand": "change_mail_confirm_new_template_en-US.html",
|
||||||
|
"template_without_brand": "without-brand/change_mail_confirm_new_template_en-US.html",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
# send change email mail using different languages
|
||||||
|
try:
|
||||||
|
system_features = FeatureService.get_system_features()
|
||||||
|
lang_key = "zh-Hans" if language == "zh-Hans" else "en"
|
||||||
|
|
||||||
|
if phase not in ["old_email", "new_email"]:
|
||||||
|
raise ValueError("Invalid phase")
|
||||||
|
|
||||||
|
config = email_config[lang_key][phase]
|
||||||
|
subject = config["subject"]
|
||||||
|
|
||||||
|
if system_features.branding.enabled:
|
||||||
|
template = config["template_without_brand"]
|
||||||
|
else:
|
||||||
|
template = config["template_with_brand"]
|
||||||
|
|
||||||
|
html_content = render_template(template, to=to, code=code)
|
||||||
|
mail.send(to=to, subject=subject, html=html_content)
|
||||||
|
|
||||||
|
end_at = time.perf_counter()
|
||||||
|
logging.info(
|
||||||
|
click.style("Send change email mail to {} succeeded: latency: {}".format(to, end_at - start_at), fg="green")
|
||||||
|
)
|
||||||
|
except Exception:
|
||||||
|
logging.exception("Send change email mail to {} failed".format(to))
|
||||||
@ -0,0 +1,152 @@
|
|||||||
|
import logging
|
||||||
|
import time
|
||||||
|
|
||||||
|
import click
|
||||||
|
from celery import shared_task # type: ignore
|
||||||
|
from flask import render_template
|
||||||
|
|
||||||
|
from extensions.ext_mail import mail
|
||||||
|
from services.feature_service import FeatureService
|
||||||
|
|
||||||
|
|
||||||
|
@shared_task(queue="mail")
|
||||||
|
def send_owner_transfer_confirm_task(language: str, to: str, code: str, workspace: str):
|
||||||
|
"""
|
||||||
|
Async Send owner transfer confirm mail
|
||||||
|
:param language: Language in which the email should be sent (e.g., 'en', 'zh')
|
||||||
|
:param to: Recipient email address
|
||||||
|
:param workspace: Workspace name
|
||||||
|
"""
|
||||||
|
if not mail.is_inited():
|
||||||
|
return
|
||||||
|
|
||||||
|
logging.info(click.style("Start change email mail to {}".format(to), fg="green"))
|
||||||
|
start_at = time.perf_counter()
|
||||||
|
# send change email mail using different languages
|
||||||
|
try:
|
||||||
|
if language == "zh-Hans":
|
||||||
|
template = "transfer_workspace_owner_confirm_template_zh-CN.html"
|
||||||
|
system_features = FeatureService.get_system_features()
|
||||||
|
if system_features.branding.enabled:
|
||||||
|
template = "without-brand/transfer_workspace_owner_confirm_template_zh-CN.html"
|
||||||
|
html_content = render_template(template, to=to, code=code, WorkspaceName=workspace)
|
||||||
|
mail.send(to=to, subject="验证您转移工作空间所有权的请求", html=html_content)
|
||||||
|
else:
|
||||||
|
html_content = render_template(template, to=to, code=code, WorkspaceName=workspace)
|
||||||
|
mail.send(to=to, subject="验证您转移工作空间所有权的请求", html=html_content)
|
||||||
|
else:
|
||||||
|
template = "transfer_workspace_owner_confirm_template_en-US.html"
|
||||||
|
system_features = FeatureService.get_system_features()
|
||||||
|
if system_features.branding.enabled:
|
||||||
|
template = "without-brand/transfer_workspace_owner_confirm_template_en-US.html"
|
||||||
|
html_content = render_template(template, to=to, code=code, WorkspaceName=workspace)
|
||||||
|
mail.send(to=to, subject="Verify Your Request to Transfer Workspace Ownership", html=html_content)
|
||||||
|
else:
|
||||||
|
html_content = render_template(template, to=to, code=code, WorkspaceName=workspace)
|
||||||
|
mail.send(to=to, subject="Verify Your Request to Transfer Workspace Ownership", html=html_content)
|
||||||
|
|
||||||
|
end_at = time.perf_counter()
|
||||||
|
logging.info(
|
||||||
|
click.style(
|
||||||
|
"Send owner transfer confirm mail to {} succeeded: latency: {}".format(to, end_at - start_at),
|
||||||
|
fg="green",
|
||||||
|
)
|
||||||
|
)
|
||||||
|
except Exception:
|
||||||
|
logging.exception("owner transfer confirm email mail to {} failed".format(to))
|
||||||
|
|
||||||
|
|
||||||
|
@shared_task(queue="mail")
|
||||||
|
def send_old_owner_transfer_notify_email_task(language: str, to: str, workspace: str, new_owner_email: str):
|
||||||
|
"""
|
||||||
|
Async Send owner transfer confirm mail
|
||||||
|
:param language: Language in which the email should be sent (e.g., 'en', 'zh')
|
||||||
|
:param to: Recipient email address
|
||||||
|
:param workspace: Workspace name
|
||||||
|
:param new_owner_email: New owner email
|
||||||
|
"""
|
||||||
|
if not mail.is_inited():
|
||||||
|
return
|
||||||
|
|
||||||
|
logging.info(click.style("Start change email mail to {}".format(to), fg="green"))
|
||||||
|
start_at = time.perf_counter()
|
||||||
|
# send change email mail using different languages
|
||||||
|
try:
|
||||||
|
if language == "zh-Hans":
|
||||||
|
template = "transfer_workspace_old_owner_notify_template_zh-CN.html"
|
||||||
|
system_features = FeatureService.get_system_features()
|
||||||
|
if system_features.branding.enabled:
|
||||||
|
template = "without-brand/transfer_workspace_old_owner_notify_template_zh-CN.html"
|
||||||
|
html_content = render_template(template, to=to, WorkspaceName=workspace, NewOwnerEmail=new_owner_email)
|
||||||
|
mail.send(to=to, subject="工作区所有权已转移", html=html_content)
|
||||||
|
else:
|
||||||
|
html_content = render_template(template, to=to, WorkspaceName=workspace, NewOwnerEmail=new_owner_email)
|
||||||
|
mail.send(to=to, subject="工作区所有权已转移", html=html_content)
|
||||||
|
else:
|
||||||
|
template = "transfer_workspace_old_owner_notify_template_en-US.html"
|
||||||
|
system_features = FeatureService.get_system_features()
|
||||||
|
if system_features.branding.enabled:
|
||||||
|
template = "without-brand/transfer_workspace_old_owner_notify_template_en-US.html"
|
||||||
|
html_content = render_template(template, to=to, WorkspaceName=workspace, NewOwnerEmail=new_owner_email)
|
||||||
|
mail.send(to=to, subject="Workspace ownership has been transferred", html=html_content)
|
||||||
|
else:
|
||||||
|
html_content = render_template(template, to=to, WorkspaceName=workspace, NewOwnerEmail=new_owner_email)
|
||||||
|
mail.send(to=to, subject="Workspace ownership has been transferred", html=html_content)
|
||||||
|
|
||||||
|
end_at = time.perf_counter()
|
||||||
|
logging.info(
|
||||||
|
click.style(
|
||||||
|
"Send owner transfer confirm mail to {} succeeded: latency: {}".format(to, end_at - start_at),
|
||||||
|
fg="green",
|
||||||
|
)
|
||||||
|
)
|
||||||
|
except Exception:
|
||||||
|
logging.exception("owner transfer confirm email mail to {} failed".format(to))
|
||||||
|
|
||||||
|
|
||||||
|
@shared_task(queue="mail")
|
||||||
|
def send_new_owner_transfer_notify_email_task(language: str, to: str, workspace: str):
|
||||||
|
"""
|
||||||
|
Async Send owner transfer confirm mail
|
||||||
|
:param language: Language in which the email should be sent (e.g., 'en', 'zh')
|
||||||
|
:param to: Recipient email address
|
||||||
|
:param code: Change email code
|
||||||
|
:param workspace: Workspace name
|
||||||
|
"""
|
||||||
|
if not mail.is_inited():
|
||||||
|
return
|
||||||
|
|
||||||
|
logging.info(click.style("Start change email mail to {}".format(to), fg="green"))
|
||||||
|
start_at = time.perf_counter()
|
||||||
|
# send change email mail using different languages
|
||||||
|
try:
|
||||||
|
if language == "zh-Hans":
|
||||||
|
template = "transfer_workspace_new_owner_notify_template_zh-CN.html"
|
||||||
|
system_features = FeatureService.get_system_features()
|
||||||
|
if system_features.branding.enabled:
|
||||||
|
template = "without-brand/transfer_workspace_new_owner_notify_template_zh-CN.html"
|
||||||
|
html_content = render_template(template, to=to, WorkspaceName=workspace)
|
||||||
|
mail.send(to=to, subject=f"您现在是 {workspace} 的所有者", html=html_content)
|
||||||
|
else:
|
||||||
|
html_content = render_template(template, to=to, WorkspaceName=workspace)
|
||||||
|
mail.send(to=to, subject=f"您现在是 {workspace} 的所有者", html=html_content)
|
||||||
|
else:
|
||||||
|
template = "transfer_workspace_new_owner_notify_template_en-US.html"
|
||||||
|
system_features = FeatureService.get_system_features()
|
||||||
|
if system_features.branding.enabled:
|
||||||
|
template = "without-brand/transfer_workspace_new_owner_notify_template_en-US.html"
|
||||||
|
html_content = render_template(template, to=to, WorkspaceName=workspace)
|
||||||
|
mail.send(to=to, subject=f"You are now the owner of {workspace}", html=html_content)
|
||||||
|
else:
|
||||||
|
html_content = render_template(template, to=to, WorkspaceName=workspace)
|
||||||
|
mail.send(to=to, subject=f"You are now the owner of {workspace}", html=html_content)
|
||||||
|
|
||||||
|
end_at = time.perf_counter()
|
||||||
|
logging.info(
|
||||||
|
click.style(
|
||||||
|
"Send owner transfer confirm mail to {} succeeded: latency: {}".format(to, end_at - start_at),
|
||||||
|
fg="green",
|
||||||
|
)
|
||||||
|
)
|
||||||
|
except Exception:
|
||||||
|
logging.exception("owner transfer confirm email mail to {} failed".format(to))
|
||||||
@ -0,0 +1,86 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: 'Arial', sans-serif;
|
||||||
|
line-height: 16pt;
|
||||||
|
color: #101828;
|
||||||
|
background-color: #e9ebf0;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
width: 600px;
|
||||||
|
height: 360px;
|
||||||
|
margin: 40px auto;
|
||||||
|
padding: 36px 48px;
|
||||||
|
background-color: #fcfcfd;
|
||||||
|
border-radius: 16px;
|
||||||
|
border: 1px solid #ffffff;
|
||||||
|
box-shadow: 0 2px 4px -2px rgba(9, 9, 11, 0.08);
|
||||||
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
margin-bottom: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header img {
|
||||||
|
max-width: 100px;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 28.8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description {
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 16px;
|
||||||
|
color: #676f83;
|
||||||
|
margin-top: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-content {
|
||||||
|
padding: 16px 32px;
|
||||||
|
text-align: center;
|
||||||
|
border-radius: 16px;
|
||||||
|
background-color: #f2f4f7;
|
||||||
|
margin: 16px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code {
|
||||||
|
line-height: 36px;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tips {
|
||||||
|
line-height: 16px;
|
||||||
|
color: #676f83;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="header">
|
||||||
|
<!-- Optional: Add a logo or a header image here -->
|
||||||
|
<img src="https://assets.dify.ai/images/logo.png" alt="Dify Logo" />
|
||||||
|
</div>
|
||||||
|
<p class="title">You are now the owner of {{WorkspaceName}}</p>
|
||||||
|
<p class="description">You have been assigned as the new owner of the workspace "{{WorkspaceName}}".
|
||||||
|
|
||||||
|
As the new owner, you now have full administrative privileges for this workspace.
|
||||||
|
|
||||||
|
If you have any questions, please contact support@dify.ai.</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
@ -0,0 +1,88 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: 'Arial', sans-serif;
|
||||||
|
line-height: 16pt;
|
||||||
|
color: #101828;
|
||||||
|
background-color: #e9ebf0;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
width: 600px;
|
||||||
|
height: 360px;
|
||||||
|
margin: 40px auto;
|
||||||
|
padding: 36px 48px;
|
||||||
|
background-color: #fcfcfd;
|
||||||
|
border-radius: 16px;
|
||||||
|
border: 1px solid #ffffff;
|
||||||
|
box-shadow: 0 2px 4px -2px rgba(9, 9, 11, 0.08);
|
||||||
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
margin-bottom: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header img {
|
||||||
|
max-width: 100px;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 28.8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description {
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 16px;
|
||||||
|
color: #676f83;
|
||||||
|
margin-top: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-content {
|
||||||
|
padding: 16px 32px;
|
||||||
|
text-align: center;
|
||||||
|
border-radius: 16px;
|
||||||
|
background-color: #f2f4f7;
|
||||||
|
margin: 16px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code {
|
||||||
|
line-height: 36px;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tips {
|
||||||
|
line-height: 16px;
|
||||||
|
color: #676f83;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="header">
|
||||||
|
<!-- Optional: Add a logo or a header image here -->
|
||||||
|
<img src="https://assets.dify.ai/images/logo.png" alt="Dify Logo" />
|
||||||
|
</div>
|
||||||
|
<p class="title">Workspace ownership has been transferred</p>
|
||||||
|
<p class="description">You have successfully transferred ownership of the workspace "{{WorkspaceName}}" to
|
||||||
|
{{NewOwnerEmail}}.
|
||||||
|
|
||||||
|
You no longer have owner privileges for this workspace. Your access level has been changed to Admin.
|
||||||
|
|
||||||
|
If you did not initiate this transfer or have concerns about this change, please contact support@dify.ai
|
||||||
|
immediately.</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
@ -0,0 +1,81 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: 'Arial', sans-serif;
|
||||||
|
line-height: 16pt;
|
||||||
|
color: #101828;
|
||||||
|
background-color: #e9ebf0;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
width: 600px;
|
||||||
|
height: 360px;
|
||||||
|
margin: 40px auto;
|
||||||
|
padding: 36px 48px;
|
||||||
|
background-color: #fcfcfd;
|
||||||
|
border-radius: 16px;
|
||||||
|
border: 1px solid #ffffff;
|
||||||
|
box-shadow: 0 2px 4px -2px rgba(9, 9, 11, 0.08);
|
||||||
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
margin-bottom: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header img {
|
||||||
|
max-width: 100px;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 28.8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description {
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 16px;
|
||||||
|
color: #676f83;
|
||||||
|
margin-top: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-content {
|
||||||
|
padding: 16px 32px;
|
||||||
|
text-align: center;
|
||||||
|
border-radius: 16px;
|
||||||
|
background-color: #f2f4f7;
|
||||||
|
margin: 16px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code {
|
||||||
|
line-height: 36px;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tips {
|
||||||
|
line-height: 16px;
|
||||||
|
color: #676f83;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<p class="title">You are now the owner of {{WorkspaceName}}</p>
|
||||||
|
<p class="description">You have been assigned as the new owner of the workspace "{{WorkspaceName}}".
|
||||||
|
|
||||||
|
As the new owner, you now have full administrative privileges for this workspace.
|
||||||
|
|
||||||
|
If you have any questions, please contact support@dify.ai.</p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
@ -0,0 +1,83 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: 'Arial', sans-serif;
|
||||||
|
line-height: 16pt;
|
||||||
|
color: #101828;
|
||||||
|
background-color: #e9ebf0;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
width: 600px;
|
||||||
|
height: 360px;
|
||||||
|
margin: 40px auto;
|
||||||
|
padding: 36px 48px;
|
||||||
|
background-color: #fcfcfd;
|
||||||
|
border-radius: 16px;
|
||||||
|
border: 1px solid #ffffff;
|
||||||
|
box-shadow: 0 2px 4px -2px rgba(9, 9, 11, 0.08);
|
||||||
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
margin-bottom: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header img {
|
||||||
|
max-width: 100px;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 28.8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description {
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 16px;
|
||||||
|
color: #676f83;
|
||||||
|
margin-top: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-content {
|
||||||
|
padding: 16px 32px;
|
||||||
|
text-align: center;
|
||||||
|
border-radius: 16px;
|
||||||
|
background-color: #f2f4f7;
|
||||||
|
margin: 16px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code {
|
||||||
|
line-height: 36px;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tips {
|
||||||
|
line-height: 16px;
|
||||||
|
color: #676f83;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<p class="title">Workspace ownership has been transferred</p>
|
||||||
|
<p class="description">You have successfully transferred ownership of the workspace "{{WorkspaceName}}" to
|
||||||
|
{{NewOwnerEmail}}.
|
||||||
|
|
||||||
|
You no longer have owner privileges for this workspace. Your access level has been changed to Admin.
|
||||||
|
|
||||||
|
If you did not initiate this transfer or have concerns about this change, please contact support@dify.ai
|
||||||
|
immediately.</p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
Loading…
Reference in New Issue