How to add multiple "To"'s in Email class

Tanner Wortham
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 10, 2013

I'm looking at the API here:

https://docs.atlassian.com/jira/5.2.5/com/atlassian/jira/mail/Email.html

I want to have more than one recipient of the email I'll be generating with my groovy code. Do I separate each email address in the constructor with spaces? commas? something other?

(I could test this myself, but my DEV environment is down. Also it's been a while since I've chatted with you folks. ;)

1 answer

1 accepted

2 votes
Answer accepted
Bhushan Nagaraj
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 10, 2013

Hey Tanner,

Just comma separated email addresses as a String.

An example here where I just use a StringBuilder to create a comma separated String of email addresses.

https://bitbucket.org/bhushan154/jira-subtask-assign-plugin/src/b8bf24f84b1d3abf344e975f5708268896e3d60e/src/main/java/com/stygian/jira/plugins/postfunctions/NotifySubtaskAssignee.java?at=master

Cheers

Bhushan

Suggest an answer

Log in or Sign up to answer