Hello team,
In my Zoho creator application, We created two forms one is to create email groups (Each group contains many number of emails) and another one is to send emails to the group of emails that we already created.
We are using send email function in deluge script to send these emails. When a user picks a group name from the send emails form, we are fetching all the emails from the group and storing them in a variable called fet.
And sending emails by using below code. (Sample Code)
for each rec in fet
{
sendmail
[
from: zoho.loginuserid
to: rec.email
subject: "Some subject"
message: "Some message here"
]
}
My Questions are :
- How many maximum emails that I can send at a time from the above code.
- What are the email limits in creator. (Per day and Per Month).