Sending Emails
Learn how to send emails from Kognitos.
Overview
Kognitos simplifies email automation. With just a few lines of natural language syntax, you can send emails directly within your automated workflows — no configuration or server management is required.
Behavior
By default, Kognitos sends emails using the sender Kognitos Automation. The sender address follows the format <id>@app.kognitos.com
, where the id
corresponds to the ID of your Playground or Process run.
Syntax
Below is a line-by-line overview of the automation syntax. Expand each line to learn more.
Examples
1. Basic Syntax
The following syntax formats are all supported equivalents and produce the same results.
Syntax: send an email
send an email where
the recipient is "[email protected]"
the subject is "Kognitos: Welcome Aboard"
the message is "We're happy to have you here! Let's automate!"
2. Sending Emails with Attachments
Single Attachments
send an email to "[email protected]" where
the subject is "Invoice Summary"
the message is "Attached below is the invoice summary for July 2025."
the attachment is the invoice
create a sample table
use the above as the table
send "Here is your table" to "[email protected]" where
the attachment is the table
Multiple Attachments
send an email to "[email protected]" where
the subject is "Onboarding Materials"
the message is "Here are your onboarding materials!"
the attachments are the new hire paperwork, the onboarding document, the file
3. Sending Multiple Messages
When multiple messages are specified, Kognitos sends a single email containing all of them:
the instructions are "Log into Kognitos", "Build your automation in the Playground"
send the instructions to "[email protected]"
4. Specifying CC and BBC on Emails
send "Hello!" to "[email protected]" where
the cc emails are "[email protected]", "[email protected]"
the bcc emails are "[email protected]"
Last updated
Was this helpful?