DEV Community

Cover image for How to Send Emails Using Gmail SMTP with Cloudflare Email Routing?
Pierre-Henry Soria ✨
Pierre-Henry Soria ✨

Posted on • Updated on

How to Send Emails Using Gmail SMTP with Cloudflare Email Routing?

In this dev post, I will describe here the steps you can use for sending emails through Gmail SMTP with Cloudflare Email Routing. There can be various reason where you want Cloudflare to forward emails directly to your Gmail account, and you, being able to reply directly with your new alias email. For cost-efficiency for instance (no SMTP mail server required, and/or easier to setup and manage than our own one, etc).

In my case for instance, I have Cloudflare with my DNS pointing to Webflow and AWS for the SaaS products and APIs. I don’t want to worry about my email addresses. I just prefer to forward them to Gmail directly.
You will see, it’s actually very easy and handy thanks to the free Cloudflare Routing option (that it has now been available for over two years, part of the free Cloudflare tier!)

1: Create Google App Password

To ensure the configuration we will do with the alias email works, we need to create a Google App Password first, as otherwise we will be blocked by the two-factor authentication (2FA) when we authenticate to Gmail SMTP (if 2-Factor Authentication is enabled which is highly recommended anyway).​​​​​​​​​​​​​​​​

For creating an App Password for Gmail, you need to go to Create an App Password in your Google account. Direct link is: https://security.google.com/settings/security/apppasswords

Generate it and keep the unique password safe.

2: Add Cloudflare Email to Gmail Alias

In Gmail, go to Manage Labels (AKA Settings) → Accounts and ImportAdd another email address.

There, type your desire name and your Cloudflare-routed email address.

Check the "Treat as an alias" box, and click next.

Image description

3: SMTP Details

Mention the following configuration:

  • SMTP Server: smtp.gmail.com

  • Port: 587 (it's the recommended TLS port over 465, as now outdated).

  • Username: Your Gmail username (the first part before the @. If your email is pierre@gmail.com, it will be pierre

  • Password: The generated password you copied from Google App Password.

  • Encryption: Select TLS

Once saved, you will receive a confirmation email from Gmail. Click on link to confirm the added email.

4: SPF Record & DMARC Policy

Still in your Cloudflare account -> DNS, add the following:

SPF Record

  • Type: TXT
  • Name: @
  • TTL: auto
  • Content:
v=spf1 include:_spf.mx.cloudflare.net include:_spf.google.com ~all
Enter fullscreen mode Exit fullscreen mode

DMARC Policy

To help both email recipient and sender from threats such as email spoofing, phishing, and spam, you should also add a DMARC Policy to monitor emails. Ensure the p parameter is set to none.

In Cloudflare DNS, create a new TXT record:

### DMARC Record

  • Type: TXT
  • Name: _dmarc
  • TTL: auto
  • Content: v=DMARC1; p=none; rua=mailto:YOU@YOUR-DOMAIN.COM

DMARC with Multiple Email Addresses

To handle multiple emails, you need to add them separated by a comma, one after each other.

v=DMARC1; p=none; rua=mailto:user1@domain.com, user2@domain.com
Enter fullscreen mode Exit fullscreen mode

——-

Enjoy 🥳

You’re now all set! You can send emails using Gmail SMTP with your Cloudflare-routed email address. When replying to emails, your Cloudflare email address should automatically appear in the From: field.

I hope it will help 🤠

Top comments (4)

Collapse
 
miqla profile image
Miquel MM • Edited

Pierre, many thanks to share it so this is what I needed.

Just one question, do you know how to skip spam to be marked in these emails sent by this way?

Everything is working, but all emails are going to spam, any suggestion? Or is it normal because the email account has been configured recently on both sides, Cloudflare and Gmail?

Thanks in advance.

Collapse
 
groom profile image
Gorm Kjeldsen

Hi Miquel

Did you figure this out? I'm looking into doing this, and it would suck to have all my outgoing mail marked as spam. :(

Collapse
 
miqla profile image
Miquel MM

Hi Gorm,

Yes, I figured it out. The first thing to keep in mind is that it requires some patience to avoid having your emails marked as spam. It usually takes a few days, around a week, after everything is properly configured—especially the DNS records on Cloudflare.

Since the email account is new, Google needs some time to evaluate the configuration before deciding whether your emails should be marked as spam or not.

I recommend double-checking all your settings, particularly ensuring that your SPF record includes Google (I realized I had multiple SPF records, but I missed including _spf.google.com).

Additionally, I tried manually marking emails as "Not Spam" in other email accounts where I received test messages that were initially marked as spam. This helped Google learn that the emails were legitimate, and after a few days, it definitely worked.

Hope this helps!

Thread Thread
 
groom profile image
Gorm Kjeldsen

Thank you so much for your reply. This gives me more confidence in this solution, and I'll probably go with this then. Great info! :)