Posts

How To Send Email to Collection of Records In Zoho Creator With Example

The best way to send collection of records in Zoho Creator is using String field. Deluge script helps us to achieve this in an easy and effective way. Issues like sending multiple records in a one email based on common criteria will be challenging for a new coder as well as some intermediate level coders. For example, in a scenario, where system should trigger multiple records from a Zoho Creator report to a particular user based on a criteria where student ID is same. In that case, we can achieve that by the following code snippet. Sample code: str="<table border="1" style="border-collapse:collapse;"><tr><th>Student ID</th></th>Contact Number</th></tr>"; for each r in test_form[Emaill == input.Email] { str = str+"<tr><td>"+r.Student_ID<+"/td></td>"+r.Contact_Number+"</td></tr>"; } str="</table>"; sendmail [ from : zo...

How To Get Emails Fields From Users Field Type In Zoho Creator

Users field is a special field type that Zoho has enabled to capture all the app users based on their respective roles. Most people wondering that they can get only username but not the email ID. Please find the below script to fetch email from users field type in zoho creator. If the users field variable name is "users", then, Fetch_Email = users.email_id; This above example code will assign the user email if to the Fetch_Email string. You can always contact us on any issues. Please post your comments below, we will respond to that as early as possible.