Set Up Email: Complete Guide
From creating your first mailbox to connecting it on every device and making sure your emails don’t land in spam - everything in one walkthrough.
Setting up professional email on GoZen Host takes about 15 minutes. This guide walks you through every step - from creating your first mailbox to configuring DNS so your messages actually reach inboxes.
By the end, you’ll have you@yourdomain.com working on your phone, laptop, and webmail, with full email authentication configured.
This is the “start here” guide. Each section links to a detailed article for deeper reference. You can follow this page straight through or jump to the section you need.
What You Need Before You Start
- A domain name (registered at GoZen or elsewhere)
- A GoZen Host hosting plan (shared, WordPress, or VPS/Cloud)
- Your domain pointed to GoZen nameservers - see Pointing Your Domain to Your Server if you haven’t done this yet
If you’re on a VPS with the Enhance control panel, this guide covers you too - each step shows both cPanel and Enhance instructions.
Step 1: Create Your Mailbox
You need at least one email account on the server before anything else works.
Which Addresses Should You Create?
| Address | Purpose |
|---|---|
info@ or hello@ | General inquiries - your primary public email |
admin@ | Administrative tasks, domain verifications |
yourname@ | Your personal business email |
support@ | Customer support (if applicable) |
Start with one or two. You can always add more later.
📖 Detailed guide: Setting Up Email Accounts in cPanel | Enhance Email Management
Step 2: Access Your Mailbox (Webmail)
Before setting up a client, verify your mailbox works via webmail:
cPanel hosting:
- Go to
https://yourdomain.com/webmail- or - - In cPanel → Email → Email Accounts → click Check Email
Enhance hosting:
- Go to
https://webmail.yourdomain.com
Log in with your full email address and the password you just set. Send yourself a test email to confirm it works.
Step 3: Connect to Outlook, Gmail, and Mobile
Now add your email to the apps you use daily. Here are the server settings you’ll need:
| Setting | Value |
|---|---|
| Incoming server (IMAP) | mail.yourdomain.com |
| IMAP Port | 993 |
| IMAP Security | SSL/TLS |
| Outgoing server (SMTP) | mail.yourdomain.com |
| SMTP Port | 465 |
| SMTP Security | SSL/TLS |
| Username | Your full email address (e.g., you@yourdomain.com) |
| Password | The password you set in Step 1 |
Always use IMAP (not POP3). IMAP syncs across all your devices. POP3 downloads messages and can remove them from the server.
Quick Setup by Client
| Client | Guide |
|---|---|
| Outlook (Windows, Mac, Mobile) | Set Up GoZen Email in Outlook |
| Gmail (Read and send from Gmail) | Set Up GoZen Email in Gmail |
| iPhone / iPad | Settings → Mail → Add Account → Other → enter IMAP settings above |
| Android | Gmail app → Add Account → Other → enter IMAP settings above |
| Apple Mail / Thunderbird | Add Account → select IMAP → enter settings from the table above |
Step 4: Configure DNS for Reliable Delivery
This is the most important step. Without proper DNS records, your emails will land in spam.
You need three authentication records: SPF, DKIM, and DMARC. Together, they prove to Gmail, Outlook, Yahoo, and every other provider that your emails are legitimate.
Where Do I Add These Records?
- Domain registered at GoZen + shared hosting: cPanel → Email → Email Deliverability handles SPF and DKIM automatically. Just click Repair if there are warnings.
- Domain at another registrar: Add these records in your registrar’s DNS management panel.
- Enhance (VPS): Add records via the Enhance DNS zone editor or your registrar.
4.1 - MX Records (Mail Routing)
MX records tell the internet where to deliver email for your domain. If your domain is on GoZen nameservers, these are usually set automatically. Verify:
Type: MX
Host: @
Value: mail.yourdomain.com
Priority: 0
TTL: 3600
4.2 - SPF Record (Sender Authorization)
Tells receiving servers which servers are allowed to send email for your domain:
Type: TXT
Host: @
Value: v=spf1 include:_spf.gozenhost.com ~all
If you also use Google Workspace, Mailchimp, or other services, combine them:
v=spf1 include:_spf.gozenhost.com include:_spf.google.com ~all
Important: You can only have one SPF record per domain. Multiple SPF records will break.
4.3 - DKIM Record (Message Signing)
Adds a digital signature to every email, proving it hasn’t been tampered with:
cPanel: Go to Email → Email Deliverability → click Manage next to your domain → click Install the suggested record if DKIM isn’t active.
Enhance: DKIM is usually configured automatically. Check via your domain’s DNS zone.
4.4 - DMARC Record (Policy)
Tells receiving servers what to do with emails that fail SPF or DKIM:
Type: TXT
Host: _dmarc
Value: v=DMARC1; p=none; rua=mailto:admin@yourdomain.com
Start with p=none (monitoring only), then move to p=quarantine after 2–4 weeks, then p=reject once you’re confident.
📖 Detailed guide: Email Authentication: SPF, DKIM & DMARC
Step 5: Verify Everything Works
Send a Test
- From your new email address, send a test email to a Gmail and an Outlook address
- Check that the email arrives in the inbox (not spam)
- Reply to confirm sending works in both directions
Run a Deliverability Test
- mail-tester.com - send a test email and get a score out of 10. Aim for 9+
- GoZen DNS Inspector - validates SPF, DKIM, DMARC, and MX records in one scan
- GoZen Blacklist Check - check if your server IP is on any blacklists
Check Email Headers
In Gmail, open a received test email → ⋮ Menu → Show original. Look for:
SPF: PASS
DKIM: PASS
DMARC: PASS
All three should say PASS. If any shows FAIL, revisit Step 4.
Troubleshooting
| Problem | Quick Fix |
|---|---|
| “Authentication failed” when adding to Outlook/Gmail | Username must be the full email address (not just the name). Double-check password |
| Can receive but can’t send | Verify SMTP port 465 with SSL. Make sure your ISP doesn’t block outgoing SMTP |
| Emails go to spam | Run mail-tester.com. Missing SPF/DKIM/DMARC is the #1 cause |
| Some people still email the old mailbox | DNS propagation can take up to 48 hours. Keep the old mailbox active during transition |
| “Certificate mismatch” warning | Use mail.yourdomain.com as the server, not the raw server hostname |
| Emails not arriving at all | Check MX records. Use GoZen DNS Inspector to verify |
📖 Full troubleshooting: Email Delivery Problems
Summary
Here’s what you’ve done:
- Created your mailbox (cPanel or Enhance)
- Verified it works via webmail
- Connected to Outlook, Gmail, or mobile
- Set up MX, SPF, DKIM, and DMARC records
- Tested deliverability (aim for 9/10 on mail-tester.com)
Your professional email is ready to use.
Related Articles
- Setting Up a Professional Email Address - why a branded email matters and how to plan your addresses
- Setting Up Email Accounts in cPanel - deep-dive on account management, quotas, and forwarders
- Enhance Email Management - email setup on VPS with Enhance
- Set Up GoZen Email in Gmail - step-by-step Gmail integration
- Set Up GoZen Email in Outlook - step-by-step Outlook integration
- Email Authentication: SPF, DKIM & DMARC - detailed DNS authentication guide
- Zero-Downtime Email Migration - move from another host without losing mail
- Email Delivery Problems - fix spam, bounces, and missing email
Last updated 16 Apr 2026, 00:00 +0200.