we have a custom fields Email Address
we filled this field following the rule:
when the name or the description of a card contains "{* }@{* }", set custom field "Email Id" to "{wildcard1}@{wildcard2}"
it works fine
Question:
when the card move, how to send email to this custom field: Email Address
when the card move, how to send email to card member (assignee)
You can use the Notification scheme
Refer this - https://support.atlassian.com/jira-cloud-administration/docs/configure-notification-schemes/
You can take the email address from the custom field to send the notification
HI @Tammy Shi
With Send an email action in automation you can use smart values and assignee value.
when the card move, how to send email to this custom field: Email Address ->
{{customfield_xxxxx.emailAddress}}
To find the right customfield you can check api page like this in a web browser. : https://yourinstance.atlassian.net/rest/api/3/issue/issuekey
when the card move, how to send email to card member (assignee) ->
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
in the Automation Rules
I did those two rules
when the description of a card contains "{* }@{* }", set custom field "Email Id" to "{wildcard1}@{wildcard2}"
And then
when a card is moved into list "Product Back Log" by anyone, send an email notification to "{{%Email Id}}" with subject "test" and message "test"
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.