action sendgrid_get_mail_settings_footer { label: "Retrieve footer mail settings" description: "**This endpoint allows you to retrieve your current Footer mail settings.**\n\nThe Footer setting will insert a custom footer at the bottom of your text and HTML email message bodies.\n\nYou can insert your HTML or plain text directly using the \"Update footer mail settings\" endpoint, or you can create the footer using the [Mail Settings menu in the Twilio SendGrid App](https://app.sendgrid.com/settings/mail_settings)." provider: sendgrid method: GET path: "/mail_settings/footer" encoding: json output: { type: "object" properties: { enabled: { type: "boolean" description: "Indicates if the Footer mail setting is currently enabled." } html_content: { type: "string" description: "The custom HTML content of your email footer." } plain_content: { type: "string" description: "The plain text content of your email footer." } } } }