What happens after you hit your Salesforce daily email limit?
In Salesforce, you can set up various workflow processes or create API applications that send email. Most standard Salesforce companies have a limit of 1000 emails per day. (for example see here )
I cannot find any information on what happens after you reach the limit.
eg. what errors occur and administrators are automatically notified?
a source to share
This will throw an exception (I can't remember the exact message). I have received them from time to time and I think they cannot be caught. A quick way to check is to create an anonymous block using the isFuture method, which will send 10 emails inside a loop. Call this method inFuture inside another loop (also 10x) and you will send 100 emails without pushing the limit on the governor.
Of course, you need to run 11x code to get the email exception. It's a pretty good way to do it, but it's better than clicking the 1000x button.
a source to share
I would like to focus on the limitations of Salesforce here. Bulk edition address limit Professional 250 Enterprise Edition 500 Unlimited editions 1000
To make yourself Unlimited when sending bulk emails to Contacts, Directs, sends emails to campaign members, you need to check your own massmailer app associated with the appeal. This will allow you to bypass the bulk email restrictions for sales and at the same time allow you to send simple emails to send out one-time emails.
Check out the following link: Link to MassMailer App on AppExchange
a source to share