Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Dynamic Site Messaging provides a way to communicate travel policy, vendor recommendations, and much more. Messaging is available on both desktop and mobile; it is also available on Deem confirmation emails.

Resources:

Link to overview and video demonstration on how to use Dynamic Site Messaging

Use Dynamic Site Messaging to inform travelers of the migration to New Deem.

This is an optional communication for New Deem migration.

Classic Deem

Classic Deem Example Messaging:

Welcome to Deem, we are excited to introduce an exciting new platform. 

<a href=https://new-deem.document360.io/ rel="noopener" target="_blank"><u>Click here,</u></a> for further information. To access our exciting new platform please click Switch to New Deem.

Classic Deem Advanced Script:

//Classic DEEM

var type= UserPnrData.ClientDeviceType;

 if (type=="DESKTOP")

 {out.print("true");}

else

{out.print("false");}

image-20240521-142631.png

New Deem

New Deem Example Messaging:

Welcome to Deem, we are excited to introduce an exciting new platform. 

<a href=https://new-deem.document360.io/ rel="noopener" target="_blank"><u>Click here,</u></a> for further information.

New Deem Advanced Script:

//New DEEM

var type= UserPnrData.ClientDeviceType;

 if (type!="NEWDEEMDESKTOP")

 {out.print("false");}

else

{out.print("true");}

image-20240521-142943.png

  • No labels