Booqable gives you control over how your emails appear to customers by allowing you to customize the email header and footer. These sections are shared across all email templates and can include your logo, business details, and any other relevant content.
This article explains how to edit the default header and footer templates.
Editing the Email Header
The email header typically displays your logo and company name. You can adjust the default layout by combining template variables and Markdown.
Default Header Example
{{#company.logo_url}}

{{/company.logo_url}}
{{^company.logo_url}}
# {{company.name}}
{{/company.logo_url}}
How It Works
{{#company.logo_url}}
...{{/company.logo_url}}
: Shows your logo if it’s set in your company settings.
: Displays your logo image with a height of 80 pixels. If no width is specified, it will automatically adjust to maintain aspect ratio.{{^company.logo_url}}
: This line handles the case when no logo is available.# {{company.name}}
: Shows your company name as a header using Markdown formatting.
Image Resizing in the Header
To ensure consistent branding, you can control the size of images using custom syntax directly in the image link. This applies to logos or any other images in the email header.
Supported formats:
=x80
: Sets the height to 80px, width adjusts automatically=80x
: Sets the width to 80px, height adjusts automatically=80x80
: Sets both width and height to 80px
This provides better control over image appearance, especially in email clients with strict rendering rules.
Editing the Email Footer
The footer contains your business contact information, which is automatically populated using the details in your company settings.
Default Footer Example
### {{company.name}}
{{#company.email}}[{{company.email}}](mailto:{{company.email}}){{/company.email}}
{{#company.phone}}[{{company.phone}}](tel:{{company.phone}}){{/company.phone}}
{{#company.website}}[{{company.website}}]({{company.website}}){{/company.website}}
{{#company.financialLine1}}{{company.financialLine1}}{{/company.financialLine1}}
{{#company.financialLine2}}{{company.financialLine2}}{{/company.financialLine2}}
{{company.address}}
What’s Included
Company name
Clickable links for:
Email address
Phone number
Website
Optional financial details
Your company’s physical address
If any of these fields are empty in your company settings, that line will not be displayed in the email.
Learn More
If you need help customizing your templates, contact our support team directly or reach out via the in-app messenger.