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

# Overview

> Automatically respond to messages using custom triggers.

# Auto Responders

Auto Responders allow BlaZe to automatically send messages when specific words or phrases are detected.

They are useful for:

* Frequently asked questions
* Server information
* Rules reminders
* Support links
* Community resources

## How Auto Responders Work

When a member sends a message, BlaZe checks whether the message matches any configured trigger.

If a match is found, BlaZe automatically sends the configured response.

## Trigger Types

Auto Responders support two trigger types.

### Exact

The message must exactly match the trigger.

Example trigger:

```txt theme={null}
hello
```

Response will only be sent when a member sends:

```txt theme={null}
hello
```

### Contains

The trigger only needs to appear somewhere inside the message.

Example trigger:

```txt theme={null}
website
```

Response will be sent for messages such as:

```txt theme={null}
what is the website?
```

```txt theme={null}
can someone send the website link
```

```txt theme={null}
website
```

<Info>
  Auto Responders do not respond to messages sent by bots.
</Info>
