Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 429 Bytes

File metadata and controls

24 lines (19 loc) · 429 Bytes
description Automatically generated file. DO NOT MODIFY
Import-Module Microsoft.Graph.Calendar

$params = @{
	ToRecipients = @(
		@{
			EmailAddress = @{
				Address = "danas@contoso.com"
				Name = "Dana Swope"
			}
		}
	)
	Comment = "Dana, hope you can make this meeting."
}

# A UPN can also be used as -UserId.
Invoke-MgForwardUserEvent -UserId $userId -EventId $eventId -BodyParameter $params