- Posts: 26
- Thank you received: 0
Email Results
Please Log in or Create an account to join the conversation.
You can use the two different admin notification emails to send emails to certain addresses. In the field you can use Expression Manager to determine whether the result should be sent and to whom it should be sent.
In the email template for those two different types of admin notifications you can insert the results via Expression Manager as well.
I'm not a LimeSurvey GmbH member. I answer at the LimeSurvey forum in my spare time. No support via private message.
Some helpful links: Manual (EN) | Question Types | Workarounds
Please Log in or Create an account to join the conversation.
So, if location A is selected, send results to UserA.
Is this what you are saying I can do?
Please Log in or Create an account to join the conversation.
Now you need to write an expression into the email field of the admin notification that gives you the correct email it should be sent to, depending on the location question.
I'm not a LimeSurvey GmbH member. I answer at the LimeSurvey forum in my spare time. No support via private message.
Some helpful links: Manual (EN) | Question Types | Workarounds
Please Log in or Create an account to join the conversation.
{if(location==A; "userA@email.tld"; if(location==B; "userB@email.tld"; if(location==C; "userC@email.tld"; "")}
I'm not a LimeSurvey GmbH member. I answer at the LimeSurvey forum in my spare time. No support via private message.
Some helpful links: Manual (EN) | Question Types | Workarounds
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
I'm not a LimeSurvey GmbH member. I answer at the LimeSurvey forum in my spare time. No support via private message.
Some helpful links: Manual (EN) | Question Types | Workarounds
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
But I already found some errors in my code. There are definitely missing some closing ")" and I think the semi colon needs to be actually a comma ( manual.limesurvey.org/Expression_Manager#Implemented_Functions ).
This should be better:
{if(location==A, "userA@email.tld", if(location==B, "userB@email.tld", if(location==C, "userC@email.tld", "")))}
I'm not a LimeSurvey GmbH member. I answer at the LimeSurvey forum in my spare time. No support via private message.
Some helpful links: Manual (EN) | Question Types | Workarounds
Please Log in or Create an account to join the conversation.
So I tried a simple one
{if(Facility==A, "my address","my address")} hoping that right or wrong I should have received an email, but I didn't.
Please Log in or Create an account to join the conversation.
Can you upload an .LSS file with just the relevant parts of the survey?
I'm not a LimeSurvey GmbH member. I answer at the LimeSurvey forum in my spare time. No support via private message.
Some helpful links: Manual (EN) | Question Types | Workarounds
Please Log in or Create an account to join the conversation.
I'm not a LimeSurvey GmbH member. I answer at the LimeSurvey forum in my spare time. No support via private message.
Some helpful links: Manual (EN) | Question Types | Workarounds
Please Log in or Create an account to join the conversation.
I'm not a LimeSurvey GmbH member. I answer at the LimeSurvey forum in my spare time. No support via private message.
Some helpful links: Manual (EN) | Question Types | Workarounds
Please Log in or Create an account to join the conversation.
Yes, email does work correctly on this system.
Please Log in or Create an account to join the conversation.
I'm not a LimeSurvey GmbH member. I answer at the LimeSurvey forum in my spare time. No support via private message.
Some helpful links: Manual (EN) | Question Types | Workarounds
Please Log in or Create an account to join the conversation.