mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-01-03 19:15:30 +08:00
Email sending tool (#3837)
### What problem does this PR solve? _Briefly describe what this PR aims to solve. Include background context that will help reviewers understand the purpose of the PR._ Added the function of sending emails through SMTP Instructions for use- Corresponding parameters need to be configured Need to output upstream in a fixed format  ### Type of change - [√] New Feature (non-breaking change which adds functionality) --------- Co-authored-by: Kevin Hu <kevinhu.sh@gmail.com>
This commit is contained in:
@ -1029,6 +1029,30 @@ export default {
|
||||
testRun: '试运行',
|
||||
template: '模板转换',
|
||||
templateDescription: '该组件用于排版各种组件的输出。',
|
||||
emailComponent: '邮件',
|
||||
emailDescription: '发送邮件到指定邮箱',
|
||||
smtpServer: 'SMTP服务器',
|
||||
smtpPort: 'SMTP端口',
|
||||
senderEmail: '发件人邮箱',
|
||||
authCode: '授权码',
|
||||
senderName: '发件人名称',
|
||||
toEmail: '收件人邮箱',
|
||||
ccEmail: '抄送邮箱',
|
||||
emailSubject: '邮件主题',
|
||||
emailContent: '邮件内容',
|
||||
smtpServerRequired: '请输入SMTP服务器地址',
|
||||
senderEmailRequired: '请输入发件人邮箱',
|
||||
authCodeRequired: '请输入授权码',
|
||||
toEmailRequired: '请输入收件人邮箱',
|
||||
emailContentRequired: '请输入邮件内容',
|
||||
emailSentSuccess: '邮件发送成功',
|
||||
emailSentFailed: '邮件发送失败',
|
||||
dynamicParameters: '动态参数说明',
|
||||
jsonFormatTip: '上游组件需要传入以下格式的JSON字符串:',
|
||||
toEmailTip: 'to_email: 收件人邮箱(必填)',
|
||||
ccEmailTip: 'cc_email: 抄送邮箱(可选)',
|
||||
subjectTip: 'subject: 邮件主题(可选)',
|
||||
contentTip: 'content: 邮件内容(可选)',
|
||||
},
|
||||
footer: {
|
||||
profile: 'All rights reserved @ React',
|
||||
|
||||
Reference in New Issue
Block a user