mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? As title. ### Type of change - [x] Refactoring --------- Signed-off-by: Jin Hai <haijin.chn@gmail.com>
42 lines
1.3 KiB
Python
42 lines
1.3 KiB
Python
#
|
|
# Copyright 2025 The InfiniFlow Authors. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
"""
|
|
Reusable HTML email templates and registry.
|
|
"""
|
|
|
|
# Invitation email template
|
|
INVITE_EMAIL_TMPL = """
|
|
<p>Hi {{email}},</p>
|
|
<p>{{inviter}} has invited you to join their team (ID: {{tenant_id}}).</p>
|
|
<p>Click the link below to complete your registration:<br>
|
|
<a href="{{invite_url}}">{{invite_url}}</a></p>
|
|
<p>If you did not request this, please ignore this email.</p>
|
|
"""
|
|
|
|
# Password reset code template
|
|
RESET_CODE_EMAIL_TMPL = """
|
|
<p>Hello,</p>
|
|
<p>Your password reset code is: <b>{{ code }}</b></p>
|
|
<p>This code will expire in {{ ttl_min }} minutes.</p>
|
|
"""
|
|
|
|
# Template registry
|
|
EMAIL_TEMPLATES = {
|
|
"invite": INVITE_EMAIL_TMPL,
|
|
"reset_code": RESET_CODE_EMAIL_TMPL,
|
|
}
|