Here is an example which can be adapted for your case.
if (#{ExperiencePlatform.ProfileFieldGroup.profile.homeAddress.city} == 'San Jose') then
(
#{ExperiencePlatform.ProfileFieldGroup.profile.personalEmail.address}
)
else
(
if (#{ExperiencePlatform.ProfileFieldGroup.profile.homeAddress.city} == 'Seattle') then
(
#{ExperiencePlatform.ProfileFieldGroup.profile.personalEmail.address}
)
else
(
if (#{ExperiencePlatform.ProfileFieldGroup.profile.homeAddress.city} == 'New York') then
(
#{ExperiencePlatform.ProfileFieldGroup.profile.personalEmail.address}
)
else
(
'default'
)
)
)