Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 608 Bytes

File metadata and controls

26 lines (21 loc) · 608 Bytes
description Automatically generated file. DO NOT MODIFY
Import-Module Microsoft.Graph.Teams

$params = @{
	body = @{
		contentType = "html"
		content = "Here's the latest budget. <attachment id="153fa47d-18c9-4179-be08-9879815a9f90"></attachment>"
	}
	attachments = @(
		@{
			id = "153fa47d-18c9-4179-be08-9879815a9f90"
			contentType = "reference"
			contentUrl = "https://m365x987948.sharepoint.com/sites/test/Shared%20Documents/General/test%20doc.docx"
			name = "Budget.docx"
		}
	)
}

New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params