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
email
The email address on the event.
created
The date and time the event occurred on.
reason
The description of why the email was classified as invalid.