See Gmail's current daily message and recipient limits, understand rolling 24-hour enforcement, and choose the right sending route for personal, Workspace, SMTP, and API mail.
A personal Gmail account can generally send to no more than 500 recipients in one message or send more than 500 emails in a day. A paid Google Workspace account has a higher daily message limit—currently 2,000—but its recipient limits depend on whether mail is sent from Gmail on the web, an SMTP client, or the Gmail API. These are abuse-prevention ceilings, not recommended campaign volumes or delivery guarantees.
Gmail sending limits at a glance
PERSONAL GMAIL
Recipients in one message 500
Emails in a day 500
PAID GOOGLE WORKSPACE
Messages per day 2,000
Mail-merge messages per day 1,500
Total recipients per day 10,000
External recipients per day 3,000
Unique recipients per day 3,000 total / 2,000 external
RECIPIENTS PER MESSAGE, WORKSPACE
Gmail web interface 2,000 total / 500 external
SMTP client via POP or IMAP 100
Gmail API 500
Trial-account limits and some product-specific limits are lower.Google's Workspace table also lists a 500-message daily limit for trial accounts and lower external-recipient limits for trials. A paid-account limit can increase only after the account has cumulatively paid at least USD 100 and at least 60 days have passed since that payment threshold. Do not assume a newly converted tenant immediately receives every paid limit.
What counts toward a Gmail limit?
- Every address in To, Cc, and Bcc counts as a recipient. One message addressed to 40 people consumes one message and 40 recipient units.
- Messages sent from an alias or by a delegated user count toward the originating account's applicable limits.
- Automatic replies and vacation responders can count toward an account's daily totals.
- External recipients are addresses outside your Google Workspace domains; Google applies separate daily and per-message ceilings to them.
- A unique recipient is counted once during the rolling period even if the same account sends that person multiple messages.
- Messages sent through Gmail's web interface, a connected mail client, and programmatic routes can contribute to the same account-level enforcement.
A Google Group is not necessarily one recipient for quota purposes. Google documents group and account-specific rules separately, and expansion can affect how limits are applied. Apps Script, SMTP relay, Google Groups, and Gmail mail merge also have their own limits. Use the documentation for the actual route rather than transferring the web-interface number to every Google product.
Why SMTP and API limits differ
The 2,000-message Workspace ceiling is an account-level daily limit. It does not mean an SMTP client may place 2,000 addresses in one message. Google currently documents 100 recipients per message when sending through Gmail from POP or IMAP users and 500 recipients per message through the Gmail API. Gmail on the web allows up to 2,000 total recipients in a message, with no more than 500 external recipients.
messages_today += outbound_messages
total_recipients += to + cc + bcc
external_recipients += recipients_outside_workspace_domains
unique_recipients = distinct_addresses_in_rolling_window
Reject or queue before Google's limit—not after a partial batch.What happens when you hit a Gmail sending limit
Google can temporarily prevent the account from sending. Personal Gmail's help page says sending usually becomes available again within 1 to 24 hours. Workspace documentation says a user who exceeds a limit can be unable to send new mail for up to 24 hours. The account can generally continue receiving email and accessing Google services during the restriction.
- Stop automated retries. Repeating the same rejected batch wastes quota and can create duplicate mail when access returns.
- Record the exact Google error, route, account, message count, recipient count, and UTC timestamps.
- Pause every sender using that identity, including CRM integrations, scripts, aliases, mobile clients, and scheduled mail merge.
- Remove invalid addresses and investigate unusual volume or a compromised account. Google may also restrict sending after many messages bounce.
- Resume with a small controlled send after the rolling window clears; do not release an obsolete backlog all at once.
Sending quota vs Gmail bulk-sender requirements
These are different policies. Gmail's bulk-sender classification applies when a primary domain sends about 5,000 or more messages to personal Gmail accounts in a day. That threshold concerns sender requirements such as authentication, alignment, complaint rates, and one-click unsubscribe for applicable marketing mail. It does not grant one Gmail account permission to send 5,000 messages, and staying under it does not exempt mail from Gmail's general sender guidelines.
Should an application send through a Gmail account?
Gmail is suitable for human correspondence and modest workflows. It is a poor production transport for password resets, receipts, alerts, newsletters, or customer-generated mail. Application email needs predictable throughput, idempotency, bounded retries, bounce and complaint events, suppression, domain authentication, and separation between transactional and promotional streams.
Use GmailA person sends ordinary one-to-one or small-group messages within the published limits.
Use cautiouslyCount every recipient, secure the account, and accept that limits can change or temporarily block the workflow.
Use an email APISend with a verified domain and preserve delivery, bounce, complaint, and retry events.
Use a compliant campaign platformManage consent, unsubscribe, suppression, segmentation, and Gmail bulk-sender requirements.
Frequently asked questions
Can I send 1,000 emails at once from Gmail?
Not safely from a personal Gmail account. The published personal ceiling is 500 recipients in a single email and 500 emails per day. Paid Workspace has higher account limits, but the per-message limit varies by route and external recipients have separate ceilings. A campaign platform is the better fit for a legitimate 1,000-recipient send.
Does Bcc bypass the Gmail sending limit?
No. Bcc hides recipient addresses from one another, but Bcc addresses still count as recipients. It is not a quota workaround and does not provide campaign unsubscribe, consent, complaint, or suppression controls.
When does the Gmail daily limit reset?
Google describes Workspace enforcement as a rolling 24-hour period rather than a universal midnight reset. After exceeding a limit, sending can remain unavailable for up to 24 hours. Track timestamps instead of scheduling a large retry for midnight.
Does the Gmail API increase the daily limit?
No. The API has its own per-message recipient limit, but it does not erase the account's applicable daily message and recipient ceilings. API usage quotas and Gmail sending limits are also separate controls.