Hi @Sreeji_Lal ,
You can use conditional statement to display different images to different set of recipients.
Example:
<% if ( targetData.segmentCode == 'A' ) { %><img src="https://images/myImage_1.png"><% } %>
<% if ( targetData.segmentCode == 'B' ) { %><img src="https://images/myImage_2.png"><% ...
Hi @AntonaccioM ,
When you change the data type of an attribute, the existing field will get dropped (@id integer will get deleted) and new attribute with new data type (@id string) will get created. So the data of ID will get deleted and this will be having impact. So either you can take a backup o...
Hi @SkylerQu2 ,
Store the variable in your 'ccStageAlerts' workflow and to call these variables in delivery refer this section - Calling a Variable in the Content of the Delivery
Hi @tejashri12 ,
By OOTB structure, you can't able to see the 'modified by' data here. But for future, you can extend the address schema and add audit trail to it and update the database structure to view created by and modified by data.
Hi @Soohoon ,
In query > additional data > add the below expression (lets consider alias as @identifyNull )
Coalesce(@fieldA, 'NULL')
This will result all null values as a string 'NULL' and empty values still remains empty. And use a split activity after query, and filter now as @identifyNull = 'NUL...
Hi @at7140 ,
Are you setting file path as
Folder1/folder2/fileName.csv ?
If so, add trailing slash ( / ) in the beginning.
Example, /Folder1/folder2/fileName.csv
Hi @LAR1985 ,
'Bad-quality address' out of the box typology rule will exclude the domains with bad address format, example: abc@@domain.com, without_dot_com@domainOnly, without_domain@.com etc.
Hi @Sanjana12 ,
sometimes you can find the deleted deliveries under /Campaign Management/Deliveries/Deleted deliveries/ folder. A delivery might get deleted only if some operator manually deletes it or by using a workflow to delete it or from database deletion. If there is an automated process of ta...