Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 477 Bytes

File metadata and controls

21 lines (16 loc) · 477 Bytes
description Automatically generated file. DO NOT MODIFY
Import-Module Microsoft.Graph.Mail

$params = @{
	"@odata.type" = "microsoft.graph.fileAttachment"
	name = "name-value"
	contentType = "contentType-value"
	isInline = $false
	contentLocation = "contentLocation-value"
	contentBytes = "base64-contentBytes-value"
}

# A UPN can also be used as -UserId.
New-MgUserMessageAttachment -UserId $userId -MessageId $messageId -BodyParameter $params