Hi, I am using Automation to send an email to Reporter + Request participants. Is there a way to display their name in the email body?
What would I use instead of the smart value below?
Hello {{reporter.displayName}},
this is to inform you that...
Thanks!
Hi Giovanni,
Do you mean you want to include both the Reporter and the Request Participants in the email?
You could simply use {{issue.Request Participants.displayName}}.
So in your example
Hello {{issue.reporter.displayName}}, {{issue.Request Participants.displayName}},
this is to inform you that...
Cheers,
Patrick Tripodi
GLiNTECH
Hi, thank you, this will work nicely. I was actually aiming at having each recipient only see its own name, not all the recipient’s.
Also, is there an option to only show the given name?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Giovanni,
There isn't an out of the box way to show the given name only but you can try {{issue.reporter.displayName.substringBefore(" ")}}
This will return the full name but only show what is before the first space in the full name.
To send an individual email, you can do the following:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for your help, I would have never come to this by myself!
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.