Help with creating / displaying a cumulative string?
Hi - I have a contact database in zoho. I'd like to be able to create a semicolon-separated list of all the email addresses stored in that database, to be pasted into my email client. (Zoho's mail() function is too limited, without attachments or rich text).
Do do this, I need to iterate through the database and concatenate one big string variable and then display it. I tried the code below but it doesn't work. Is there any way to do this?
DisplayEmails
(
type = formula
value = $allemails
)
on load
{
for each x in Employee [Team == "Deluge"]
{
$allemails = $allemails + x.Email
}
)
d