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

# Send Message Via Teams User

Send a message on Microsoft Teams by choosing the sending method: to user emails, to a chat, or to a channel.

The sender of the message would be the authenticated user.

**Please note that this action is supported only for the delegated (OAuth) method**.

<Note>
  External Documentation

  To learn more, visit the [Microsoft Teams documentation](https://learn.microsoft.com/en-us/graph/api/chatmessage-post?view=graph-rest-1.0\&tabs=http#example-6-send-inline-images-along-with-the-message).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter   | Description                                                                                                                                                                                        |
  | ----------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Channel ID  | The ID of the channel to send the message in.<br /><br />Can be obtained by using the `List Channels` action.                                                                                      |
  | Chat ID     | The ID of the chat to send the message in.<br />Can be obtained by using the `List Chats` action.<br /><br />`Note`: The dynamic dropdown is supported only for **OAuth** (delegated) connections. |
  | Message     | The message to be sent.                                                                                                                                                                            |
  | Send To     | Choose the message's destination.                                                                                                                                                                  |
  | Subject     | The subject of the message.                                                                                                                                                                        |
  | Team ID     | The ID of the team.<br /><br />Can be obtained by using the `List All Teams` action.                                                                                                               |
  | User Emails | List of users to send the message to in a group chat.                                                                                                                                              |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter   | Description                                                                                                                                                                                                      |
  | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Attachments | A comma-separated list of attachment URLs to add to the message.<br /><br />**Note:** Only URLs pointing to files uploaded via SharePoint are allowed. Use the SharePoint `Upload File` action to upload a file. |
  | Images      | A comma-separated list of image file identifiers to include in the message.<br /><br />**Note:** Only `PNG` and `JPEG` file types are supported.                                                                 |
</div>

## Example Output

```json theme={"dark"}
{
	"@odata.context": "<string>",
	"id": "<string>",
	"replyToId": null,
	"etag": "<string>",
	"messageType": "<string>",
	"createdDateTime": "2023-07-26T05:58:35",
	"lastModifiedDateTime": "2022-01-21T13:33:52",
	"lastEditedDateTime": null,
	"deletedDateTime": null,
	"subject": null,
	"summary": null,
	"chatId": null,
	"importance": "<string>",
	"locale": "<string>",
	"webUrl": "<string>",
	"policyViolation": null,
	"eventDetail": null,
	"from": {
		"application": null,
		"device": null,
		"user": {
			"@odata.type": "<string>",
			"id": "<string>",
			"displayName": "<string>",
			"userIdentityType": "<string>",
			"tenantId": "<string>"
		}
	},
	"body": {
		"contentType": "<string>",
		"content": "<string>"
	},
	"channelIdentity": {
		"teamId": "<string>",
		"channelId": "<string>"
	},
	"attachments": [],
	"mentions": [],
	"reactions": []
}
```

## Workflow Library Example

[Send Message Via Teams User with Microsoft Teams and Send Results Via Email](https://library.blinkops.com/workflows/send-message-via-teams-user-with-microsoft-teams-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/send-message-via-teams-user-with-microsoft-teams-and-send-results-via-email/canvas" />
</div>
