Footer
public struct Footer : Encodable
The Footer mail setting allows you to specify a footer that will be
appended to the bottom of every email.
-
The plain text content of your footer.
Declaration
Swift
public let text: String? -
The HTML content of your footer.
Declaration
Swift
public let html: String? -
A
Boolindicating if the setting is enabled or not.Declaration
Swift
public let enable: Bool
-
Initializes the setting with plain text and HTML to use in the footer. This will enable the setting for this email and use the provided content.
If the footer setting is enabled by default on your SendGrid account and you want to disable it for this email, use the
init()initializer instead.Declaration
Swift
public init(text: String, html: String)Parameters
textThe plain text content of your footer.
htmlThe HTML content of your footer.
-
Initializes the setting with no templates, indicating that the footer setting should be disabled for this particular email (assuming it’s normally enabled on the SendGrid account).
If you want to enable the footer setting, use the
init(text:html:)initializer instead.Declaration
Swift
public init()
View on GitHub
Footer Structure Reference