-
A client wants a spreadsheet sent to them every week with the status of the project. I created an Attachment to attach to the email.. I can link to the attachment in the email, but I cannot find the point to ADD the attachment to the email.. The link method works, but you have to be logged in to download the file. Can I set the permissions on a file? The Behavior Tree Where is the magical way to attach the attachment to the email? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Hi @wbtittle! We're in the process of replacing behaviors with automations. The main benefit of automations is that you can use scripting and placeholders for any value in all conditions, actions, etc. They also drastically simplify multi-step workflows like interactions. Behaviors by comparison are simpler but much more confined. What you're looking for is possible in behaviors, but not as intuitive as it should be. If you edit the behavior itself (at the top of your behavior tree in bold), you can add variables to it that are available throughout actions. Add a 'List:Attachments' variable. Set it to the value of the attachment you created. Then the 'Send Email' action will show that variable as an option to include. In automations, we recommend creating a A |
Beta Was this translation helpful? Give feedback.
-
Here's the guide on sending mail from automations: #23 |
Beta Was this translation helpful? Give feedback.
-
Thank you.
…On Mon, Jan 23, 2023 at 3:28 PM Jeff Standen ***@***.***> wrote:
Here's the guide on sending mail from automations: #23
<#23>
—
Reply to this email directly, view it on GitHub
<#54 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AADGGR2MR7OOULIIZHSBKOLWT4HZ5ANCNFSM6AAAAAAUEBCYYE>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
--
Brad Tittle
Tech Support
|
Beta Was this translation helpful? Give feedback.
Hi @wbtittle!
We're in the process of replacing behaviors with automations. The main benefit of automations is that you can use scripting and placeholders for any value in all conditions, actions, etc. They also drastically simplify multi-step workflows like interactions. Behaviors by comparison are simpler but much more confined.
What you're looking for is possible in behaviors, but not as intuitive as it should be. If you edit the behavior itself (at the top of your behavior tree in bold), you can add variables to it that are available throughout actions. Add a 'List:Attachments' variable. Set it to the value of the attachment you created. Then the 'Send Email' action will show that var…