myemail = input.Email;
myreport = Tracking_Form [Email == myemail];
for each r in myreport
{
//I don't know what to put here
}
sendmail
(
To : myemail
From : zoho.adminuserid
Subject : "Summary of Form Activity"
Message : "Hello " + input.First_Name + "<br>Please see the following summary of your Form Activity.<br>" + myreport + "<br>If you have any questions or you find any errors, please contact our administrator immediately."
)
success message "Form submitted successfully";
but I don't know what to do with the for function or what to put in the body of the message. myreport currently returns
Tracking_Form[ ID in (1897236000000042019,
1897236000000042027,1897236000000042031,1897236000000049003,1897236000000051003) ]
Thank you for your help!