Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 466 Bytes

File metadata and controls

28 lines (23 loc) · 466 Bytes
description Automatically generated file. DO NOT MODIFY
Import-Module Microsoft.Graph.Mail

$params = @{
	subject = "Did you see last night's game?"
	importance = "Low"
	body = @{
		contentType = "HTML"
		content = "They were <b>awesome</b>!"
	}
	toRecipients = @(
		@{
			emailAddress = @{
				address = "AdeleV@contoso.com"
			}
		}
	)
}

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