ReportPortal“通知”字段从显示为灰色

时间:2018-08-30 11:55:56

标签: reportportal

在报告门户(v4.2)中,“通知”字段显示为灰色,默认设置为“ reportportal@example.com”。我似乎找不到更改它的地方。

屏幕截图:ReportPortal-Notification-Settings

enter image description here

是虫还是我误会了?

2 个答案:

答案 0 :(得分:0)

我遇到了同样的问题,因此我使用报告门户API添加了电子邮件通知详细信息。请找到以下屏幕截图,以供参考。

Report Portal API

答案 1 :(得分:0)

就今天而言,只能通过API调用更新“电子邮件通知” 组件中的From字段。

请发送

PUT http://host:8080/api/v1/project/{project_name}/emailconfig

RQ主体应具有下一个必需参数:

`{
  "emailCases": [
    {
      "recipients": [
        "<email_address_of_recipient>"
      ],
      "sendCase": "ALWAYS"
    }
  ],
  "emailEnabled": true,
  "fromAddress": "<email_address_from_Email_server_settings>"
}`

在RP v5中,该字段将从UI中删除。 发件人地址将从电子邮件服务器设置配置(管理部分)继承。

https://github.com/reportportal/reportportal/issues/516