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.
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!"
Syntax: send an email to {recipient}
send an email to "[email protected]" where
the subject is "Kognitos: Welcome Aboard"
the message is "We're happy to have you here! Let's automate!"
Syntax: send {message} to {recipient}
send "We're happy to have you here! Let's automate!" to "[email protected]" where
the subject is "Kognitos: Welcome Aboard"
📧 Kognitos: Welcome Aboard
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
📧 Invoice Summary
Attached below is the invoice summary for July 2025.
📎 Attachments: 1 file
create a sample table
use the above as the table
send "Here is your table" to "[email protected]" where
the attachment is the table
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
📧 Onboarding Materials
Here are your onboarding materials!
📎 Attachments: 3 files
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]"