Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 542 Bytes

File metadata and controls

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

$params = @{
	message = @{
		isDeliveryReceiptRequested = $true
		toRecipients = @(
			@{
				emailAddress = @{
					address = "danas@contoso.com"
					name = "Dana Swope"
				}
			}
		)
	}
	comment = "Dana, just want to make sure you get this; you'll need this if the project gets approved."
}

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