> ## Documentation Index
> Fetch the complete documentation index at: https://enterprise-docs.dify.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# 邮件提供商

## 在 Helm Chart 值中查找向邮件提供商配置

### 显示 Helm Chart 值

```bash theme={null}
helm show values dify/dify
```

下文是 Helm chart 值中邮件提供商配置的示例。

```yaml theme={null}
mail:
  type: ''
  defaultSender: '你的发件人邮箱 (例如: no-reply <no-reply@dify.ai>)'
  resend:
    apiKey: ''
    apiUrl: https://api.resend.com
  smtp:
    server: ''
    port: 587
    username: ''
    password: ''
    useTLS: false
  ... ...
```

## `mail.type` 字段的选项

* `resend`: 使用 Resend 服务发送邮件
* `smtp`: 使用 SMTP 服务发送邮件
