I have a dropdown list for Appointment Location and the choices are the City Names, then in the Value I have the actual address and phone number. In my notifications I need to place the address (value), but I keep getting the City (label). What am I missing, how can I fix this?
Hi Dan. The label is the default when using the {all_fields} merge tag. You can use the :value
modifier, like this:
{all_fields:value}
That will send the value, rather than the label. You can find more documentation for the merge tag modifiers here:
I was not using {all_fields}, I was using {Appointment Location:61}, but your solution worked when I added :value like {Appointment Location:61:value}.
Thanks!
This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.