InvalidEmail
public struct InvalidEmail : EmailEventRepresentable, Codable
The InvalidEmail struct represents an entry on the Invalid Email
suppression list.
-
The email address on the event.
Declaration
Swift
public let email: String -
The date and time the event occurred on.
Declaration
Swift
public let created: Date -
The description of why the email was classified as invalid.
Declaration
Swift
public let reason: String
-
Initializes the event with all the required properties.
Declaration
Swift
public init(email: String, created: Date, reason: String)Parameters
emailThe email address on the event.
createdThe date and time the event occurred on.
reasonThe description of why the email was classified as invalid.
View on GitHub
InvalidEmail Structure Reference