Please help us help you and fill where relevant:
Your LimeSurvey version: 3.17.7+190627
Own server or LimeSurvey hosting: Own
Survey theme/template: Default
==================
Hello everyone,
I have a single choice radio list ( Question Code is TT01). It has 5 Answer options and Answer Codes are A1, A2, A3, A4 and A5 respectively.
I would like to send out admin notifications based upon the radio option checked. As an example, if A1 radio list is selected then the admin notification needs to go to A1@email.com, if A2 is checked then admin notification emails needs to go to A2@email.com
I tried using the following expression in the admin email notification field but its not working. I tested using this in the "End Message" body within settings and it shows fine depending upon the selection I make on the form however this expression doesnt work in the basic admin notifications field.
{if(TT01.code == 'A1','a1@email.com',if(TT01.code == 'A2','a2@email.com',if(TT01.code == 'A3','a3@email.com',if(TT01.code == 'A4','a4@email.com',if(TT01.code == 'A5','a5@email.com',''))))}
Please advise if this is doable.