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

# Smartlinks Configuration

# Overview

**Smartlinks** in AbuseHQ allow you to easily access external tools by using **dynamically generated links**.

With the help of the **Liquid Template Language** and variables provided by AbuseHQ, you can template both the **URL** and the **display name** of a Smartlink.\
Once created, Smartlinks are available to **all users** within your AbuseHQ instance.

## Examples

### 🔗 Generate a Link to an External Tool Using a Subscriber ID

```text theme={null}
https://tool.company.com/?subscriber={{ subscriber.id }}
```

Generate an email link

```
mailto://{{ subscriber.resolver_data.email }}?subject=complaint%20received%3A{{ event.type }}
```

More Complex Conditional Queries

```
{% if event.type %}
  {{ event.type }}
{% else %}
  No Event Type
{% endif %}
```
