Get Deliverability Test Report
sesv2_get_deliverability_test_report | R Documentation |
Retrieve the results of a predictive inbox placement test¶
Description¶
Retrieve the results of a predictive inbox placement test.
Usage¶
Arguments¶
ReportId
[required] A unique string that identifies the predictive inbox placement test.
Value¶
A list with the following syntax:
list(
DeliverabilityTestReport = list(
ReportId = "string",
ReportName = "string",
Subject = "string",
FromEmailAddress = "string",
CreateDate = as.POSIXct(
"2015-01-01"
),
DeliverabilityTestStatus = "IN_PROGRESS"|"COMPLETED"
),
OverallPlacement = list(
InboxPercentage = 123.0,
SpamPercentage = 123.0,
MissingPercentage = 123.0,
SpfPercentage = 123.0,
DkimPercentage = 123.0
),
IspPlacements = list(
list(
IspName = "string",
PlacementStatistics = list(
InboxPercentage = 123.0,
SpamPercentage = 123.0,
MissingPercentage = 123.0,
SpfPercentage = 123.0,
DkimPercentage = 123.0
)
)
),
Message = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)