Communications Overview

Design emails, manage templates, and engage customers.

Kantos Communications provides a visual email builder, template management, and email logs to help you engage with contacts effectively. Design beautiful emails, personalize with variables, and track delivery.

Professional Emails, Zero Code

Create stunning, responsive emails with our drag-and-drop builder. No HTML knowledge required—just design, personalize, and send.

Email Builder

The visual email builder lets you create professional emails by dragging and dropping components:

Available Components

ComponentDescription
Text BlockRich text with formatting, links, and variables
ImageUpload images or use URLs with alt text
ButtonCall-to-action buttons with customizable styling
DividerVisual separator between sections
SpacerAdjustable vertical spacing
Columns2 or 3 column layouts for side-by-side content
LogoYour brand logo with automatic sizing
Social LinksSocial media icons with links
FooterUnsubscribe link, address, and legal text

Creating an Email Template

Step

Navigate to Communications

In your Kantos dashboard, click "Communications" in the sidebar.

Step

Create New Template

Click "Create Template" and choose "Blank" or select a starter template.

Step

Design Your Email

Drag components from the left panel onto the canvas.

Step

Add Content

Click any component to edit text, images, and styling.

Step

Insert Variables

Use {{variable}} syntax to personalize content.

Step

Preview & Test

Preview on desktop/mobile and send a test email.

Step

Save Template

Name your template and save it for use in automations.

Variables & Personalization

Make emails personal by inserting record data dynamically:

Hi {{record.first_name}},

Thank you for reaching out about {{record.inquiry_subject}}.

Based on your interest in {{record.product_interest}}, I'd love to schedule
a quick call to discuss how {{record.company}} could benefit.

Best regards,
{{sender.name}}
{{sender.title}}

Available Variables

VariableDescription
{{record.field_name}}Any field from the recipient record
{{sender.name}}Name of the sending user
{{sender.email}}Email of the sending user
{{org.name}}Your organization name
{{unsubscribe_link}}Link for recipient to unsubscribe
{{current_date}}Today's date
{{current_year}}Current year (for footers)

Fallback Values

Use fallbacks for optional fields: {{record.first_name | default: "there"}} renders as "there" if first_name is empty.

Starter Templates

Get started quickly with pre-designed templates:

  • Welcome Email - Greet new contacts and introduce your business
  • Follow-Up - Check in after initial contact
  • Newsletter - Share news and updates
  • Promotional - Announce offers and promotions
  • Event Invitation - Invite contacts to events
  • Thank You - Express gratitude after purchase or meeting
  • Re-engagement - Win back inactive contacts

Email Styling

Customize your email's appearance to match your brand:

Global Styles

  • Background color - Email body and content background
  • Font family - Choose from web-safe fonts
  • Primary color - Applied to buttons and links
  • Content width - 480px to 680px

Component Styles

Each component has its own styling options:

{
  "button": {
    "backgroundColor": "#4F46E5",
    "textColor": "#FFFFFF",
    "borderRadius": "8px",
    "padding": "12px 24px",
    "fontSize": "16px",
    "fontWeight": "600"
  }
}

Responsive Design

All emails are automatically responsive:

  • Desktop - Full width up to your content width setting
  • Tablet - Columns stack if needed
  • Mobile - Single column, touch-friendly buttons

Use the preview toggle to see how your email looks on different devices.

Sending Emails

Via Automation

The most common way to send emails is through automations:

{
  "type": "send_email",
  "config": {
    "template_id": "tmpl_welcome",
    "to": "{{record.email}}",
    "subject": "Welcome to {{org.name}}!",
    "from_name": "{{sender.name}}",
    "reply_to": "{{sender.email}}"
  }
}

Manual Send

Send emails directly from a record:

Step

Open a Record

Navigate to the record you want to email.

Step

Click "Send Email"

Find the email action in the record menu.

Step

Select Template

Choose a template or compose from scratch.

Step

Review & Send

Preview the personalized email and click send.

Email Logs

Track every email sent from your Kantos account:

StatusDescription
SentEmail successfully sent to mail server
DeliveredEmail accepted by recipient's mail server
OpenedRecipient opened the email (tracking pixel loaded)
ClickedRecipient clicked a link in the email
BouncedEmail couldn't be delivered
ComplainedRecipient marked as spam
UnsubscribedRecipient clicked unsubscribe

Email Tracking

Open and click tracking is enabled by default. You can disable it per template if needed for privacy-sensitive communications.

Localization

Create templates in multiple languages:

Step

Enable Localization

In template settings, click "Add Translation".

Step

Select Language

Choose the language for the translation.

Step

Translate Content

Update text blocks with translated content.

Step

Set Auto-Detect

Enable automatic language selection based on record's locale field.

{
  "template": {
    "default_locale": "en",
    "translations": {
      "en": { "subject": "Welcome to Kantos!", "body": "..." },
      "es": { "subject": "¡Bienvenido a Kantos!", "body": "..." },
      "fr": { "subject": "Bienvenue chez Kantos!", "body": "..." }
    }
  }
}

Attachments

Include files with your emails:

  • Static attachments - Upload files to include with every send
  • Dynamic attachments - Attach files from the record's media fields
  • Maximum size - 10MB total per email
{
  "type": "send_email",
  "config": {
    "template_id": "tmpl_proposal",
    "attachments": [
      {"type": "static", "file_id": "file_price_list"},
      {"type": "dynamic", "field": "record.proposal_pdf"}
    ]
  }
}

Best Practices

Design

  • Keep subject lines under 50 characters
  • Use a clear, single call-to-action
  • Include your logo for brand recognition
  • Test on multiple email clients
  • Always include an unsubscribe link

Content

  • Personalize with recipient's name and relevant data
  • Keep paragraphs short (2-3 sentences)
  • Use bullet points for scannable content
  • Write in a conversational tone
  • Proofread before sending

Deliverability

  • Authenticate your sending domain (SPF, DKIM, DMARC)
  • Maintain a clean email list
  • Don't use spammy words in subject lines
  • Keep image-to-text ratio balanced
  • Monitor bounce rates and remove invalid emails

Domain Authentication

Improve deliverability by authenticating your sending domain:

Step

Navigate to Settings

Go to Settings → Communications → Sending Domains.

Step

Add Your Domain

Enter the domain you want to send from (e.g., company.com).

Step

Add DNS Records

Add the provided SPF, DKIM, and DMARC records to your DNS.

Step

Verify

Click "Verify" to confirm the records are properly configured.

Important for Deliverability

Without domain authentication, your emails may land in spam folders. Complete verification before sending to customers.

Next Steps

    Communications | Kantos Docs