Skip to main content

Copy Deep Link to an Email

Copy a direct link to any email from the Customer Hub timeline, or build one with workflow smart fields.

Share a direct link to a specific email on a customer’s timeline.

From the timeline

  1. Open the customer’s Timeline and click Expand on the email.

  2. Click Copy deep link in the Email content modal.

  3. Paste the link wherever you need it.

When someone opens the link, they land on the customer’s timeline and the email opens automatically. They must be logged into Kolleno and have access to that customer.

Use in workflow API nodes

To include a deep link in an API call node (e.g. send it to an external system), build the URL using smart fields. Replace https://app.kolleno.com with your Kolleno URL if you use a custom domain.

Email received (workflow triggered on a received email):

https://app.kolleno.com/customers/timeline/{{customer.id}}/{{customer.company_id}}/?emailId={{email_received.id}}&emailType=received

Email sent (workflow triggered on a sent email):

https://app.kolleno.com/customers/timeline/{{customer.id}}/{{customer.company_id}}/?emailId={{email_sent.id}}&emailType=sent

Part

Smart field / value

Customer ID

{{customer.id}}

Company ID

{{customer.company_id}}

Email ID

{{email_received.id}} or {{email_sent.id}}

Email type

received or sent (literal — must match the email type)

Example API body (email received workflow):

{
"email_deep_link": "https://app.kolleno.com/customers/timeline/{{customer.id}}/{{customer.company_id}}/?emailId={{email_received.id}}&emailType=received"
}

Did this answer your question?