Skip to content

Latest commit

 

History

History
59 lines (49 loc) · 1.66 KB

File metadata and controls

59 lines (49 loc) · 1.66 KB
title emailPayloadDetail resource type
description Represents details of an email type payload.
author stuartcl
ms.localizationpriority medium
ms.subservice security
doc_type resourcePageType
ms.date 05/15/2024

emailPayloadDetail resource type

Namespace: microsoft.graph

Represents details of an email type payload.

Inherits from payloadDetail.

Properties

Property Type Description
coachmarks payloadCoachmark Payload coachmark details. Inherited from payloadDetail.
content String Payload content details. Inherited from payloadDetail.
fromEmail String Email address of the user.
fromName String Display name of the user.
isExternalSender Boolean Indicates whether the sender isn't from the user's organization.
phishingUrl String Phishing URL used to target a user. Inherited from payloadDetail.
subject String The subject of the email address sent to the user.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
    "@odata.type": "#microsoft.graph.emailPayloadDetail",
    "coachMarks": [
        {
            "@odata.type": "microsoft.graph.payloadCoachmark"
        }
    ],
    "content": "String",
    "fromEmail": "String",
    "fromName": "String",
    "isExternalSender": "Boolean",
    "phishingUrl": "String",
    "subject": "String"
}