Shelby Owens
10/25/2024, 5:40 PMCeligo AI
10/25/2024, 5:41 PMAI generated answer (using internal Slack threads):Based on the conversations, it seems like you're trying to reference a field from a related record (the customer) in your email template. The issue is that the email template only has access to the fields on the record that the workflow is running on (the custom record). To get around this, you can create a formula field on your custom record that pulls in the company name from the customer record. You can then reference this formula field in your email template. Here's how you can do it: 1. Go to the custom record definition and create a new field. Set the type to "Formula (Text)". 2. In the formula field, use a formula like this:
{customer.companyname}
. This will pull in the company name from the customer record linked to your custom record.
3. Save the new field.
4. In your email template, you can now reference this new field like this: ${record.custrecord_your_new_field}
. Replace custrecord_your_new_field
with the actual ID of the new field you created.
Remember to replace customer
and companyname
with the actual field IDs in your account, and replace custrecord_your_new_field
with the ID of the new field you created.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
10/25/2024, 5:41 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.867595673
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.857195914
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.851142168
Celigo AI
10/25/2024, 5:41 PMAaron McCausland
10/25/2024, 6:44 PMHas Customer object: ${customer?has_content}
And see if when you send an email from the workflow, whether it says Yes or No after "Has Customer object".Shelby Owens
10/25/2024, 7:06 PM