Google Workspace Admin Console Email Settings Explained

Photo: Unsplash — free to use, no attribution required

Google Workspace Email Architecture

Google Workspace email runs on the same infrastructure as consumer Gmail but adds business features: custom domain email addresses, administrative controls, advanced security, and compliance tools. When you send email from your Google Workspace account, it carries Google's sender reputation — one of the highest in the email ecosystem.

The email architecture involves several layers: DNS records direct incoming mail to Google's servers, authentication records (SPF, DKIM, DMARC) verify that outgoing mail is legitimate, and Google's internal systems handle spam filtering, virus scanning, and policy enforcement.

Configuration typically involves two phases: initial setup (domain verification, MX records, user creation) and optimization (authentication records, security policies, email routing rules). Getting the initial setup right ensures uninterrupted email delivery; optimization improves security and management over time.

Preparation and Requirements

Start by signing up for Google Workspace at workspace.google.com. You will need to verify domain ownership — Google provides several methods including adding a TXT record to your DNS, uploading an HTML file to your website, or adding a meta tag to your homepage. The DNS TXT record method is the most reliable and commonly used.

Before changing MX records, lower your domain's MX record TTL (Time to Live) to 300 seconds (5 minutes) at least 24 hours in advance. This ensures that when you switch MX records to Google, the change propagates quickly across the internet, minimizing the window where email delivery is uncertain.

Create your user accounts in the Google Workspace Admin Console before switching MX records. This way, when incoming mail starts routing to Google, the mailboxes are already in place to receive it. Add all team members who need email access, set temporary passwords, and prepare welcome communications with login instructions.

Detailed Implementation Steps

Sign into the Google Workspace Admin Console at admin.google.com. Navigate to Account → Domains → Manage Domains and begin the domain verification process. Add a TXT record with the provided verification string to your domain's DNS. Once Google confirms the record, your domain is verified.

Update your domain's MX records to route email to Google. Remove any existing MX records and add the following Google MX records: ASPMX.L.GOOGLE.COM (priority 1), ALT1.ASPMX.L.GOOGLE.COM (priority 5), ALT2.ASPMX.L.GOOGLE.COM (priority 5), ALT3.ASPMX.L.GOOGLE.COM (priority 10), ALT4.ASPMX.L.GOOGLE.COM (priority 10). These records ensure redundancy — if one server is unavailable, email is routed to alternates.

Configure SPF by adding this TXT record to your DNS: v=spf1 include:_spf.google.com ~all. This authorizes Google's mail servers to send email on behalf of your domain. For DKIM, go to Admin Console → Apps → Google Workspace → Gmail → Authenticate email, generate a DKIM key, and add the provided TXT record to your DNS.

For SMTP relay setup (used by applications, printers, and WordPress): go to Admin Console → Apps → Google Workspace → Gmail → Routing → SMTP relay service. Configure the allowed senders (by IP address or authenticated users), the permitted recipients, and the encryption requirements. The SMTP relay address is smtp-relay.gmail.com on port 587 with TLS.

Testing Your Setup

Systematic testing prevents surprises after deployment. Create a checklist: test basic sending, test to multiple email providers, verify authentication headers, check spam folder placement, test all automated email types (forms, notifications, transactional), and confirm that reply-to addresses work correctly.

Use a tool like MXToolbox to verify your DNS records are configured correctly. Enter your domain and check SPF, DKIM, and MX records. The tool highlights any errors or misconfigurations that could affect email delivery. Fix any issues it identifies before relying on your email configuration for production traffic.

Monitor email delivery for the first week after configuration. Most SMTP services provide delivery logs and bounce reports. Review these daily during the initial period to catch any delivery issues early. Common problems that surface during this monitoring period include SPF alignment failures, DKIM signature mismatches, and recipient server rejections.

Maintenance and Optimization

For ongoing maintenance, review Google Workspace security alerts and recommendations in the Admin Console. Google provides proactive alerts about DNS configuration issues, authentication failures, and potential account compromises. Acting on these alerts promptly prevents email delivery disruptions.

Monitor your domain's sender reputation using Google Postmaster Tools (postmaster.google.com). This free dashboard shows your domain's spam rate, IP reputation, authentication success rates, and encryption usage. Keep your spam rate below 0.1% — anything above 0.3% significantly impacts inbox placement across all Gmail recipients.

When troubleshooting SMTP relay issues, verify the sending IP address is included in the allowed senders list in the Admin Console. Google Workspace SMTP relay restricts access by IP address or authenticated user — if your server's IP changes (common with cloud hosting), update the relay configuration immediately to prevent sending failures.

Frequently Asked Questions

What are the SMTP settings for Google Workspace?

For authenticated sending: Server: smtp.gmail.com, Port: 587, Encryption: STARTTLS, Username: your full Google Workspace email address. For SMTP relay (applications and devices): Server: smtp-relay.gmail.com, Port: 587, Encryption: TLS. The relay service must be configured in the Admin Console under Apps → Google Workspace → Gmail → Routing before it will accept connections.

Why are my Google Workspace emails going to spam?

Check three things: your SPF record includes _spf.google.com, DKIM is enabled and the DNS record is correctly published, and your DMARC record is properly configured. Use Google's CheckMX tool or MXToolbox to verify all three. If authentication passes but emails still reach spam, review your email content for spam trigger patterns and check your domain reputation in Google Postmaster Tools.

How much does Google Workspace email cost in India?

Google Workspace Business Starter begins at an entry-level monthly price per user (billed annually) and includes custom domain email, 30GB storage per user, Google Meet, and basic administrative controls. Business Standard and Business Plus tiers add more storage and advanced features. Google frequently offers promotional pricing for new Indian business customers.

Can I use Google Workspace SMTP with WordPress?

Yes. You can configure WordPress to send through Google Workspace using either the Gmail SMTP server (smtp.gmail.com on port 587 with your Workspace credentials) or the Google Workspace API method available in plugins like WP Mail SMTP. The API method is more reliable as it uses OAuth 2.0 authentication and avoids potential port blocking on shared hosting.