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

# curator:setsmtp

> Configure SMTP mail settings for Curator

Configures SMTP mail settings for Curator.

**Arguments:**

| Argument      | Required | Description             |
| ------------- | -------- | ----------------------- |
| `smtpAddress` | Yes      | The SMTP server address |

**Options:**

| Option            | Description                                            |
| ----------------- | ------------------------------------------------------ |
| `--sender_name=`  | Display name for the email sender                      |
| `--sender_email=` | Email address for the sender                           |
| `--auth_required` | Flag indicating SMTP authorization is needed           |
| `--username=`     | SMTP username (required when `--auth_required` is set) |
| `--password=`     | SMTP password (required when `--auth_required` is set) |
| `--port=`         | SMTP port number                                       |
| `--encryption=`   | Encryption type (e.g., `tls`, `ssl`)                   |

**Example:**

```bash theme={null}
php artisan curator:setsmtp smtp.example.com \
  --sender_name="Curator" \
  --sender_email="noreply@example.com" \
  --auth_required \
  --username="user" \
  --password="pass" \
  --port=587 \
  --encryption=tls
```
