emailPayloadDetail resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
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"
}