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

# Greeting

> Configure welcome messages for new members

## Overview

The greeting system lets you send a custom message or embed to a channel when a new member joins your server. This is useful for welcoming users, sharing server rules, or providing important info

<Info>
  Greeting messages can use variables and embed scripting. See the [Variables](../Resources/variables.mdx) page for all available placeholders.
</Info>

<Tip>
  You can use both plain text and embed scripting for your greeting message. See [Embeds](../Resources/Embeds.mdx) for advanced formatting
</Tip>

***

## View current greeting setup

See your current greeting channel and message:

<CodeGroup>
  ```javascript Syntax theme={null}
  ,greeting
  ```

  ```javascript Example theme={null}
  ,greeting
  ```
</CodeGroup>

***

## Enable greeting

Enable the greeting module for your server:

<CodeGroup>
  ```javascript Syntax theme={null}
  ,greeting enable
  ```

  ```javascript Example theme={null}
  ,greeting enable
  ```
</CodeGroup>

***

## Set greeting channel

Choose which channel receives the greeting message:

<CodeGroup>
  ```javascript Syntax theme={null}
  ,greeting channel <channel>
  ```

  ```javascript Example theme={null}
  ,greeting channel #welcome
  ```
</CodeGroup>

***

## Set greeting message

Set the message or embed sent to new members:

<CodeGroup>
  ```javascript Syntax theme={null}
  ,greeting message <message>
  ```

  ```javascript Example theme={null}
  ,greeting message Welcome {user.mention} to {guild.name}!
  ,greeting message {embed}$vtitle:Welcome!$vdescription:Hello {user.mention}, glad to have you in {guild.name}!$vcolor:#5865F2
  ```
</CodeGroup>

***

## Test greeting message

Preview your greeting message by sending it to yourself:

<CodeGroup>
  ```javascript Syntax theme={null}
  ,greeting test
  ```

  ```javascript Example theme={null}
  ,greeting test
  ```
</CodeGroup>

***

## Disable greeting

Turn off the greeting module:

<CodeGroup>
  ```javascript Syntax theme={null}
  ,greeting disable
  ```

  ```javascript Example theme={null}
  ,greeting disable
  ```
</CodeGroup>
