Posts

Showing posts from October, 2017

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...