Expand my Community achievements bar.

SOLVED

Newbie Fusion question. I want to include a URL to the issue in my email

Avatar

Level 2

I have a scenario that looks for a change in a custom field in an issue and then send an email with the change and the name of the issue.  I'd also like to include a link to the issue.  
I'm including the field call URL from the watch field module but it's value is always blank in the bundle and subsequent email.  

Any ideas how to include a link?  Many thanks in advance.  

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

hi,

 

1. URL field is the field on issue itself and it contains whatever users input. It's coming empty, because likely no one in your instance is populating it

2. it's fairly easy to create a URL for an object, paste in fusion in email module something like this for the content:
<a href="https://[YOUR DOMAIN].my.workfront.com/issue/{{33.ID}}/overview">Click here</a>

where 33 is module number from where you get object ID.

This will work for prod env, for preview and sandbox URL part with "my" has to be adjusted.

 

cheers

Rafal

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

hi,

 

1. URL field is the field on issue itself and it contains whatever users input. It's coming empty, because likely no one in your instance is populating it

2. it's fairly easy to create a URL for an object, paste in fusion in email module something like this for the content:
<a href="https://[YOUR DOMAIN].my.workfront.com/issue/{{33.ID}}/overview">Click here</a>

where 33 is module number from where you get object ID.

This will work for prod env, for preview and sandbox URL part with "my" has to be adjusted.

 

cheers

Rafal

Avatar

Level 2

Thank You for the quick concise reply.  I didn't think of doing it this way.