내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

AEM Email Contents not listed while synchronizing

Avatar

Level 2

Hi all,

I've created a custom email template in AEM. When pressing the synchronize button in Adobe campaign. The only templates that are listed are the OOTB ones.

These are also the ones that are listed under the path of  "/content/campaign" in AEM.

I've created a custom path in AEM for the email deliveries ex. /content/email_summary_page. None of my email templates are listed in adobe campaign when I click on synchronize.

I've added my resourceType of the email template to the AEMResourceTypeFilter, but it is still not listed.

ONLY when I copy my custom email to the path of /content/campaign, it is listed as AEM Email content.

is there a configuration that I'm missing? that Adobe Campaign also needs to fetch AEM email contents under a different path than the OOTB /content/campaign?

Synchronize screen:

content_campaign.PNG

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Level 10

Hi,

It seems it is not stated in the docs. Here is what I could find on that topic:

By default you need to have the templates in /content/campaigns, this call is made from AC to AEM:

/api/content/sites/campaigns.json?query=SELECT%20*%20FROM%20page%20WHERE%20%5Bchild%5D.%5Bcq%3AacLinks%5D%20IS%20NULL&limit=30&filter.rt=mcm%2Fcampaign%2Fcomponents%2Fnewsletter%2Cmcm%2Fcampaign%2Fcomponents%2Fcampaign_newsletterpage%2Cmcm%2Fneolane%2Fcomponents%2Fnewsletter&showAllProperties=true

However if you put a rewrite rule (Apache) in place, you can transform the call to this:

/api/content.json?query=SELECT%20*%20FROM%20page%20WHERE%20%5Bchild%5D.%5Bcq%3AacLinks%5D%20IS%20NULL&limit=30&filter.rt=mcm%2Fcampaign%2Fcomponents%2Fnewsletter%2Cmcm%2Fcampaign%2Fcomponents%2Fcampaign_newsletterpage%2Cmcm%2Fneolane%2Fcomponents%2Fnewsletter&showAllProperties=true

This then gives you templates located in /content.

Let me know if that's something you could do. Otherwise you'll need to have the email templates somewhere under content/campaign.

Florent

원본 게시물의 솔루션 보기

4 답변 개

Avatar

Level 10

Hi Bert,

Have you seen this thread? Looks like a similar issue. ACS and AEM6.2 - 'GetAEMContentList'

I believe listing the templates under content/campaign is mandatory and cannot be changed.

Florent

Avatar

Level 2

Hi,

That seems like a different issue, as I'm able to retrieve the content list, but only under the /content/campaign path in AEM.

Is there some documentation where I can find that it is mandatory that email templates are placed under /content/campaign? and it is not possible to create our own content structure for syncing AEM Email Contents.

Avatar

정확한 답변 작성자:
Level 10

Hi,

It seems it is not stated in the docs. Here is what I could find on that topic:

By default you need to have the templates in /content/campaigns, this call is made from AC to AEM:

/api/content/sites/campaigns.json?query=SELECT%20*%20FROM%20page%20WHERE%20%5Bchild%5D.%5Bcq%3AacLinks%5D%20IS%20NULL&limit=30&filter.rt=mcm%2Fcampaign%2Fcomponents%2Fnewsletter%2Cmcm%2Fcampaign%2Fcomponents%2Fcampaign_newsletterpage%2Cmcm%2Fneolane%2Fcomponents%2Fnewsletter&showAllProperties=true

However if you put a rewrite rule (Apache) in place, you can transform the call to this:

/api/content.json?query=SELECT%20*%20FROM%20page%20WHERE%20%5Bchild%5D.%5Bcq%3AacLinks%5D%20IS%20NULL&limit=30&filter.rt=mcm%2Fcampaign%2Fcomponents%2Fnewsletter%2Cmcm%2Fcampaign%2Fcomponents%2Fcampaign_newsletterpage%2Cmcm%2Fneolane%2Fcomponents%2Fnewsletter&showAllProperties=true

This then gives you templates located in /content.

Let me know if that's something you could do. Otherwise you'll need to have the email templates somewhere under content/campaign.

Florent

Avatar

Level 2

Ok, Thanks!