function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
sailersailer 

Email Bacth limit in scheduler apex job

I have created the scheduler jobs and sending the mail.
what will be limit if the mails that i can send out to external Ids.


Thanks for the Help.
sfdcfoxsfdcfox
The email limits are shared with the global daily limit for emails, which you can reserve with the Messaging.reserveSingleEmailCapacity and Messaging.reserveMassEmailCapacity (as appropriate). Normally, this limit is 250, 500, or 1000 per day, depending on the type of organization you have (Professional, Enterprise, or Unlimited). The methods mentioned here will throw an exception if you exceed your daily limit, so you can gracefully detect the error.