Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 501 Bytes

File metadata and controls

32 lines (27 loc) · 501 Bytes
description Automatically generated file. DO NOT MODIFY
Import-Module Microsoft.Graph.Beta.Mail

$params = @{
	subject = "Party planning"
	toRecipients = @(
		@{
			emailAddress = @{
				name = "Samantha Booth"
				address = "samanthab@contoso.com"
			}
		}
	)
	mentions = @(
		@{
			mentioned = @{
				name = "Dana Swope"
				address = "danas@contoso.com"
			}
		}
	)
}

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