- Issue created by @lifeontheshore
- πΊπΈUnited States zengenuity
What does the value look like when you render [cleanmails]? Is it comma-separated values or something else? It's possible we might be stripping HTML out of cc_address, so if your output has HTML that could be the issue.
- πΊπΈUnited States lifeontheshore
It is a comma separated list.
The ECA log shows:
- emails (DTO "<div class="views-element-container"><div class="view view-family-member-views view-id-family_member_views view-display-id-block_28 js-view-dom-id-ae133ef6d918cc1ae0558e9cfa4451ef8e9af1a4d59994b9ab222d0012776f51"> <div class="view-content row"> <div> john@sample.com, </div> <div> teresa@sample.com, </div> <div> janet@sample.com, </div> <div> jason@sample.com, </div> </div> </div> </div> ") - strippedemails (DTO " john@sample.com, teresa@sample.com, janet@sample.com, jason@sample.com, ") - cleanmails (DTO "john@sample.com, teresa@sample.com, janet@sample.com, jason@sample.com,")
Using an actual email address in the To field with the [cleanmails] token in the Body field of the email template sends this:
john@sample.com, teresa@sample.com, janet@sample.com, jason@sample.com,
- πΊπΈUnited States zengenuity
The cc_address field is a multi-valued string field. It expects an array of strings, with one address in each string. Is there any way to get ECA views to provide that format of data?