Email Forwarding vs Full Email Hosting
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="https://tldfyi.com/iframe/guide/email-forwarding-vs-hosting/" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://tldfyi.com/guide/email-forwarding-vs-hosting/
Add a dynamic SVG badge to your README or docs.
[](https://tldfyi.com/guide/email-forwarding-vs-hosting/)
Use the native HTML custom element.
Índice
- Two Ways to Use Your Domain for Email
- How Email Forwarding Works
- Services That Offer Email Forwarding
- Setting Up Forwarding
- How Full Email Hosting Works
- The Core Difference: Sending from Your Custom Address
- Workaround: Gmail "Send As"
- DKIM and Authentication: A Critical Difference
- When Forwarding Is Enough
- When Full Email Hosting Is Worth It
- Cost Comparison
- The Hybrid Approach
- Making the Decision
- Next Steps
## Two Ways to Use Your Domain for Email
When you own a domain, you have two fundamentally different approaches for handling email:
**Encaminhamento de Email**: Incoming email to `[email protected]` is automatically redirected to an existing inbox (like your personal Gmail). You receive email at your custom address but don't have a separate mailbox for it.
**Hospedagem de Email**: A dedicated mail server creates and maintains actual mailboxes for `@yourdomain.com` addresses. Email is stored on that server's infrastructure; you log into a webmail interface or connect an email client via IMAP.
Both approaches require MX records in your DNS (Sistema de Nomes de Domínio). The difference is what those MX records point to and what happens to messages after they arrive.
## How Email Forwarding Works
With Encaminhamento de Email, your MX records point to a forwarding service's servers. When email arrives for `[email protected]`, the forwarding server immediately re-sends it to your underlying inbox (say, `[email protected]`) and does not store a copy.
From the sender's perspective, they sent email to your custom address. From your perspective, the message appears in your regular inbox alongside other email.
### Services That Offer Email Forwarding
- **Cloudflare Email Routing** — Free, unlimited aliases, requires Cloudflare DNS
- **ImprovMX** — Free tier (25 aliases), paid for SMTP relay
- **ForwardEmail** — Open source, privacy-focused, free for basic use
- **Your Registrador de Domínios** — Many registrars (Namecheap, Porkbun) include free email forwarding
### Setting Up Forwarding
Add the forwarding service's MX records to your domain's DNS (Sistema de Nomes de Domínio), then configure rules in their dashboard mapping your custom addresses to destination inboxes.
Example with Cloudflare Email Routing:
```
MX @ 19 amir.mx.cloudflare.net
MX @ 46 linda.mx.cloudflare.net
MX @ 97 merlin.mx.cloudflare.net
```
Then in Cloudflare dashboard: `[email protected] → [email protected]`
## How Full Email Hosting Works
With Hospedagem de Email, your MX records point to a dedicated mail server infrastructure (Google, Microsoft, Zoho, etc.). That server creates actual mailboxes — storage locations where incoming messages accumulate until you read them.
You access your email via:
- A webmail interface (Gmail.com, Outlook.com, Zoho webmail)
- IMAP connection from any email client (Thunderbird, Apple Mail, Outlook)
- Mobile apps (Gmail app, Outlook app, native iOS/Android mail)
## The Core Difference: Sending from Your Custom Address
This is where the two approaches diverge most significantly.
**Encaminhamento de Email only**: You *receive* email at your custom domain. When you reply or compose, the From address is your underlying Gmail or Outlook address — not your custom domain. Recipients see `[email protected]` as the sender.
**Hospedagem de Email**: You both *send and receive* using your custom domain address. Every outbound message shows `[email protected]` as the sender.
### Workaround: Gmail "Send As"
Gmail allows you to configure an external address in **Settings → Accounts and Import → Send mail as**. After verification, you can select your custom address when composing. Replies arrive at your custom address (forwarded to Gmail).
This partially bridges the gap, but there are limitations:
- Gmail's SMTP server sends the message; headers may show "via gmail.com"
- You need to manually select the custom address for each outgoing message
- Not available for all email clients
## DKIM and Authentication: A Critical Difference
DKIM (DomainKeys Identified Mail) is a cryptographic signature added to outgoing email. It's one of the most important factors in email-deliverability-domain-reputation.
**With Hospedagem de Email**: Your provider (Google, Microsoft, Zoho) signs every outgoing message with your domain's DKIM key. Receiving servers verify the signature — establishing that the message genuinely came from your domain's infrastructure.
**With Encaminhamento de Email**: Forwarded messages create an authentication complexity problem. When the forwarding service re-sends a message, it modifies the email (at minimum, the envelope sender changes). This can break the original DKIM signature. The forwarding service can add its own DKIM signature, but this signs as the forwarder's domain, not yours.
This means:
- Emails forwarded through services may fail DKIM verification
- DMARC enforcement can cause forwarded messages to be rejected
- Your custom domain's sender reputation is harder to establish
For organizations with strict DMARC enforcement on `p=reject`, forwarding becomes unreliable without additional configuration (like ARC — Authenticated Received Chain — which some forwarding services now support).
## When Forwarding Is Enough
Email forwarding is the right choice when:
**You're an individual or solo operator**: One person needing a professional-looking address for a portfolio site, consulting gig, or personal brand. You don't need separate email infrastructure — just something that looks like `[email protected]` instead of a generic Gmail address.
**Low email volume**: If you receive fewer than a dozen emails per week at your custom address, forwarding works fine. The deliverability nuances of DKIM and DMARC matter less at low volume.
**Temporary or project-based domains**: Side projects, client work, or temporary initiatives where setting up full Hospedagem de Email would be overkill for the expected lifespan.
**Budget constraints**: When you're spending zero on email while testing a business concept, Cloudflare Email Routing or your Registrador de Domínios's built-in forwarding is cost-effective.
**Multiple domains pointing to one inbox**: If you own `yourbrand.com`, `yourbrand.net`, and `yourbrand.co` and want all of them to funnel into a single inbox, forwarding from the secondary domains is simpler than setting up full hosting on each.
## When Full Email Hosting Is Worth It
Upgrade to Hospedagem de Email when:
**You need to send from your custom domain**: For any serious business communication, being unable to send from `@yourdomain.com` undermines the credibility gain of having a custom domain.
**Multiple team members need email**: Forwarding works for one person; for a team of five, each needing their own `@company.com` address, full hosting is cleaner. Zoho Mail's free tier covers up to 5 users.
**Email volume is significant**: High inbound volume (hundreds of messages per day) benefits from hosted infrastructure with better spam filtering and organization tools.
**DKIM signing is critical**: If you're sending sales emails, transactional notifications, or newsletters, proper DKIM signing from your domain is essential for deliverability.
**Compliance requirements**: HIPAA, GDPR, and other frameworks often require email retention, audit logs, and data residency — features only available in full hosting.
**You use a CRM or sales tool**: Tools that send email on your behalf (HubSpot, Salesforce, Mailchimp) work better with full Hospedagem de Email and proper Registro SPF and DKIM configuration.
## Cost Comparison
| Approach | Monthly Cost | Sending From Custom Domain | DKIM Support |
|---|---|---|---|
| Cloudflare Email Routing | Free | No (workaround available) | Limited |
| ImprovMX Free | Free | No | Limited |
| Registrar forwarding | Free (included) | No | No |
| Zoho Mail (free) | Free | Yes | Yes |
| Google Workspace | $6/user | Yes | Yes |
| Microsoft 365 | $6/user | Yes | Yes |
## The Hybrid Approach
Many professionals use a hybrid: full Hospedagem de Email for their primary professional address (`[email protected]`) while using forwarding for secondary domains or catch-all addresses.
Example:
- Primary: Google Workspace for `@yourbusiness.com` — full IMAP, DKIM, professional sending
- Secondary: Cloudflare Email Routing for `@yourpersonalproject.com` → forwards to your Google Workspace inbox
- Catch-all: ImprovMX catch-all on `@youroldomain.com` to catch any legacy email
This approach maximizes functionality for the addresses that matter while minimizing cost for peripheral domains.
## Making the Decision
Ask yourself three questions:
1. **Do I need to send email from this custom domain?** If yes, you need full Hospedagem de Email.
2. **Do I need proper DKIM signing for deliverability?** If yes, you need full Hospedagem de Email.
3. **Do multiple people need separate inboxes?** If yes, you need full Hospedagem de Email.
If you answered no to all three, forwarding is sufficient. Start there, then upgrade to hosted email when your needs evolve.
## Next Steps
- **Custom Email with Your Domain: Complete Setup Guide** — Full setup guide covering both approaches
- **Free Email Hosting Options for Custom Domains** — Best free options for full hosting
- **Catch-All Email Addresses: Pros and Cons** — Forwarding for everything at your domain
- **SPF, DKIM, DMARC: Email Authentication Trilogy** — Authentication is important for both approaches
Mais em Email & Hosting Setup
Custom Email with Your Domain: Complete Setup Guide
8 min de leituraGoogle Workspace Email: Domain Configuration
7 min de leituraMicrosoft 365 Email: Domain Setup Guide
7 min de leituraMX Records Deep Dive: Email Routing Explained
6 min de leituraFree Email Hosting Options for Custom Domains
6 min de leituraSPF, DKIM, DMARC: Email Authentication Trilogy
8 min de leituraConnecting Your Domain to Web Hosting
7 min de leituraDomain and Hosting: Buy Together or Separately?
6 min de leituraSetting Up Email for Multiple Domains
6 min de leituraEmail Deliverability: How Domain Reputation Matters
7 min de leituraMigrating Email to a New Domain
6 min de leituraCatch-All Email Addresses: Pros and Cons
5 min de leituraDomain-Based Email Security Best Practices
7 min de leituraTroubleshooting Email Delivery Issues
8 min de leituraGuias Relacionados
Email & Hosting Setup