Dynamic Site Messaging (DSM) to promote New Deem Migration
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");}
Â
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");}
Â
Â