We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03f5bf5 commit f86289eCopy full SHA for f86289e
src/services/TeamService.js
@@ -327,9 +327,9 @@ async function sendEmail (currentUser, data) {
327
cc: _.uniq([...dataCC, ...templateCC])
328
};
329
let emailStringProps = {
330
- from: emailProps.from.join(','),
331
- recipients: emailProps.recipients.join(','),
332
- cc: emailProps.cc.join(',')
+ from: (emailProps.from).join(','),
+ recipients: (emailProps.recipients).join(','),
+ cc: (emailProps.cc).join(',')
333
334
let emailData = {
335
data: { ...data.data, ...emailStringProps },
0 commit comments