# BOT_SEND_NOTICE

Commands bot to send a notice to the specified group.

## Variables

The following table shows input values (you send them with the API call) and returned output values.

| **Variable** | **Description** |
|----------|-------------|
| `str`    | Notice to send. The subject and contents are separated by a newline (\\n). |
| `id`     | UUID of the group to send the notice to. |


---

## Comments

For this command to work, the bot must:

* Be a member of the group.
* Have permission to send group notices.

Also note that standard **Second Life notice length limits** apply.


---

## Example

```csharp
llMessageLinked(LINK_SET, BOT_SEND_NOTICE, "Subject\nBody of notice", "uuid of group goes here");
```