Conditional Statement in transactional message center | Adobe Higher Education
Skip to main content
abhinav99
Level 4
October 11, 2022
解決済み

Conditional Statement in transactional message center

  • October 11, 2022
  • 1 の返信
  • 1496 ビュー

Hi team,

We have a use case where we have to use conditional statements (if, else and maybe a for loop as well) in a transactional message center email template.

 

Is it possible to do so, can we use conditional statements in the transactional message center email template?

If yes, please provide some examples or documentation for the same.

 

Thanks

このトピックへの返信は締め切られました。
ベストアンサー david--garcia

 

<% var ctx = XML(rtEvent.ctx); %>

<% if (rtEvent.ctx.myValue == true) {%>

display some html block

<%} else { %>

display some another html block

<%}%>

 

 

The approach is basically the same as normal delivery templates, but in transactional you need to define the ctx variable as above.

1 の返信

david--garcia
Level 10
October 12, 2022

 

<% var ctx = XML(rtEvent.ctx); %>

<% if (rtEvent.ctx.myValue == true) {%>

display some html block

<%} else { %>

display some another html block

<%}%>

 

 

The approach is basically the same as normal delivery templates, but in transactional you need to define the ctx variable as above.

Level 2
January 26, 2023

Hi @david--garcia @abhinav99  

 

I have been trying to implement your steps but it still doesn't work for me.

Can you suggest what's wrong?

 

Original method
<% if ( toString(rtEvent.ctx.@freeText22).length > 0 ) { %>
<tr>
<td class="mpbx-27" style="font-size:16px; line-height:22px; font-family:'Core Sans C', Helvetica, Arial, sans-serif; font-weight: 400; text-align:left; min-width:auto !important; color:#151515; padding-bottom: 20px;">
<strong>Sources</strong><br />
<%= rtEvent.ctx.@freeText22 %>
</td>
</tr>
<% } %>

 

New method
<% var ctx = XML(rtEvent.ctx); %>
<% if ( rtEvent.ctx.@freeText22 == true ) { %>
<tr>
<td class="mpbx-27" style="font-size:16px; line-height:22px; font-family:'Core Sans C', Helvetica, Arial, sans-serif; font-weight: 400; text-align:left; min-width:auto !important; color:#151515; padding-bottom: 20px;">
<strong>Sources</strong><br />
<%= rtEvent.ctx.@freeText22 %>
</td>
</tr>
<% } %>
<%} else { %>
<%}%>

 

Thanks!!

 

david--garcia
Level 10
February 14, 2023

Try the below;

 

<% var ctx = XML(rtEvent.ctx); % > <% if (rtEvent.ctx.@freeText22 == true) {% > <tr> <td class = "mpbx-27" style = "font-size:16px; line-height:22px; font-family:'Core Sans C', Helvetica, Arial, sans-serif; font-weight: 400; text-align:left; min-width:auto !important; color:#151515; padding-bottom: 20px;" > <strong> Sources </strong><br / > <%= rtEvent.ctx.@freeText22 % > </td> </tr> <% } else { % > //html something else <%}%>