활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
Hi,
I,m currently setting up my very first email delivery in Adobe Campaign. In a first phase, I want to add basic personalization (last name, first name).
However, I'm aware I also need to implement a fallback in case the CRM fields are empty. So instead of "Dear Mr. X', I need a fallback resorting to simply 'Dear Mr.'
How do I implement this fallback?
Kind regards
Cederic
해결되었습니다! 솔루션으로 이동.
Hi Cedric,
try using coalesce function in your target and add a default value as empty i.e
Coalesce | Returns value 2 if value 1 is zero or null, otherwise returns value 1 | Coalesce(<value 1>, <value 2>) |
refer to the screens below. This will help the business user and template designers to avoid the if else and any other js from email template.
Ideally I would probably make a new field on load which contains the correct value for your greeting.
Failing that your best bet is to create a personalisation block which deals with this and select that block for your greeting. You should be able to duplicate the Greetings personalisation block as a base and modify to suit your needs.
조회 수
답글
좋아요 수
Hi Cedric,
You should use if ,else if constructs in the delivery editor to use such conditional content.
Detailed steps are given in : https://docs.campaign.adobe.com/doc/AC6.1/en/DLV_Personalizing_deliveries_Conditional_content.html
조회 수
답글
좋아요 수
Hi Cedric,
try using coalesce function in your target and add a default value as empty i.e
Coalesce | Returns value 2 if value 1 is zero or null, otherwise returns value 1 | Coalesce(<value 1>, <value 2>) |
refer to the screens below. This will help the business user and template designers to avoid the if else and any other js from email template.
This is the Campaign Standard forum, and the accepted answer is for Campaign Classic?
I'm guessing the answer is NO in AC standard then....
조회 수
답글
좋아요 수
In Adobe Campaign Standard, which is what forum this question was posted to:
There really isn't an out-of-box way to do this. The only way you can choose fallback behavior is with JavaScript. Here is some pseudocode which should get you started:
<% var greeting = null; if(context.profile.firstName == null) { greeting = ""; } else { greeting = context.profile.firstName; } %>
Dear Mr. <%= greeting %>
(Note that "Dear Mr." by itself does not sound natural to native English speakers, so you'd want better copy.)
조회 수
답글
좋아요 수
조회 수
Likes
답글
조회 수
Likes
답글