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.

Find Your Playground or Process ID

The ID is visible in the URL:

Playgrounds

kognitos.com/department/<AGENT-ID>/playground/<PLAYGROUND-ID>

Processes

kognitos.com/department/<AGENT-ID>/processes/<PROCESS-ID>/run/<RUN-ID>

Alternatively, you can add the Microsoft Outlook Book (BDK) to your agent to connect to your Outlook account and send emails from your own domain.

Syntax

Below is a line-by-line overview of the automation syntax. Expand each line to learn more.

send an email or send an email to {recipient} or send {message} to {recipient}

What does it do?

Instructs the system to send an email from Kognitos.

Where does it go?

This phrase should be written on a new line.

Is it required?

βœ… Yes β€” This phrase is required.

Does it require data?

βœ… Yes β€” if specified in the syntax:

  • Replace {message} with a Text value or reference.

  • Replace {recipient} with a Text value or reference.

See Example 1 for more details.

the subject is s

What does it do?

Specifies the email subject line.

Where does it go?

Indented beneath one of the following:

  • send an email where

  • send an email to {recipient} where

  • send {message} to {recipient} where

Is it required?

❌ No β€” This phrase is optional in the syntax.

Does it require data?

βœ… Yes β€” Replace s with an email subject line.

Example

the subject is "IMPORTANT: Memo"
the message is m

What does it do?

Specifies the email message.

Where does it go?

Indented beneath one of the following:

  • send an email where

  • send an email to {recipient} where

Is it required?

❌ No β€” This phrase is optional in the syntax.

Does it require data?

βœ… Yes β€” Replace m with an email message.

Example

the attachments {is/are} x

What does it do?

Specifies the email attachments.

Where does it go?

Indented beneath one of the following:

  • send an email where

  • send an email to {recipient} where

  • send {message} to {recipient} where

Is it required?

❌ No β€” This phrase is optional in the syntax.

Does it require data?

βœ… Yes β€” Replace x with one or more references to data objects. Use is to specify a singular attachment or use and to specify multiple attachments.

Example

the recipients {is/are} x

What does it do?

Specifies the email recipient to whom the message will be delivered.

Where does it go?

Indented beneath send an email where .

Is it required?

❌ No β€” This phrase is optional in the syntax.

Does it require data?

βœ… Yes β€” Replace x with an email recipient. Use is to specify a singular recipient or use and to specify multiple recipients.

Example

the cc emails are x

What does it do?

Specifies the recipients who will receive a carbon copy (CC) of the email.

Where does it go?

Indented beneath one of the following:

  • send an email where

  • send an email to {recipient} where

  • send {message} to {recipient} where

Is it required?

❌ No β€” This phrase is optional in the syntax.

Does it require data?

βœ… Yes β€” Replace x with one or more email recipients.

Example

the bcc emails are x

What does it do?

Specifies the recipients who will receive a blind carbon copy (BCC) of the email.

Where does it go?

Indented beneath one of the following:

  • send an email where

  • send an email to {recipient} where

  • send {message} to {recipient} where

Is it required?

❌ No β€” This phrase is optional in the syntax.

Does it require data?

βœ… Yes β€” Replace x with one or more email recipients.

Example

Examples

1. Basic Syntax

The following syntax formats are all supported equivalents and produce the same results.

Syntax: send an email

πŸ“§ Kognitos: Welcome Aboard

We're happy to have you here! Let's automate!

2. Sending Emails with Attachments

Single Attachments

πŸ“§ Invoice Summary

Attached below is the invoice summary for July 2025.

πŸ“Ž Attachments: 1 file

πŸ“§ Message for [email protected]

Here is your table

πŸ“Ž Attachments: 1 file

Multiple Attachments

πŸ“§ 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:

πŸ“§ Message for [email protected]

instructions:

  • Log into Kognitos

  • Build your automation in the Playground

4. Specifying CC and BBC on Emails

πŸ“§ Message for [email protected]

Last updated

Was this helpful?