Expand my Community achievements bar.

We are excited to introduce our latest innovation to enhance the Adobe Campaign user experience — the Adobe Campaign v8 Web User Interface!

Creating a Content Block for Fragments

Avatar

Level 3

Hey Everyone, 

 

I have a few footer fragments that have a phone number to call in for assistance. 

Well we have emails that need to have a cretan number associated to the type of email. I know you can't add dynamic content in a fragment but you can us content blocks. We use them to format a few things base off the data. But, what we are needing is it to look at the delivery label and set the number accordingly.

 

Example: 

Footer is for Account Alerts

  • One email is about a payment
  • One is about documents. 

Each one has the same footer but need to have a different number for the customer to call in. 

 

 

I know, I probably need to create separate fragments but there are a ton of emails to update if we go that route. This one we can create a content block and just update the handful of fragments and be done. 

 

Thanks for any help! 

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

6 Replies

Avatar

Community Advisor

@derekw42533281, Not sure if this helps. We do handle this at the content block level rather than fragments. We have a variable within the delivery template (example: var deltempId="1") to identify the footer to render from the content block. There will be only one content block containing all the different footers. Here is a snippet from the content block,

<!-- ########## Footer Type1 ########## -->
<% if (deltempId=="1") { %>All footer text<br />
<br /><% } %>

<!-- ########## Footer Type2 ########## -->
<% if (templateId=="2") { %>All footer text<br />
<br /><% } %>

Thanks, Sathees

Avatar

Level 3

Thank you! 

 

I'll try this out and let you know if it worked or i have anymore questions.

Avatar

Administrator

Hi @derekw42533281,

Did it work for you or do you still need help here? Let us know.

Thanks!



Sukrity Wadhwa

Avatar

Level 3

I'm having are Adobe support team look into this. 

I was setting the code up you provided and it wasn't working for me. 


When we do find a solution i'll add it here and mark it as the correct answer. 

 

Thank you for the advise/help.

Avatar

Administrator

Hi @derekw42533281

Were you able to find a solution with Adobe support team assistance? Please let us know.

Thanks!



Sukrity Wadhwa

Avatar

Level 1

Hey there,

 

Ahmad here. I've faced similar issues in the past, especially when you're trying to maintain consistent branding across emails but with slight variations based on context.

 

You're right, fragments aren't designed for dynamic content. But content blocks, combined with scripting or conditional logic, might just do the trick.

 

Here's a potential solution using content blocks:

 

Create a Content Block: This content block will contain the scripting logic to look at the delivery label.

Scripting Logic: You can utilize platform-specific scripting (for example, AMPscript if you're using Salesforce Marketing Cloud) to read the delivery label.

Copy code

if deliveryLabel == 'payment' then
phoneNumber = '123-456-7890'
elseif deliveryLabel == 'documents' then
phoneNumber = '098-765-4321'
end if

 

Insert Content Block into Fragment: Now, instead of hardcoding the phone number in your footer fragment, you reference the content block. Whenever the email is compiled and sent, the content block should execute the script, check the delivery label, and populate the correct phone number.

Updating: If you ever need to change the logic or add new numbers, you just update the content block without touching the individual emails or fragments.

 

A couple of caveats:

 

Ensure that your platform supports using content blocks within fragments. While many do, some platforms have limitations.
Always test! Before rolling this out to all your emails, run a few test emails to ensure the logic works correctly, and the right phone number is displayed based on the delivery label.
It might sound a bit complex initially, but once set up, it'll save heaps of time in the long run, especially if you have many emails to manage.

Hope this helps! If anyone else has tried something different, I'd love to hear your approach. Cheers and good luck with your emails!