Solved
Conditions - multiple if statements while choosing email address
Could somebody give me idea how to use multiple if statements in Condition Node?

Additionally has anyone used Condition Node while choosing email address?
Could somebody give me idea how to use multiple if statements in Condition Node?

Additionally has anyone used Condition Node while choosing email address?
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'
)
)
)Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.