by dev | Apr 21, 2018 | Book
CreateSmsConversation While MobileConnect includes the ability to create conversations through assigning Next Keywords to message templates, this function provides the ability to conditionally create a conversation and can dynamically define the Next Keyword to use,...
by dev | Apr 21, 2018 | Book
Mod This function returns the remainder after the division of two numbers (also known as a modulo operation). Arguments Mod(1,2) Ordinal Type Required Description 1 Number True Value to be divided (dividend) 2 Number True Value to divide by (divisor) NOTE: This...
by dev | Apr 21, 2018 | Book
EndSmsConversation This function will end an active conversation-based on a given short or long code and a Contact’s mobile number. Once a conversation ends, it will allow the Contact to send other MO messages related to the short or long code, otherwise the...
by dev | Apr 21, 2018 | Book
Multiply This function returns the product of multiplying two numbers. Arguments Multiply(1,2) Ordinal Type Required Description 1 Number True Value to be multiplied 2 Number True Value to be multiplied Example %%[ var @product, @num1, @num2 set @num1 = 5 set @num2 =...
by dev | Apr 21, 2018 | Book
SetSmsConversationNextKeyword This function will set the keyword for the next message in a conversation. It does not create a new conversation. Rather, it sets the next conversation path similar to CreateSmsConversation, but for an existing conversation. The Next...
by dev | Apr 21, 2018 | Book
Random This function returns a random number between two numbers. Both upper and lower bound parameters are inclusive. Arguments Random(1,2) Ordinal Type Required Description 1 Number True Value of lower bound 2 Number True Value of upper bound Example %%[ var...