Hi
Can anyone let me know how to share the attachments to the customer via email that are attached by the agents on the JSM software side? Is there any automation for this?
Hi @Jyotshna Naidu, you might use the smart value {{attachment.content}} in the Send email action:
If there are more than one attachment it needs to be handled differently because the smart value attachment will contain a list, not a single entry. Please inform me if this is the case in your scenario.
TimK.
Hi @Tim Kopperud ,
Thanks for quick response
Tried this but in the email I am not getting any like
It's just showing the Link to in subject and
Here is a link to the attachment in the body
rather than these two lines, I am not getting the issue key or attachment link
I just want to have recently added an attachment to the email. where customers able to open and see it
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Jyotshna Naidu, I just tested it and it works, so it might be something with your rule. Can you attach your rule in a comment?
If you only want to monitor last image make sure you trigger the rule by Field value changed and monitor on the field Attachment.
To only send link to the last image attached you can do something like this:
Branch step For each: Smart value
Replace the action step Then: add value to the log audit with your own send email action. I recommend using log to audit until you have found the values you need for your email action (faster than waiting for the email).
TimK.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Tim Kopperud ,
But in my automation, i can't see this Create variable action.
We are not into the cloud version
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Jyotshna Naidu, sorry, I understand. It is included in the latest version, as shown here (from DC):
The latest DC/Server documentation do refer to Create Variable. but it seems to be only available from version 9.x. I cannot find it in the documentation for 8.2.
I will see if I can come up with a solution without using Create Variable. I will update you.
TimK.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can see only this create variable actions
We are in 9.4.8 JSM
thanks for your quick replies
Please do let me know if u find any solutions.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Jyotshna Naidu, Automation is included as an App. Do you also have the latest version of the app?
TimK.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Jyotshna Naidu, a more simplified rule follows, without the need for Create variable. Try adjusting the rule to this:
(I have no idea why I didn't suggested this in the first place.)
TimK.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Tim Kopperud ,
We don't have advanced branching to select for each rule
We are not in the cloud version .
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Jyotshna Naidu, can you try this as the smart value within the log action (or email)?
{{#attachment}}{{#last}}{{content}}{{/}}{{/}}
Don't use the branching or the filter examples I gave earlier, only use action.
I cannot guarantee that "#last" attachment is always the latest attachment added (though I suspect it is). This is why I tried to solve this by using date comparison.
(I think the smart value code above could use date comparison, but I'm struggling with that).
TimK.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.