> ## 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チャートの値からメールプロバイダーの設定を見つける

### Helmチャートの値を表示する

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

メールプロバイダーの設定をHelmチャートの値から見つける

```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サービスを使用してメールを送信
