You need to sign in to do that
Don't have an account?
KrishSingh
How to solve error Too many Email Invocations: 11
I am facing this problem, I have my custom apex code from where i am sending emails. I am facing "Too many Email Invocations: 11" error, can any one tell me about this.
krish
Krish,
Please see this : http://forceguru.blogspot.com/2011/03/how-to-send-more-than-10-e-mails.html
Hope this will help you...
You mean i need to write a batch class for it???
I hope yes. Also if you can share your code here, we can assist you in better way.
Set a counter in your apex batch file that counts email invokes within your batch.
Every time you invoke an email in the batch, then increase counter by 1
If you hit 10 you must stop emailing from within the batch
Apex batch jobs are only allowed to send 10 emails max.
Too many email invocations (https://help.salesforce.com/s/articleView?id=000385111&type=1)