Skip to content

Commit

Permalink
#1902: update cc and bcc value on transactional journeys from transac…
Browse files Browse the repository at this point in the history
…tionalEmail
  • Loading branch information
JoernBerkefeld committed Jan 10, 2025
1 parent 0337401 commit 42f86be
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion @types/lib/metadataTypes/Journey.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion lib/metadataTypes/Journey.js
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,10 @@ class Journey extends MetadataType {
}
}
if (linkedTE.options) {
triggeredSend.isTrackingClicks = linkedTE.options.trackLinks;
triggeredSend.isTrackingClicks =
linkedTE.options.trackLinks || false;
triggeredSend.ccEmail = linkedTE.options.cc || '';
triggeredSend.bccEmail = linkedTE.options.bcc || '';
}

// send classification
Expand Down

0 comments on commit 42f86be

Please sign in to comment.