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
| Component | Description |
|---|---|
| Text Block | Rich text with formatting, links, and variables |
| Image | Upload images or use URLs with alt text |
| Button | Call-to-action buttons with customizable styling |
| Divider | Visual separator between sections |
| Spacer | Adjustable vertical spacing |
| Columns | 2 or 3 column layouts for side-by-side content |
| Logo | Your brand logo with automatic sizing |
| Social Links | Social media icons with links |
| Footer | Unsubscribe link, address, and legal text |
Creating an Email Template
Navigate to Communications
In your Kantos dashboard, click "Communications" in the sidebar.
Create New Template
Click "Create Template" and choose "Blank" or select a starter template.
Design Your Email
Drag components from the left panel onto the canvas.
Add Content
Click any component to edit text, images, and styling.
Insert Variables
Use {{variable}} syntax to personalize content.
Preview & Test
Preview on desktop/mobile and send a test email.
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
| Variable | Description |
|---|---|
{{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:
Open a Record
Navigate to the record you want to email.
Click "Send Email"
Find the email action in the record menu.
Select Template
Choose a template or compose from scratch.
Review & Send
Preview the personalized email and click send.
Email Logs
Track every email sent from your Kantos account:
| Status | Description |
|---|---|
| Sent | Email successfully sent to mail server |
| Delivered | Email accepted by recipient's mail server |
| Opened | Recipient opened the email (tracking pixel loaded) |
| Clicked | Recipient clicked a link in the email |
| Bounced | Email couldn't be delivered |
| Complained | Recipient marked as spam |
| Unsubscribed | Recipient 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:
Enable Localization
In template settings, click "Add Translation".
Select Language
Choose the language for the translation.
Translate Content
Update text blocks with translated content.
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:
Navigate to Settings
Go to Settings → Communications → Sending Domains.
Add Your Domain
Enter the domain you want to send from (e.g., company.com).
Add DNS Records
Add the provided SPF, DKIM, and DMARC records to your DNS.
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
- Create automations to send emails automatically
- Set up your data model with email fields for recipients
- Capture leads to build your email list