What is the difference between Google Workspace Gmail and free Gmail?

The consumer Gmail account at gmail.com is free. Workspace is Google’s paid tier, priced at $7/user/month for Business Starter in 2026, built for organisations that need three things the free tier does not provide: custom-domain mail identity, higher outbound send limits, and administrative controls over the account.

For most WordPress operators, two of those three matter. Custom-domain identity is the load-bearing difference: it determines whose DKIM signs outgoing mail, which domain SPF and DMARC alignment checks against, and therefore whether a message sent through Google’s infrastructure arrives as [email protected] or as a message that authenticates for gmail.com. The send-limit difference is secondary for most sites. Admin controls are irrelevant for a single-site operator and essential for an agency managing accounts at scale.

What "free Gmail" means in 2026

A consumer Gmail account is free to register and free to use. The account includes 15 GB of storage shared across Gmail, Drive, and Photos. Accounts that exceed this cap are blocked from receiving new mail until storage is cleared.

For outbound mail, free Gmail provides access to smtp.gmail.com with a documented rate limit of roughly 500 messages per rolling 24-hour period per sender. Effective throughput in practice can be lower than the stated ceiling; Google applies behavioural throttling on top of the published limit for accounts sending to a high proportion of new or unengaged recipients.

The inbox displays ads in the Promotions and Social tabs. There is no admin console, no domain management, and no 24/7 support channel.

What Workspace adds, in WordPress terms

Custom-domain identity

Workspace lets you publish DNS records (MX, SPF, DKIM) for a domain you control and sign outgoing mail with a DKIM key on that domain. A WordPress site routing through Workspace sends mail as [email protected] with a yourdomain.com DKIM signature. The SPF check, the DKIM check, and the DMARC alignment all land on the right domain.

Free Gmail cannot do this. Mail sent via a free Gmail account through smtp.gmail.com is signed with Google’s own gmail.com DKIM key. The DMARC alignment check runs against gmail.com, not against the WordPress site’s domain. A site that has carefully published SPF and DKIM for example.com and set a DMARC policy, particularly p=reject, is still sending unauthenticated-for-its-domain mail if the SMTP credential is a @gmail.com address. The DMARC policy protects gmail.com; it says nothing about example.com.

This is the single technical difference that matters most for a WordPress operator concerned with deliverability. Everything else is secondary. For setting up SPF, DKIM, and DMARC on your domain, see DNS for WordPress email: SPF, DKIM, DMARC.

Higher send limits

Workspace Business Starter raises the Gmail SMTP ceiling from roughly 500 to 2,000 messages per user per day. For sites needing more than that, Google’s separate SMTP relay service (smtp-relay.gmail.com) provides higher daily limits, with additional per-domain configuration and IP allowlist requirements.

Most WordPress sites do not approach either ceiling. A site that is legitimately sending above 2,000 messages per day is doing transactional mail at a volume where a dedicated transactional provider is already the right infrastructure, not a Workspace account.

Admin controls

Workspace admins can provision and deprovision user accounts, enforce 2-Step Verification organisation-wide, control which OAuth applications are permitted to connect to accounts, set up shared mailboxes and delegation, and, on Business Standard and above, audit mail flow and apply DLP policies. A single-site operator needs none of this. An agency managing client estates, each with their own domain, will need at minimum per-user provisioning and per-domain DKIM management; Standard’s audit logs become relevant once the account count reaches the point where someone needs to track who sent what.

Pricing

Business Starter is $7/user/month (£5.75 in the UK, ex VAT) on annual billing as of mid-2026. Business Standard is $14/user/month and adds Vault, eDiscovery, and 2 TB storage per user. The Workspace Individual plan ($9.99/month) does not support custom-domain mail and is not relevant to this comparison.

The differences that matter for WordPress

Free Gmail Workspace Business Starter
Price $0 $7/user/month (annual)
Mail from custom domain ([email protected]) No Yes
DKIM signing scope gmail.com Your domain
SMTP send limit per day ~500 2,000 (relay tier higher)
Storage 15 GB shared 30 GB Gmail-only
Supported SMTP auth OAuth2, Less Secure App (LSA) access was Google's name for the third-party authentication path that used a plain account password against Gmail's SMTP, IMAP, and POP endpoints. Google shut it down for consumer accounts on 30 May 2022 and for Workspace accounts on 1 May 2025; OAuth, App Passwords, or a different sending provider replace it. Read full reference → OAuth2, App Password
Admin console No Yes

Verify current prices and limits against Google’s plans page before making a purchase decision; Google has adjusted the Business Starter floor twice since 2021.

The authentication change both tiers share

Any tutorial that instructs a WordPress operator to enter a Gmail address and password directly into an SMTP plugin is describing a path that has been removed.

In May 2022, Google ended support for "less secure app" access on consumer Gmail accounts, removing the "Allow less secure apps" toggle. Workspace accounts went through the same deprecation on a longer timeline: new connections using basic authentication were blocked from Summer 2024, and full enforcement (covering all existing connections) took effect on March 14, 2025. Two paths remain:

OAuth2. The SMTP plugin navigates Google’s OAuth consent flow, receives a refresh token, and exchanges it for short-lived access tokens when sending. WP Mail SMTP, FluentSMTP, and Post SMTP all support Gmail OAuth2. On consumer Gmail, the OAuth app must be Google-verified or the sending account must be listed as an explicit test user.

App Passwords. A 16-character password generated by Google for a single application. Requires 2-Step Verification on the Google account. Works on consumer Gmail and on most Workspace configurations; stricter Workspace deployments may disable App Passwords in favour of OAuth2-only authentication.

For the full comparison of when each is appropriate and how to configure each in the major SMTP plugins, see Gmail OAuth2 vs App Passwords for WordPress SMTP.

When free Gmail is the right answer

Free Gmail is the right choice for a personal hobby site with low outbound volume, no DMARC p=reject policy, and no need to send as a custom domain. The deliverability question does not arise if the site is not trying to authenticate as yourdomain.com, and the 500-message daily ceiling is irrelevant for a site sending a handful of contact-form notifications per month.

The authentication requirement is the same as Workspace (OAuth2 or App Password), so setup complexity is similar. The only thing free Gmail cannot do is sign mail as yourdomain.com. If that does not matter for the site, the free tier is the right choice.

When Workspace is the right choice, and when it is the wrong tool

Workspace is correct for an operator who genuinely needs an inbox at a custom domain: the principal business address is [email protected], the same account is used in Google Meet and Calendar, and WordPress sends outbound notifications through the same credential. The inbox and the outbound path live in the same account, the setup is straightforward, and the $7/month cost is justified by the inbox utility.

For sites doing meaningful volumes of transactional mail (WooCommerce order confirmations, account notifications, password reset emails at any real scale) Workspace is the wrong tool. It is an inbox product that happens to expose SMTP; it is not a transactional mail infrastructure. The features that matter for transactional mail (per-message delivery tracking, suppression lists, bounce handling, webhooks, dedicated IP options) are absent. Postmark, SMTP2GO, Resend, and Mailgun are all priced and architected for this use case. The cheapest of these starts well under $15/month and includes the operational tooling Workspace does not.

For most WordPress sites that need both an inbox and a sending pipeline, the right split is Workspace for the inbox and human mail, and a transactional provider for outbound site notifications. The choice between free Gmail and Workspace is, at that point, a choice about the inbox only. For the outbound pipeline, see Transactional email services for WordPress and WordPress email setup: the complete guide.