- void NOTIFY(int Group_Number)
- {
- for each row in parent_database [Group == Group_Number]
- {
- sendmail
- (
- To : row.Parent1_Email
- From : zoho.adminuserid
- Subject : "sample"
- Message : "yadda yadda" + thisapp.printout(row.user_key) + "yadda yadda"
- )
- }
- }
The function
thisapp.printout(row.user_key) adds an html table to the email and is 28 lines long for a specific record.
When I run the sendmail function I get an error message for maximum deluge statements hit. Even with this error, I know some of the emails get sent. My log shows the following, which is strange because there are a maximum of 259 emails being sent. I have tried this twice to the same effect.
With the information I have provided, does this error make sense?
Note: One of the emails sent should go to my personal gmail inbox but has now not arrived after 25 minutes so I also think the email count is wrong.
buzzap>edirectory shared