<img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=1822615684631785&amp;ev=PageView&amp;noscript=1"/>

I have a problem.

I coded a bunch of landing pages as ASP.NET MVC Views as part of the GMass website, and now I want to convert those landing pages to WordPress so that they can be more easily managed, and so I can easily create more of them.

The landing pages are at URLs like:

https://www.gmass.co/gmail-mail-merge

https://www.gmass.co/email-outreach

but I also have MVC pages at the same root level like https://www.gmass.co/pricing that I do NOT want to convert to WordPress that should remain functional as .NET pages.

So I want to convert the existing MVC landing pages to WordPress and keep the URLs the same for SEO purposes.

Here is how I accomplished that.

Step 1: Copy WordPress files to root folder of IIS site

The root folder of my IIS website looks as you would expect:

The root GMass folder on my IIS web server

I installed WordPress at the same root level, which crowds the files and folders, but otherwise doesn’t do any harm. I’m assuming that PHP is already installed on your IIS server. If not, here’s how to install PHP on IIS.

The root GMass folder on my IIS web server, after I install WordPress

Note that I also have WordPress installed in the /blog folder, and the GMass blog is driven entirely by WordPress, but in the /blog folder, everything is served by WordPress, so there aren’t the complexities of the setup here, which involves serving some pages with .NET and some pages with WordPress.

So, I have two installations of WordPress connected to two different MySQL databasesone in the root GMass folder and one in the gmass.co/blog folder.

There is a way to have one installation drive TWO WordPress sites, but I didn’t want to bother with that.

Step 2: Create a new MySQL database just for the landing pages

Create the new database to store the landing pages in MySQL using MySQL Workbench.

Open up wp_config.php, and replace the sample information with the actual database credentials. I will call my new MySQL database “GMassLandingPages“. Of course, you could use an existing MySQL database, like the one for your WordPress blog that already has the WordPress table definitions, but I like to keep things clean and organized, so I’m creating a separate database just for my landing pages.

My wp-config.php file, which uses my new “GMassLandingPages” database.

Next, I have to go to https://www.gmass.co/wp-admin to complete the setup of my new WordPress installation. The setup will have me create my WordPress Administrator login, and it will set up the GMassLandingPages database that I just created. Meaning, it will create the necessary tables and other MySQL metadata needed for the database to function as my WordPress database.

Step 3: Create a WordPress page

Now, we’re ready to create a test page in WordPress that should be accessible at the URL https://www.gmass.co/landing-gmail-mail-merge

I copy the contents of my MVC landing page into my WordPress page.

Note that this URL is different from the original URL because I want to get it working first — then I’ll change it to the actual URL, without the word “landing” in it.

I set it up in WordPress, and navigate to the URL https://www.gmass.co/landing-gmail-mail-merge.

Navigating to the URL of the WordPress page doesn’t work, as I would expect

Nope, doesn’t work, but that’s what I would expect. How does IIS know whether PHP or .NET should serve this URL?

The MVC Router is looking for a matching controller to route the request to but doesn’t find one. I need to get PHP to process this request, not MVC.

I’ll do that by adding an IIS URL Rewrite Rule. If you don’t have the IIS Rewrite module installed yet, that’s your first step. I won’t explain how to do it here, but it’s pretty easy if you Google it. Hint: Use the Web Platform Installer.

Once the module is installed, there are two ways to manage your IIS URL Rewrite Rules: do it through the interface in IIS, or just edit the web.config file manually.

I prefer editing the web.config file manually because it’s faster for me.

Here’s what I need to add to web.config so that the https://www.gmass.co/landing-gmail-mail-merge page works:

Setting a URL Rewrite rule in web.config is necessary for the WordPress pages to be served.

In English, this URL Rewrite rule says that if the URL contains the string “landing”, route the request to index.php instead of MVC. The “rewrite” to index.php is at the core of how WordPress works on IIS. Meaning, if you have your entire blog running on WordPress on IIS in a separate /blog folder, you’ll see a similar entry in the web.config under the /blog folder.

Now, the setup works, but my landing pages look ugly. It doesn’t match the red background and text styles of my existing MVC page. This is where I hand-off the project to a WordPress expert who can appropriately style my landing pages to match the look of the .NET versions of the landing pages. A WordPress expert created a custom theme for my landing pages that matches the look and feel of the existing MVC landing pages.

Great, now my test landing page is working. I can also create as many “Pages” as I want in WordPress, and as long as they contain the word “landing” in the URL, they will work.

Now the WordPress landing page is working.

But remember, I want to migrate my landing pages to WordPress and keep the URLs the same, so I don’t lose any SEO juice.

I could make things easier on myself if I decided that changing the URLs is acceptible that all my WordPress pages will have URLs containing the word “landing”. Then I can use the one rule I added to web.config. But for now, I don’t want to do that.

First, I’m going to edit the URL in WordPress and remove the “landing” portion of the URL.

I’m removing the “landing-” portion from the Permalink in WordPress.

Now all I have to do is add an entry in web.config for this specific page, so that it’s served by WordPress and not .NET. I’m going to remove the first rule I put in that was based on the string “landing” and replace it with this rule, that will handle this one specific landing page.

Since I want to keep the URLs of the landing pages the same in the move from MVC to WordPress, I will create a separate rule for each landing page.

And voila! The final page, using the same URL, is now being served by WordPress and not ASP.NET.

And that’s it! This page is now being served from WordPress instead of .NET MVC.

If my landing page URLs don’t follow any specific pattern or have a string in common, then I’ll have to create a Rewrite rule for each landing page, but that’s a simple task, and the benefit of manaing my landing pages in WordPress far outweighs the inconvenience of having to add Rewrite rules to my web.config file.

Step 4: Celebrate!

Check it out! So now, my WordPress pages work and are served by WordPress:

www.gmass.co/gmail-mail-merge

and my MVC pages like my Pricing page are still served with MVC:

www.gmass.co/pricing

and both are in the same root level folder of my IIS installation.

Bonus: how do you know whether MVC or WordPress is serving a particular page?

Everything might be working, but you might want to be certain that WordPress is serving a page and not MVC. Of course, you could make a simple edit to the page in WordPress and then just reload it in the browser, but it’s easy to tell using Chrome’s Developer Tools. Just right click the page, choose Inspect, and then navigate to the Network tab, and look at the Response Headers.

The original landing page, served by ASP.NET MVC.

And here’s the new version of the page, served by WordPress:

The same landing page served by WordPress (PHP).

Notice the difference in the X-Powered-By response header. This headers tells you whether the page was served by PHP (meaning WordPress) or by MVC.

Ready to send better emails and save a ton of time?


GMass is the only tool for marketing emails, cold emails, and mail merge — all inside Gmail. Tons of power but easy to learn and use.


TRY GMASS FOR FREE

Download Chrome extension - 30 second install!
No credit card required
Love what you're reading? Get the latest email strategy and tips & stay in touch.
   


When you start sending mass emails from your Gmail account, you’ll have many more emails filed in your Sent Mail folder than you’re used to. For users who are inexperienced with narrowing Gmail’s search results, having many additional emails in the Sent Mail folder can feel overwhelming. Google has published an extensive guide to all of Gmail’s search features, but this guide teaches you how to search specifically when you’re sending campaigns with GMass.

So today I’m going to show you how to search your Gmail account for sent messages like a boss, neatly sidestepping the great mass of GMass-generated emails and zeroing in on just what you want. The Sent Mail folder really shouldn’t be something one “browses” anyway, but should be seen merely as a record of what you have sent. So, I hope this post is helpful on your way to being both a Gmail and GMass search expert.

Example 1: Filtering out a GMass campaign from the Sent Mail folder

Let’s imagine you’ve recently sent out a mail merge campaign with an email that has a Subject line of “Sale this weekend”–and you’ve sent it to 10,000 people. Due to this, you’re now going to have a copy of each of those 10,000 emails in your Sent Mail folder. But if you want to see everything you’ve sent except for your campaign, you can filter all of them out of your results with this simple line in the Gmail Search bar:

in:sent -subject:"Sale this weekend"

Like this:

That line is part of the syntax of Gmail’s filtering, and it tells Gmail to search for everything in your Sent Mail folder that has a Subject line that is not “Sale this weekend”. The key to this is that minus sign right before the word “subject”. Minus signs in Gmail (and in Google searches, as well) tell the search engine to leave out that search term.

Example 2: Did that person get my email?

If you want proof that a campaign was sent to a particular person, you would use this search:

in:sent to:[email protected]

For example, this search, followed by clicking the magnifying glass to the left of the search field, produced these three emails sent to Jack Lovich:

A search for emails sent to a particular recipient.
A search for emails sent to a particular recipient.

Example 3: Did that person open or click my email?

Because GMass writes all open/click events to the GMass Reports–>Opens and GMass Reports–>Clicks Labels folder, if you quickly want to see if somebody opened or clicked an email campaign, you can use this sort of search criteria:

label:gmass-reports-opens [email protected]

Like so, using a person’s actual email address:

A search for occasions when a particular user opened GMass-sent emails.
A search for occasions when a particular user opened a GMass email campaign.

Example 4: Did my email to that person bounce?

With GMass, it is useful to occasionally check your bounced emails Label to see which emails that you sent through a GMass campaign did not actually make it to their intended recipients–that is, they “bounced”.

Use this search query:

label:gmass-reports-bounces

This will bring up all the bounced emails:

Showing a search to display all bounced emails.
Showing a search to display all bounced emails.

Checking your bounced emails is important in carrying out GMass campaigns, because this will let you know who didn’t get an email that you expected should have. When that occurs and isn’t caught by you, that’s a wasted opportunity for a sale or notification!

Another way to see this “folder” (it’s really a Gmail Label) is to, of course, click on the Bounces Label on the left side of your Gmail screen:

The GMass Bounces label (highlighted)
The GMass Bounces label (highlighted)

And, of course, you can click on any of those Labels and see which emails are filed there, such as “Opens” or “GMass Auto Followup”. The nice thing about searching in the search bar, though, is you can create arbitrarily complex searches. For example, you could choose to search for any emails that fulfill all of these criteria:

  • To a certain set of recipients.
  • The emails bounced.
  • With a certain subject keyword.
  • During a particular date range.

The search query you would use for that kind of complex search might look like this:

label:gmass-reports-bounces to: 
([email protected],  [email protected]) 
 subject:("Follow up") after:2018/4/1 before:2018/6/2

Example 5: Searching for a particular campaign’s report

What if you sent a campaign in the past and you would like to find it, and you know there was a particular word in the Subject line? That’s also easy to search for in GMass. 

Let’s say the Subject line word was “review” (which I used recently in another tutorial blog post, showing you how to create an automated outreach campaign that gets people to review your product). In that case, you would do a search as follows:

label:gmass-reports-[campaigns] subject:review

And the result would bring up any campaign with the word “review” in the Subject line:

The searched-for campaign is found by a keyword.
The searched-for campaign is found by a keyword.

Now, if we click on the GMass Campaign Report, you can easily see information about that campaign:

The GMass campaign report from the searched-for campaign.
The GMass campaign report from the searched-for campaign.

You can see how this type of search is a fast way to go from one word to a nice report about how any campaign(s) associated with that keyword is doing. This eliminates a lot of overhead in tracking your success. For example, you could make a point to use Subject lines that serve as useful keywords, such as:

  • Spring, Summer, Fall, Winter for seasonal sales.
  • Version numbers of new versions of software.
  • Magazine or other journal issue names.
  • Book titles (if you are an author with multiple titles, or a publisher)
  • The names of memorable holiday-associated sales, such as “Columbus Day Sale”, “St. Patrick’s Day Sale” and so forth.

As you can tell, GMass makes extensive use of Labels. Labels are where everything related to GMass is stored, from your scheduled campaigns, to your individually sent emails, to your reports, to your open and click notifications. If you’re interested in learning more about the Labels specific to GMass, see this guide to the Gmail Labels used by GMass.

Email marketing, cold email, and mail merge inside Gmail


Send incredible emails & automations and avoid the spam folder — all in one powerful but easy-to-learn tool


TRY GMASS FOR FREE

Download Chrome extension - 30 second install!
No credit card required
Love what you're reading? Get the latest email strategy and tips & stay in touch.
   



Customer reviews are essential to a product’s rankings, but it’s not always easy to get the quantity of reviews you want. The the best way to get a large number of reviews is to create an email outreach campaign to automatically ask users for a review.

Without the automated campaign I have running to get people to review my products GMass and Wordzen, I probably would have only 5% of the reviews I actually do have.

Even more importantly, GMass is ranked higher than its competitors in both the Chrome Web Store and the Gmail Add-on Store than other products that do mail merge in Gmail–even though some competitors have a significantly larger number of users. Why do they have more users than GMass when GMass is clearly superior? That’s a story for another day, but mainly because they’re the Silicon-valley big-money venture-capital-funded TechCrunch-type of companies…and GMass is organically grown, in the midwest, and focuses solely on its product and not all that other fluff. But I digress.

The proof is in…the search results!

Let me prove what an obvious difference this makes. GMass is available in two places: The Chrome Web Store and the GMail Add-on Store. First, let’s examine the Chrome Web Store and see how GMass ranks for the search term “mail merge”:

Showing GMass at the #1 position on the Chrome Web Store.
Showing GMass at the #1 position for “mail merge” on the Chrome Web Store.

Notice that GMass ranks #1, and it has 1,133 reviews, and the #2 product, M*xmax, has only 523 reviews. The effect of reviews is even more impressive when you consider how many users each of the two extensions has:

Number of GMass users: 63,271.
Number of GMass users: 63,271
Number of Mixmax users: 93,732.
Number of M*xmax users: 93,732

Wow! Even though M*xmax has almost 50% more users than GMass, GMass is ranked higher because it has more than twice the number of reviews, and better ones to boot.

Now let’s apply the same analysis to the Gmail Add-on Store (aka the G Suite Marketplace). The Marketplace offers about 60 apps. Where is GMass on that list? Let’s take a look at the first page:

GMass at the #13 position of 60 apps in the Gmail Add-on store.
GMass at the #13 position of 60 apps in the Gmail Add-on store.

GMass is doing decently well at #13 out of 60. In fact, GMass is ahead of many apps that have more users. Let’s zoom into the row where GMass appears:

GMass ranked higher than other add-ons with many more users.
GMass ranked higher than other add-ons with many more users.

Notice that GMass, with 49,182 users, ranks above SignRequest, with 156,757 users, and even BasicOps, with 189,625 users–both more than three times as many users as GMass! But, of course, look again at the number of reviews: GMass leads with 271 reviews, whereas SignRequest only has 136–and BasicOps only 45! Reviews boost rankings.

Better rankings means more visibility for any application, not just GMass. In the same way, your product will be more or less visible based on the number of reviews it has in whatever marketplace it competes, whether it be Yelp, the iPhone App Store, or the Google Play Store.

So, today I am going to show you how to set up a review request email campaign, and how you can apply it to promote your business.

How the outreach campaign works

Here is the basic process:

  1. Get the names and email addresses of people who are using your product into a Google Sheet. This should be a system that updates regularly, so new active users of your product are periodically automatically added to the Google Sheet. This can be done by Zapier, or any tool that can connect your CRM system to a Google Sheet.
  2. Create a daily recurring campaign with at least one auto follow-up asking people to write a review.

Example 1: Reviews for your software product

A common use case for this type of campaign is for requesting reviews for your software product, whether that’s a web, mobile, or desktop app. In this example, we will use GMass itself as the example software product and look at how I use GMass to get reviews for GMass. How meta!

Start by creating your Google Sheet with the names and email addresses of people who are using your software. For this tutorial, I’m going to assume you know a way to do that, either by exporting data from your internal CRM system into a Google Sheet, or by using Zapier or a similar product.

Note: GMass uses Microsoft SQL Server as its backend and has written a proprietary tool to take data from SQL Server and dump it to a Google Sheet, something we plan on eventually making publicly available so that anyone who uses SQL Server as their back-end can easily get their active customers into a Google Sheet.

Here is a screenshot of an example Google Sheet:

Showing your Google Sheet with your Gmail-using recipients.
Showing your Google Sheet with your Gmail-using recipients.

Now you’re ready to reach out to your customers, asking them for a review.

  1. Click the GMass Spreadsheet button at the top of your Gmail page to connect to a spreadsheet.

    About to click on the Spreadsheets button in GMass.
    About to click on the Spreadsheets button in GMass.
  2. Choose the spreadsheet you are using with this product review invitation campaign and click “Connect to Spreadsheet”.

    About to connect to a Google Sheets spreadsheet with GMass.
    About to connect to a Google Sheets spreadsheet with GMass.
  3. In the Gmail Compose window that is then launched, create a new email with your invitation to review your product–in my case, GMass.

    Outgoing review request for a software application (in this case, GMass)
    Outgoing review request for a software application (in this case, GMass)

    Bonus: Notice how we can use GMass’s personalization feature (“{FirstName|there}”) here? This way, if there is a FirstName column with information, GMass will address the email recipient by his or her first name (such as, “Hi, Bob”).

  4. Now let’s schedule this email sequence. Click the GMass Settings button.
    The GMass Settings Window button
    The GMass Settings button (up arrow)

    The Settings window will be displayed. Click the plus next to Schedule. 

    Showing the GMass Settings window, hovering over Schedule option.
    About to open the Schedule option from the Settings Window.
  5. Click the “repeat” checkbox, and choose daily or hourly in the dropdown. You can also set a few other settings, such as not sending on weekends.IMPORTANT: Keep in mind, this scheduling doesn’t mean you are going to be pestering the same people daily or hourly, asking them repeatedly if they will write a review of your product. It means that this campaign will check the Google Sheet daily or hourly to see if there are new people on the list who have not yet been contacted, and only email the new people.
    Showing close-up of the GMass Settings window around the Scheduling functions.
    Set your settings for repeating, daily or hourly.

    Note: If, and only if, you have launched a Gmail compose window through the Spreadsheet button (Step 2 in this section), the Settings will include an option for scheduling repeated sends of this email. It will not show this if you compose an individual email without using the Spreadsheet button.

  6. Let’s also set up one reminder email. The reality is, people need to be reminded to write reviews, even if they are willing. Fortunately, GMass has a great feature for this (one that I’ve blogged about before). In the Settings box, click on the blue plus mark to the right of “Auto Follow-Up” to expand it. Here you will have options to set an auto follow-up email that will be sent to each recipient based on the rules you specify. In this case, I have set the follow-up email to occur a day after the initial email, but only if the recipient hasn’t replied to my first email.

    Bonus:
    You can even send up to seven more reminder emails, at some pacing you choose, using the various “stages” shown in the image below.

    Using the Auto Follow-up feature of GMass
    Using the Auto Follow-up feature of GMass

    That reminder, by the way, will look like this when they get it the next day:

    Showing what the automatic follow-up email will look like.
    Showing what the automatic follow-up email will look like.

    Reminders are essential in getting people to reply, because often it is only after someone has been reminded of something once–or even twice–that they will take action. In this case, that will often make the difference between another review or not getting one.

  7. Finally, click the red GMass button to start this automated email sequence. The first email addresses on the Google Sheet will be sent emails immediately, and then as new rows are added to the spreadsheet, GMass will send out this same email to those new people in an automated fashion. GMass is smart enough to avoid sending the previously emailed recipients the same email again.

That’s it! Now people will be invited to write a review of GMass, and each will get one (or more, if you prefer) follow-up email to remind them. Furthermore, new addresses added to the spreadsheet will automatically get the same email sequence.

Example 2: Reviews for your brick-and-mortar business

Remember, customer reviews aren’t only beneficial to software products like GMass. They are vitally important for getting the good word out about your shop, restaurant, or any other “brick and mortar” business in your community.

In this tutorial, I’m going to use Ted’s Tadpole Tanks as an example of a brick and mortar establishment, but it could easily be any sort of local establishment.

The steps here are the same as the first example, but with a different outgoing email that makes sense for a brick-and-mortar business. In that case, asking for reviews on Yelp.com might be the way to go. Here is the outgoing email:

Example of an outgoing email requesting reviews for a brick and mortar shop.
Example of an outgoing email requesting reviews for a brick and mortar shop.

The rest of the process is the same as shown in the previous example.

Other uses:

The world of public opinion about products and services runs on reviews. They can make or break not just businesses, but any creative or public effort that requires people to make decisions in your favor. So consider using GMass for any of the following ways to automatically request reviews for your:

  • band’s new music album.
  • new book (such as on Amazon or Goodreads, for your new book).
  • new indie movie (such as on IMDB).
  • restaurant (Yelp, Trip Advisor, the Happy Cow, and others).
  • coffee shop
  • yoga, dance, or martial arts center
  • boutique
  • record store
  • doctor’s or dentist’s offices
  • law office
  • funeral home (that may seem strange, but having a trusted place to go when it is a family’s time to need this service is actually very important. You may wish to only request reviews after an appropriate amount of time has passed, of course.).
  • non-profit community center
  • auto mechanic’s shop
  • massage therapy business
  • photography service
  • in-home tutoring business

What if you have a lot of customers?

Sometimes you have a runaway hit on your hands and have tons of customers. That doesn’t mean your company should rest on its laurels–reviews can drive even further growth. In that case, however, you will have a lot of emails to send!

If so, you might need to connect GMass to an SMTP account like Sendgrid. This allows you to send a large volume of emails without bumping up against Gmail’s limits while still using the familiar Gmail interface to do all your work.

Ready to send better emails and save a ton of time?


GMass is the only tool for marketing emails, cold emails, and mail merge — all inside Gmail. Tons of power but easy to learn and use.


TRY GMASS FOR FREE

Download Chrome extension - 30 second install!
No credit card required
Love what you're reading? Get the latest email strategy and tips & stay in touch.
   


GMass now has a System Status page at https://www.gmass.co/systemstatus.

Screenshot of our new System Status page.

The System Status page shows a bunch of interesting statistics and data, including the total number of emails GMass has sent lifetime, which is currently around 310 million. Whoa! 310 million emails all sent from users’ Gmail accounts!

Additionally, we show you how many campaigns are currently sending and a list of users who are “active senders”. We of course obfuscate the email address of the user so that you can identify yourself but nobody else can.

Over time we’ll expand this page to include more system statistics, charts, and useful data.

Ready to send better emails and save a ton of time?


GMass is the only tool for marketing emails, cold emails, and mail merge — all inside Gmail. Tons of power but easy to learn and use.


TRY GMASS FOR FREE

Download Chrome extension - 30 second install!
No credit card required
Love what you're reading? Get the latest email strategy and tips & stay in touch.
   


If you’re getting Message not delivered bounces from Gmail indicating that your “Send mail as” settings are misconfigured, here is why it’s happening and how to resolve it.

First, this is what this particular type of Gmail bounce message looks like:

A bounce because your SMTP server is rejecting your From Address.

Here’s another example, indicating that you’ve exceeded your sending limits. Don’t get confused though…this has nothing to do with your Gmail sending limits:

A bounce because your SMTP server is over limit.

Why are you getting these bounces?

In both of these examples, there’s actually no issue with Gmail or GMass. The issue is with the SMTP server that you set when configuring your additional From Address.

When you want to send an email in Gmail from an address other than your Gmail address, you can do that. You just set up an email address that you own as an additional From Address in your Gmail account, and that email address doesn’t have to be a Gmail account, although it can be. You do that by following the instructions provided by Google to add an additional From Address. Part of the setup requires you to provide an SMTP server for that new From Address. That means you were forced to input an SMTP server, its username, and its password in order to send “from” that additional address that you own.

These bounces that you’re receiving are being generated by that SMTP server that you chose — not by Gmail’s server and not by GMass.

In the second example, the SMTP Server bounces the message because of a limit issue. This has nothing to do with Gmail’s sending limits. This is a limit imposed by your SMTP server that you set when you configured the additional From Address.

How do you fix these bounces?

Whether you send a normal email with the Gmail Send button or a mail merge campaign with the GMass button, if you set your alternate From Address, the emails will be sent via that SMTP server that you used to set up that alternate From Address, not Gmail’s servers. You are essentially bypassing Gmail’s sending servers when you send “from” your non-Gmail address.

So when you get a bounce like this, you can resolve this by either:

  1. Resolving the issue with the company in charge of that SMTP server.
  2. Sending from your Gmail address rather than the additional From Address.
  3. Usinger a commercial SMTP server like Sendgrid instead of your current SMTP server.

I’m confused…SMTP Server huh?!

You might be confused because GMass allows you to set an SMTP server to send unlimited emails with your Gmail account. This is not the same SMTP server that Gmail requires you to specify when you configure an additional From Address.

The SMTP server you set with GMass is used to send emails when:

  1. You use the GMass button instead of the Gmail Send button…AND…
  2. You specifically designate the SMTP server to send the emails rather than Gmail’s servers in your GMass Settings:

The SMTP server you set with Gmail as part of From Address configuration is used when:

  1. You choose that particular From Address from the dropdown menu in the Compose window…AND…
  2. You use either the Gmail Send button or the GMass button, and if you used the GMass button, you elected to “Send with” Gmail. It might be confusing because even when selecting “Send with” Gmail in this case, your emails are not sent through Gmail’s servers. They’re going through the SMTP server you set as part of your From Address configuration.

More information

We’ve written an extensive explanation of the differences between sending from your Gmail email address versus an additional From Address that you set up in your account. There are deliverability implications to factor, the biggest being that when you send from an additional From Address, your emails aren’t going through Google’s high deliverability email servers.

Ready to transform Gmail into an email marketing/cold email/mail merge tool?


Only GMass packs every email app into one tool — and brings it all into Gmail for you. Better emails. Tons of power. Easy to use.


TRY GMASS FOR FREE

Download Chrome extension - 30 second install!
No credit card required
Love what you're reading? Get the latest email strategy and tips & stay in touch.
   


Right now, my family and I are sailing on Royal Caribbean’s Harmony of the Seas, and because I’m always watching over GMass, we couldn’t have gone on this trip if it weren’t for the ship’s Voom Internet offering. Royal Caribbean’s WiFi offering claims to be the “fastest Internet at sea”.

So, is it really the fastest?

Royal Caribbean claims it’s 6x faster than any other Internet access offering on the sea, which is believable, but as a sysadmin, I’m only happy if it’s fast enough for me to manage my servers and deploy emergency bug fixes.

The Obligatory Speed Test

Let’s see just how fast it is, and if it’s fast enough for me, as a systems administrator, to be able to do my job and control the GMass network remotely. I’ve been running speed tests every day since boarding the ship four days ago, and the speed has been consistently around 2-4 Mbps downstream and about 1-2 Mbps upstream. Here’s one of the tests from speedtest.net.

A speed test from Harmony of the Seas, using Voom Internet

Now, other Royal Caribbean cruisers have reported different results. cruisecritic.com claims that Voom’s Internet at sea is “probably faster than most of us have at home”, which isn’t true at all, especially if you live in my home and are used to 200 Mbps downstream speeds. Cruzely.com’s assessment was more in line with my own, saying that streaming video is choppy at best, but basic functions like web and email access work just fine.

By comparison, here is Carnival’s WiFi offering, which states that even on their Premium Wi-Fi Plan, video streaming services like Netflix, video calling services like Facetime, and WiFi calling are blocked, although an exception is apparently made for Skype. It’s even worse with Norwegian Cruise Lines, which outright states that NO video streaming services are allowed and that if you’re used to speedy Internet at home, expect slow Internet on the ship. In that sense, Royal Caribbean’s claim to have the best Internet access on the sea holds true.

Neither Carnival nor Royal Caribbean actually come out and state what Internet speeds a user can expect, which is strange to say the least. I suppose they don’t want to be held accountable if speed falls short of what they promise.

My Sysadmin Needs

As a developer and sysadmin, my main concern is being able to transfer files and being able to remotely access servers via Windows RDP. Since Royal Caribbean actually offers two packages, a “surf” package which is limited to web and email access, and a “surf and stream” package which allows you to stream video and make video calls, I was concerned there might be some “port” blocking happening. Get it? “Port” blocking? 🙂 RDP runs on port 3389, surely a non-standard port for most cruise ship passengers, but much to my delight, it worked.

I’m able to Remote Desktop into my server from the cruise ship.

Now, although I found that port 3389 worked, that doesn’t mean that all ports are open. I was unable to FTP files to my server. Most sysadmins know that FTP uses a data channel on port 21 and a control channel on a port specified by the server at the time of the connection. My FTP is able to connect to the FTP server but not to the control channel to list any files or perform any functions related to files.

I couldn’t FTP from the cruise ship.

Overall Assessment

I’m thankful that Royal Caribbean has WiFi on their ships to begin with, because without it, we wouldn’t be able to cruise with them. The WiFi connection allows me to manage my servers, check my email, and monitor the GMass system. Transferring files was more difficult because of the FTP issues, but I’m able to work around that by using Amazon S3 as a file holding area. Overall, I’ve been able to be productive even when I’m supposed to be relaxing with my family on vacation. While Royal Caribbean’s claims about the speed may be exaggerated, the speed is still highly usable in many ways, including the ability to publish this very article!

See why 99% of users say they’ve had their best deliverability ever with GMass


Email marketing, cold email, and mail merge all in one tool — that works inside Gmail


TRY GMASS FOR FREE

Download Chrome extension - 30 second install!
No credit card required
Love what you're reading? Get the latest email strategy and tips & stay in touch.
   


Whether or not you use GMass, it’s useful to understand the difference between the three different domains that Google uses for email: gmail.com, googlemail.com, and google.com. Let´s take a quick look at how these three differ.

The “gmail.com” Domain: What most of us have for email

The most well-known domain for email is, of course, gmail.com. This is for regular Gmail users, and takes the form of “[email protected]“.

The gmail.com email domain in use.
The gmail.com email domain in use.

Before we get to the other domains, here are two fun facts about using your gmail.com domain.

One is that you can put one or more dots within the name part, however you want, and it won’t affect anything. So, for example, [email protected] is treated exactly the same as [email protected], though the first one might be slightly easier to read, because the words are separated with the dot.

Another is that you can put a plus sign (“+”) anywhere in the name portion and Gmail will ignore everything to the right of that plus until it gets to the “@” symbol. So, emails sent to [email protected] will be sent to the [email protected] inbox (although I should also note that when I tested this by sending an email to myself, for some reason I didn’t receive the email at all—but it did work when someone else sent me an email using the same address with the plus symbol in it).

One possible use for this “+” trick is that you can “tag” email that are coming in from certain sources. So, for example, your friends might write you to [email protected], but you could give out to business contacts [email protected] and it will also go to that same inbox. This way, you could immediately know which incoming emails were personal and which were business related. Plus, if you see you are getting spam sent to a particular “name+suffix” email address, you will know which sources have somehow gotten your email address in the hands of spammers.

The “googlemail.com” Domain: For two countries

Alternatively, googlemail.com is for Gmail users of a particular country where “Gmail”, as a trademark, was already taken. Those countries originally were Germany, the Russian Federation, and Poland. In each case, the Gmail trademark was unavailable, so Google was forced to use “googlemail” and therefore googlemail.com instead.

An email to the googlemail.com domain.
An email to the googlemail.com domain.

In Poland, the Gmail trademark domain is owned by a Polish poet group, Grupa Mlodych Artystów i Literatów—which is abbreviated “GMAiL”. In the Russian Federation, the trademark is owned by a Russian mail redirect service, Gmail.ru. So, with the Gmail trademark already taken, users there were assigned an email address of the format: [email protected].

As of 2012, the situation with Germany was straightened out and new users to Gmail there get assigned a gmail.com domain. People who signed up for Gmail prior to this switch have the option to switch to using gmail.com as well. In order to do that, they would go to the Accounts tab under Settings. The good thing about this change—if you haven’t already done it—is that Gmail will smartly update everything, so that there will be no disruption in receiving emails. For example, if someone emails you to your old [email protected] address, it will automatically arrive at your [email protected] inbox.

In fact, [email protected] and [email protected] point to the same mailbox. You can test this out right now by sending an email to yourself by taking your normal email address and using the googlemail.com domain. You’ll get the email instantly, proving that these domains are the same.

What’s also good about this is a new person can’t register your name at the other domain. For example, if you use [email protected], no one would be able to register [email protected]–which prevents someone using a very similar email as yours without your permission.

The “google.com” Domain: For Google employees

Finally, the google.com email domain is used for Google employees. So, as a fictional example, an email address like “[email protected]” would mean that Happy Hippopotamus was a Google employee.

What’s useful about this fact is that if you receive an email with a google.com domain, it should mean that the person who sent it does actually work for Google—as opposed to being a scammer or hacker doing a phishing attack for information about you.

The final option: your own domain with G Suite

The final way with which to use Gmail is to bring your own domain and set it up on G Suite. About half the world’s companies and almost all of the world’s startups bring their domain to G Suite to let Google manage their email.

The Upshot: They all work with GMass!

Whichever domain you use, they will all work with GMass. So don’t let these options stand in your way from making effective email marketing campaigns, whether for politics, recruiting, or any other way you can use GMass to automate reaching out to many people easily with Gmail.

See why 99% of users say they’ve had their best deliverability ever with GMass


Email marketing, cold email, and mail merge all in one tool — that works inside Gmail


TRY GMASS FOR FREE

Download Chrome extension - 30 second install!
No credit card required
Love what you're reading? Get the latest email strategy and tips & stay in touch.
   


GMass gives you the ability to send unlimited emails by connecting a third-party SMTP service to your account. This allows you to effectively break Gmail’s sending limits.

If you’re sending strictly opt-in email, you might be eligible to use one of GMass’s own SMTP servers, rather than setting up an SMTP service on your own.

We are selective about who we let use our own SMTP servers or our SendGrid account, so please don’t take offense if we deny your request. Additionally, it can take a couple days for us to review your request, since we manually review every user’s sending history to determine if you are eligible.

Note: We require you to include an unsubscribe link and a physical address on all messages sent through GMass’s SMTP server.

To apply to use our SMTP service, please fill out this form.

We’ll be notified of your request and will email you as soon as we complete our review.

If approved, your account will be linked to one of our SMTP services.

We won’t provide you with the username/password, but behind the scenes, your account will be linked to the server. And you’ll now see the choice to send either via the SMTP service or via Gmail in the GMass Settings box for your account.

There is no extra fee if you qualify, but do note that sending over SMTP is subject to usage-based billing, outlined here.

See why GMass has 300k+ users and 7,500+ 5-star reviews


Email marketing. Cold email. Mail merge. Avoid the spam folder. Easy to learn and use. All inside Gmail.


TRY GMASS FOR FREE

Download Chrome extension - 30 second install!
No credit card required
Love what you're reading? Get the latest email strategy and tips & stay in touch.
   


GMass has many great options for mail merge personalization options, from simple mail-merge personalization to fallback values and even automatic first name detection. But did you know you can also include a personalized image for each recipient of your email marketing campaign?

The best practice for including a personalized image is to include an “img” tag in a column in your Google Docs spreadsheet. Let’s walk through an example of how to do that.

Example: Different Zodiac Signs

Below is an example of a Google Docs spreadsheet for a fictional business, Star Signs Essential Oils, which is offering a different Zodiac-themed essential oil to each customer based on his or her star sign. Here the personalized image links are included as values in one of the columns.
Example customer spreadsheet.
Example customer spreadsheet. Note the highlighted image links.
In those highlighted sections, note the “src=”https…” text in each customer’s ImageLink cell. These are links to images hosted somewhere online–ones that you have created for the purpose of this mail campaign. Each source link is different because each of these three people have a different zodiac sign (of course, in the case in which multiple people shared the same sign, they would all use the same src link for their image).

After using GMass to connect to your spreadsheet, the Compose window launches. In our fictional example, the Star Sign promotional email looks like this:

The outgoing email with the ImageLink used.
The outgoing email with the ImageLink used.

Note the presence of the text “{ImageLink}” in the center of the email. That is how GMass will know to replace that with the image indicated in the spreadsheet.

When your email is sent, each recipient will get the same text, but a unique image. For example, the recipient Brandon, who is an Aries, will receive the following email:

The email Brandon (the Aries) receives showing an Aries related image.
The email Brandon (the Aries) receives.

Ron, who is a Leo, will get the same text, but an entirely different personalized image:

The email Ron (the Leo) receives showing a Leo-related image.
The email Ron (the Leo) receives.

Finally, Jack, who is a Capricorn, will receive yet a different image:

The email Jack (the Capricorn) receives showing a Capricorn-related image.
The email Jack (the Capricorn) receives.

Other Use Cases

You can personalize emails using any images you want, of course, but just to give a sense for how this GMass feature could be used, here are some example cases:

  • Put a player’s name on the sports jersey or hat you are selling them.
  • Include a photo of the person taken as part of his or her interaction with your business. For example, at a tourist site in which souvenir photos are taken.
  • Include a different theme image depending on whether the recipient is male or a female, older or younger, from a particular country, or of some other demographic grouping that you could respectfully represent with an image.
  • Provide a photo of the branch of your business that is local to the recipient.
  • Show photos of specific products or services that each particular client is likely to be interested in based on customer data you already have.

Using Google Drive images

Google Drive is a great place to store images for your GMass campaigns. But… it takes a few steps. One, giving GMass permission to access Google Drive. Two, making sure your images have proper sharing permissions. And three, getting the actual image URLs (not the URLs to the images’ Google Drive page).

Click this link to give GMass permission to access your Google Drive images. We don’t ask for this permission by default; only in situations like this when we need it.

Now upload your images to Google Drive. Then select your images and give everyone with the link permission to view.

Now hit that Copy links button at the bottom of the popup.

Follow these steps to turn Google Drive’s string of URLs into actual images you can use.

  1. Open a new Google Sheet
  2. Click into cell A1 and hit paste.
  3. In cell A2, enter this formula: =SPLIT(A1,", "). Don’t forget the space after the comma that’s inside the quotes.
  4. Select everything in the second row. Click Copy.
  5. In cell A3, click Edit > Paste special > Values only.
  6. Select everything in the third row. Click Copy.
  7. In cell A4, click Edit > Paste special > Transposed.

Now we have every Google Drive image URL on its own line.

Delete rows 1, 2, and 3. That will leave you with just the URLs as they’re supposed to be for mail merge. That’s because Google didn’t give you direct links to the images — the links are to Google Drive pages featuring those images. And to mail merge the images, we need to grab the image links themselves.

In B1, type in the following formula: =MID(A1,33,(FIND("/",A1,33)-33)). We’re extracting the file ID from the string. We know it starts at the 33rd character and we’re accounting for the possibility it could be any length. Then drag that formula down to the rest of the rows.

It’s finally time to build mail merge links.

In C1, type the following =CONCATENATE("<img src=""https://drive.google.com/uc?export=view&id=",B1,""">") . You need all those double quotes in there because that’s how you escape quotation marks in this particular Google Sheets scenario. Now drag that formula down to the rest of the cells in the column.

Now copy everything in column C. Go to your main spreadsheet and paste those links in the right rows. Make sure to use Edit > Paste special > Values only.

The images will now be properly embedded in your emails.

Using Dropbox images

Much like Google Drive, Dropbox doesn’t like giving you the direct URLs to your images — they give you links to Dropbox pages featuring your images. So again, we need to extract the URLs.

And with Dropbox, you have to do this one at a time. Plus the URLs are really long. So it’s not the ideal solution.

Upload your images to Dropbox.

Right click on one of your images and chose Share then Share with Dropbox.

Make sure the permission is Anyone with this link can view. Then click Copy Link.

Now open an incognito browser window. (It needs to be an incognito window so you get the public URL.) Paste in the link. Then right-click and choose Copy Image Address.

Now paste that URL into your spreadsheet. And add <img src=" before the image URL and "> after.

Now repeat for the rest of your images.

Things to Keep in Mind

Although that is the basic idea, here are a few other points to keep in mind about personalizing images:

  • To keep things simple, I’ve just used a regular typed-in email for the example above. However, in many cases you will want to use the personalized image technique in the context of a custom HTML email. It works exactly the same way: just paste in your HTML into the Gmail compose window and then type in your {ImageLink} tag where you want the personalized image to appear. You can read more about How to use custom HTML in a Gmail compose window.
  • You can also make the image a link itself, of course. That would require using the personalized link technique I’ve blogged about before, but, in your spreadsheet, including the <img> tag within the <a> tag, like this:
    <a href="https://www.starsignessentialoils.com"> 
    <img alt="Aries Essential Oil" src="https://i.imgur.com/n3LQgc1.png">
    </a>

Summary

If you need to send personalized images as part of a Gmail-based email marketing campaign, just host the individual images somewhere online and then include the full personalized image links, one for each recipient, in your Google Docs spreadsheet. Finally, include the personalization tag (such as {ImageLink} or whatever you’d like to call it, as long as it matches to the spreadsheet column) in the body of your email. It’s that easy!

Want more?

See why 99% of users say they’ve had their best deliverability ever with GMass


Email marketing, cold email, and mail merge all in one tool — that works inside Gmail


TRY GMASS FOR FREE

Download Chrome extension - 30 second install!
No credit card required
Love what you're reading? Get the latest email strategy and tips & stay in touch.
   


Using a combination of GmailGoogle Sheets, and GMass, you can easily email different people on different days. In the Google Sheets spreadsheet containing your email addresses, you simply need a Date column that includes the date on which you’d like that particular email sent.

Overview

The basic steps to send automatic emails on specific days in Gmail are:

  1. Set up a Google Sheets spreadsheet containing email addresses and the dates to be sent.
  2. Use GMass to connect to the spreadsheet with a specific filter criterion.
  3. Compose the campaign.
  4. Set it to repeat daily.
  5. Send it out!

Set up your spreadsheet

Your spreadsheet can contain any number of columns to personalize your emails, but for date-based sending, it needs to include a column for the email addresses and the EmailSendDate, for when you want each email sent out. That date can be anything that pertains to your use case (see Other Use Cases below after the example).

Customer contact spreadsheet showing dates on which emails are to be sent out.
Customer contact spreadsheet showing dates on which emails are to be sent out.

Above is our sample spreadsheet containing a list of people and the corresponding EmailSendDates. Note that the dates can be in any valid date format. In the example above, I am showing a number of different dates, with or without the year information, and using different formatting, just to show the flexibility. In your actual spreadsheet, you would probably stick to a standard format.

In what format should the date be? For this example, your date column can contain dates with years or without years, and they can be in any recognizable U.S.-based date format. For a date of January 15, 2019 for example, the spreadsheet cell can contain “1/15/19”, “1/15/2019”, “01/15/19”, “January 15, 2019”. It should not contain, however, the European date format of “15/1/19”.

If you are sending something out on an annual basis on that date, and therefore the year does not matter, you can leave years off of the date. For example, “1/15” and “January 15” would be acceptable date values. In this example, that is the approach I will follow (see the last example in Other Uses Cases below if you do need the year information to be used).

Set up the filter criterion in GMass

Click the GMass spreadsheet icon

GMass spreadsheet button, found at the top of Gmail page.
GMass spreadsheet button, found at the top of Gmail page.

and choose the spreadsheet and worksheet that you just set up. Because we don’t want to send an email to everyone on the spreadsheet at once, we need to specify a filter criterion so that emails only go out when the current date matches the date in the EmailSendDate column.

Choosing the spreadsheet and applying the filter.
Choosing the spreadsheet and applying the filter.

The filter criterion is based on the “EmailSendDate” column in the spreadsheet. We want to match rows where the EmailSendDate is equal to the current date. In this example, we are going to do it without regard to the year of the EmailSendDate.

Once you’ve inputted the filter criterion, click the CONNECT TO SPREADSHEET button to continue.

Note: If it’s no recipient has an EmailSendDate that matches today, then the Gmail Compose window will launch with an alias address in the To field representing 0 addresses. That is normal (and is shown in the next screenshot). It just means that right now, 0 emails will be sent. Since you’re going to set up the campaign to repeat daily, it will check to see if anyone has an EmailSendDate on each day the campaign runs, and send out the ones that do.

Set up the mail merge

Compose window in Gmail should have launched where you can enter the Subject and the Message for the email. Here I’ve personalized the Message with the first name.

The outgoing email.
The outgoing email.

Again, don’t be alarmed by the alias address representing 0 recipients. That’s just because it happens that today’s date does not match any of the recipients’ EmailSendDate. If any had matched, they would be shown in the To: field.

Now, in order to get this email to send every day to just the recipients whose EmailSendDate is that day, you must check the Repeat daily checkbox, which is found in the GMass Settings window.

Checking the "repeat daily" checkbox in GMass Settings.
Checking the “repeat daily” checkbox in GMass Settings.

Setting this to “Repeat daily to new Sheets addresses” will cause GMass to query the spreadsheet daily to see what email addresses match the filter criterion. Without this setting, the email would send today to anyone whose EmailSendDate is today–and then would just stop.

Instead, this setting will tell GMass to:

  1. Query the spreadsheet daily for rows where the current date is equal to the EmailSendDate.
  2. Send an email to just those people.

Bonus: You can keep adding rows to your spreadsheet, even after the campaign has started.

You can add more rows to your spreadsheet anytime you wish, and GMass will automatically pick up the new email addresses and dates. You don’t need to edit your GMass campaign. Just add the new data to the spreadsheet and GMass will detect them and send the emails accordingly on the daily schedule you’ve already set.

Other Use Cases

This is a general pattern that works for a number of use cases, either in business or your personal life.

  • Automated shipping alerts. If you have a spreadsheet of orders your company has received, and one of the columns is the buyer’s email address, and the other is the buyer’s order ship date, you can have an email sent out automatically on the day that a buyer’s product ships, to let them know to expect their package in the mail soon.
  • Automated emails for birthdays, graduations, others’ anniversaries, and other special personal dates. See our guide to sending birthday emails.
  • Subscription or membership ending reminders. This is a really useful one, and can be used with software subscriptions, magazines and newsletters subscriptions, society memberships, web domain yearly registrations, and other services that are paid in a repeating manner, whether annually or at some other scheduling. This one works particularly well if you include two date columns in the spreadsheet: one for the reminder send-out date, and one for the final day the service is expiring. You can then reference that expiration date in the body of the email using {ExpirationDate} as a GMass tag.
    This case is important enough to take a look at a quick example of the spreadsheet, filter criterion, and a sample message you might compose.
    Here is the spreadsheet–note the new ExpirationDate column to the right.

    A Google Sheets spreadsheet that also has an expiration date column.
    A Google Sheets spreadsheet that also has an expiration date column.

    Here is the filter–in this case, we are going to include the year information, so note that the filter is slightly different than what was used in the previous campaign example above.

    A different connection to our spreadsheet. Note the filter is changed from the previous example, with now it is not ignoring the year information.
    A different connection to our spreadsheet. Note the filter is changed from the previous example.

    Finally, this might be the message that you write to all customers–but it will only be sent out to each a month before his or her particular subscription is running out:

    An email that makes use of the ExpirationDate tag used in the previous spreadsheet.
    An email that makes use of the ExpirationDate tag used in the previous spreadsheet.

Is your email list not in Google Sheets?

GMass integrates extensively with Google Sheets to make features like sending automatic date-based emails possible. What if you don’t use Google Sheets as the main warehouse for your email list data? Using one of the many Google Sheets integrations from Zapier, you can automatically sync data from almost any database system with Google Sheets.

Want more?

You may be interested in an overview of how GMass sends mail merge campaigns with Google Sheets. You may also be interested in reading about setting up daily recurring campaigns using data in Google Sheets, which is what is necessary to send birthday and date-specific emails. And lastly, here’s a detailed guide to filtering rows in your spreadsheet for mail merges, in case you want to learn about techniques beyond just date filters in choosing which spreadsheet rows to send emails to.

Email marketing, cold email, and mail merge inside Gmail


Send incredible emails & automations and avoid the spam folder — all in one powerful but easy-to-learn tool


TRY GMASS FOR FREE

Download Chrome extension - 30 second install!
No credit card required
Love what you're reading? Get the latest email strategy and tips & stay in touch.
   


In this post, I will walk you through setting up a system where anyone who emails you can be automatically added to a GMass campaign with the option of sending a sequence of follow up emails automatically. (As a bonus, I include a little bit of spreadsheet formula magic to make it easier to later personalize your GMass-sent emails!)

For example, you may have a “mailto” link on your web page stating, “send us an email if you’d like more information.” Or a potential customer may just email you directly. In either case, when an email is then received, the sender is automatically subscribed to an email automation sequence.

How it Works

Here’s an overview of the process :

  1. Someone sends an email to your Gmail address.
  2. Zapier “zap” you have previously set up detects that new email and automatically copies the sender’s email address and other information you specify into a Google Sheets spreadsheet.
  3. GMass reads the Google Sheet every day or hour (your choice), detects all the new rows in the spreadsheet and sends an email to each new email address.
  4. The automatic follow-up email feature in GMass then will send the rest of the email sequence (up to 8 follow-ups) until the recipient replies, opens, or clicks the email.

Have your Google Sheets spreadsheet ready

My Google Sheets spreadsheet.
My Google Sheets spreadsheet.

Make sure you have a Google Sheet created to hold your mailing list. For the purposes of this tutorial, the format I will use has just four columns: Name, FirstName, LastName, and email. To follow along, set your spreadsheet up in this way. I also have 2 rows of sample data in it already.

Creating Your Zap

It will just take about ten minutes to set up your “zap” in the following steps.

  1. Zapier is a web service for connecting other web services, and can be quite handy. Signing up and basic features are free. First, sign up with Zapier. Then, to set up your “zap”, go to this template page on Zapier and click “Create this Zap”.

    Zapier page for agreeing to create your zap.
    Creating your “zap” to connect Gmail to Google Sheets.
  2. At the next window, alerting you that you are setting up this Gmail Trigger in Zapier, click “Continue”.

    Zapier window alerting about a Gmail-based trigger.
    Zapier alerting that you’re setting up a Gmail-based trigger.
  3. Zapier will then ask you to connect a Gmail account. This should be the account that, if someone emails you there, that person will be automatically assigned to your automatic email sequence. Click “Connect an Account” [not shown] and choose which account from the list (you have to be logged into an account in Gmail for it to be populated in this list), and then you will be shown this window:
    Dialogue window from Zapier requesting permission to access your Google Account.
    Zapier requesting permission to access your Google Account

    Allow Zapier this permission by clicking “ALLOW”.

  4. On the next screen, click “Save and Continue”.
    Zapier window confirming Gmail account.
    Zapier confirming Gmail account.

    Note: You probably will only have one email account that you are using with Zapier, but if you happen to have done this before, you might have more than one shown. If you happen to have more than one, make sure only the one you want for this zap is selected with the radio button.

  5. Click “Continue” on next page [not shown]. (We’re ignoring the advanced options).
  6. Click “Continue” on next page. [not shown]. (Also ignoring the small “new small improvements” page from Zapier).
  7. Zapier will now test this Gmail account. As it instructs, make sure there is at least 1 recent email in the Inbox of that Gmail account. Click “Fetch and Continue”.

    Zapier window asking you to click to test the Gmail account.
    Zapier about to test your Gmail account.
  8. Zapier will take a moment to attempt to fetch a recent email, and should come up as successful. If so, you will see this:
    Zapier window announcing that the Gmail test has been a success.
    Zapier test successful!

    Click “Continue”

  9. It will then ask you to create a spreadsheet row.
    Zapier window announcing Google Sheet action
    About to create a Google Sheet row.

    Click “Continue”. 

  10. You now need to connect a Google Sheet.
    Window for choosing a Google Sheets account.
    Choosing a Google Sheets account.

    Click “Connect an Account”.

  11. Zapier will ask you to choose a Google Sheets account and then give it access to that account, as you did in Step 4 for access to Gmail. So, repeat the process of granting permission.
  12. You will see a similar screen as was shown in Step 5. Click “Save and Continue”.
  13. You will be brought to a screen where you must set up your Google Sheets spreadsheet row.
    Keep in mind, in order for this to work, you must have a Google Sheets spreadsheet with the right formatting. This is critical. Zapier has a useful help page about this. Make sure to follow their guidelines. The spreadsheet I am using for this tutorial was shown in the section above, “Have your Google Sheets spreadsheet ready”.
    Note: You should be logged in as the Google account that goes with this sheet.
    In Zapier, I have selected a Google Sheets spreadsheet (“Emails for Ted’s Tadpoles”) as well as a worksheet, which happens to be the default name, Sheet1. So, select your own spreadsheet and worksheet. (Don’t hit “Continue” just yet, though.)

    Window for setting up Google Sheets spreadsheet row.
    Setting up your Google Sheets spreadsheet row.

    You also have to choose which data gets extracted from each email and placed into the spreadsheet’s next row. For this example, I am going to extract the the sender’s name and the sender’s email–which we will need for the automatic email sequence.  

  14. For the sender’s name, click on the icon to the right of the “Name” field (the word “Name” is from your spreadsheet this zap is connected to), and from the dropdown list, select “From Name”.

    Showing name field in the Zapier screen.
    Selecting the name to be extracted to the spreadsheet.
    Showing name field in the Zapier screen.
    Selecting the name to be extracted to the spreadsheet.

    Then, do the same thing for the email field, but select the From Email field from the dropdown [not shown].

  15. Now comes the bit of spreadsheet magic I mentioned above.
    For personalizing your emails when using a spreadsheet, GMass needs to have a spreadsheet column with the first names and last names of your contacts, so it would be good if we can attempt to get that through this zap. There is no first name field provided in Gmail data, so we can do it with a Google Sheets formula built right into our zap. First, make sure your spreadsheet is set up like mine is, with the exact same columns in that order. Then copy the following:
    =IF(ISBLANK(INDIRECT(ADDRESS(ROW(),COLUMN()-1))),””,(INDEX(SPLIT(INDIRECT(ADDRESS(ROW(),COLUMN()-1)), ” “), 0,1)))
    and paste it into the FirstName field. It will look like this:

    FirstName field close-up.
    FirstName field close-up.
  16. Let’s do the same thing for LastName. It’s the same idea, but a slightly different spreadsheet formula:
    =IF(ISBLANK(INDIRECT(ADDRESS(ROW(),COLUMN()-2))),””,    (IFERROR(INDEX(SPLIT(INDIRECT(ADDRESS(ROW(),COLUMN()-2)), ” “), 0,2)) )      )

    LastName field close-up.
    LastName field close-up.
  17. Double check that Name, FirstName, LastName, and Email are all filled out, then Click “Continue”.
    Note:  For this tutorial, I have kept things very simple, with just these four spreadsheet columns. But you could have as many as you want and extract other data from the emails, such as Subject or Date. 
  18. You will be brought to the test page. I prefer to skip this and test it directly from one of my emails. So you can just click Skip Test.
  19. Click Finish. You should see the following screen:

    Zapier page telling you your zap is working.
    Success! Your zap is working!
  20. You did it! So, let’s test it out! Send an email to the email address you used for this zap. We will have Jack Lovich, our customer, send an email.
  21. Wait more than 5 minutes. Zapier runs on a 5 minute interval schedule, so when you send the email you have to wait about 5 minutes for anything to happen.
  22. After 5 minutes are over, let’s check our spreadsheet again and notice that your last email, from Jack Lovich, has caused Zapier to add a new row (row 4) to your Google Sheets spreadsheet! 
    And, because of our spreadsheet formula, it’s also put his first and last name on the spreadsheet. Note: in cases, in which the person or entity that emails you has just one word as the “From name”, the LastName column will just be left blank.

    Showing Google Sheets spreadsheet with a new row added.
    A new row has been added to my spreadsheet!

    That’s it! You’ve set up your zap!

Back to GMass: Creating the Email Automation Sequence

The hardest part is done! Once you have set up your zap, you’re ready to create your email automation sequence.

  1. Click the GMass Spreadsheet button at the top of your Gmail page to connect to a spreadsheet.

    GMass spreadsheet button, found at the top of Gmail page.
    GMass spreadsheet button, top of the Gmail page.
  2. Choose the spreadsheet you are using with this zap and click “Connect to Spreadsheet”.

    GMass popup window asking you to select and connect to a Google Sheets spreadsheet.
    Connect to the spreadsheet you’re using with this zap.
  3. In the Gmail Compose window that is then launched, create a new email with your marketing message.

    The outgoing email.
    The outgoing email.

    Bonus: Notice how we can use GMass’s personalization feature (“{FirstName|Tadpole Enthusiast}”) here, since we have created a FirstName field in our spreadsheet, one that is automatically extracted by the zap we created.

  4. Now let’s schedule this email sequence. Click the GMass Settings button.
    Showing the GMass settings button.
    The GMass Settings button.

    The Settings window will be displayed. Click the plus next to Schedule. 

    Showing the GMass Settings window, hovering over Schedule option.
    You need to open the Schedule option.
  5. Click the “repeat” checkbox, and choose daily or hourly in the dropdown. You can also set a few other settings, such as not sending on weekends.
    Showing close-up of the GMass Settings window around the Scheduling functions.
    Set your settings for repeating, daily or hourly.

    Note: If–and only if–you have launched a Gmail compose window through the Spreadsheet button (Step 2 in this section), the Settings will include an option for scheduling repeated sends of this email. It will not show this if you compose an individual email without using the Spreadsheet button.
    While in the Settings window, set the options for follow-up emails, which will result in your “automated email sequence”. Those options are founded under Auto Follow-up, and are basically self-explanatory, but see the link above for a more thorough treatment of this option.

  6. Finally, click the red GMass button to start this automated email sequence. The first email addresses names on the Google Sheet will sent emails immediately, and then as new rows are added to the sheet by our zap (when people email the email address specified in our zap), GMass will send out this same email to those people as well.
    Of course, GMass is smart enough to know not to send the previously emailed recipients the same email again).

That’s it! You now have a powerful email automation system up and running.

If you want to take it to the next level and send a very large number of emails, you should connect GMass to an SMTP account like Sendgrid. This allows you to send a  very large volume of emails without bumping up against Gmail’s limits and prevents your Gmail account from being flagged for sending spam.

Ready to transform Gmail into an email marketing/cold email/mail merge tool?


Only GMass packs every email app into one tool — and brings it all into Gmail for you. Better emails. Tons of power. Easy to use.


TRY GMASS FOR FREE

Download Chrome extension - 30 second install!
No credit card required
Love what you're reading? Get the latest email strategy and tips & stay in touch.
   


One of GMass’s most useful features is personalization, in which any words in the email can be personalized to each recipient via a Gmail mail merge. That could be, for example, the recipient’s first name (the difference between, “Hi Bob” instead of “Hi there”)–or any text you want to personalize.

Recently, a few users have asked about taking personalization to the next level: putting a whole paragraph of text in a spreadsheet column, and using that in the main body of their message.

That is possible with GMass, but with an important caveat for those using HTML email campaigns (which most campaigns are). That caveat is this: The text in the spreadsheet must contain HTML tags. If not, the text will run all together, since GMass just replaces the %%FieldName%% with the cell’s value, and if it’s an HTML campaign, then the text runs together.

So, here’s how you can do it properly with GMass.

Overview

  1. Create a “{PersonalMessage}” column in your email contacts spreadsheet. This would work similarly to using a {FirstName} column, but with two differences: it will be quite a bit longer text, and it will contain HTML tags. You’ll also have to write each personal message, of course.
  2. Create an HTML email. I’ve blogged about this in detail before, so be sure you’re clear on how to do that by reading that email.
  3. Modify the HTML email right in the Gmail compose window, inserting “{PersonalMessage}” at a location in the email that you want it to appear.
  4. Send out using GMass!

An Example: The Wedding Photographer

Let’s say Shelly Nguyen, a wedding photographer, wants to reach out to her customers to offer them a new selection of follow-up photography at each couple’s wedding anniversary celebration. She has a list of former customers, so needs to use GMass to do a campaign, but she also prides herself on making a personal connection with each bride and groom. She’d also love to include her lace wedding banner logo in an HTML email to the bride and/or groom.

Let’s look at that in detail with Shelly’s example:

  1. First, Shelly prepares her Google Docs spreadsheet. She adds a column called “PersonalMessage”, and then writes a personalized message for each customer in her spreadsheet. For simplicity’s sake, I’m just showing four customers, but there could be essentially as many as contacts you’d like to send out to. These personal messages can be basically the same, with a few small touches to make it seem personalized. Note: She includes HTML tags, like <p> and </p> to set off each paragraph, or <i> and </i> for italics to help control exactly how her personal message displays in the HTML email.

    A Google Docs spreadsheet showing some wedding photography clients.
    A Google Docs spreadsheet showing some wedding photography clients.
  2. Next, Shelly creates her HTML email by writing it in HTML and rendering it in a browser. For help with this, please see my previous blog post on How to use custom HTML in a Gmail compose window. Here is her HTML email shown in a browser window–but without the personal message included yet.

    The HTML email, as rendered in browser. Note no personal message yet.
    The HTML email, as rendered in browser. Note no personal message yet.
  3. She then starts to create a GMass campaign by clicking the spreadsheet button, which looks like this:

    GMass spreadsheet button, found at the top of Gmail page
    GMass spreadsheet button, found at the top of Gmail page
  4. She chooses the correct spreadsheet–in this case, the one associated with her photography business.

    Choosing the correct Google Sheets spreadsheet.
    Choosing the correct Google Sheets spreadsheet.
  5. Then she connects to that spreadsheet.
    About to connect to the appropriate spreadsheet.
    About to connect to the appropriate spreadsheet.

    Gmail Compose window will be created. 

  6. Now Shelly needs to copy the HTML email from the browser page. She goes to that browser window, clicks in it anywhere, hits Ctrl-A to select all (everything will be shaded blue), then Ctrl-C to copy into the clipboard.
  7. She then immediately goes back Into the Gmail Compose window that is open and pastes in the HTML. Now the Gmail window looks like this (it’s still not quite done yet, though):

    HTML email shown in Gmail compose window. Not quite done yet, though.
    HTML email shown in Gmail compose window. Not quite done yet, though.
  8. Now Shelly must modify this HTML email directly. To do so, she simply can click into the email to the left of the start of the first paragraph, and insert the “{PersonalMessage}” variable and then also add a blank line by hitting “Enter” twice. You can either type “{PersonalMessage}” directly or use the personalization buttons in the GMass Settings box.Note: Of course, in your own personalized emails, you can put the text wherever you want.The resulting HTML email will look like this in the Gmail Compose window:

    Gmail Compose Window now that Shelly has added {PersonalMessage} text.
    Gmail Compose Window now that Shelly has added {PersonalMessage} text.
  9. The HTML email is now ready to go–Shelly just hits the red GMass button, as shown above.
  10. Now let’s see the result. Here is the email received by her customer, Tammy Bey as shown in Gmail.
    The received multi-lined text personalized HTML email shown in the browser.
    The received multi-lined text personalized HTML email shown in the browser.

    And this is a close-up of the whole email that the recipient would read:

    A detail of the email received.
    A detail of the email received.

That’s all there is to it!

Bonus: Two “Advanced” Techniques

  • There’s nothing preventing you from having an {OpeningPersonalizedMessage} as well as a {ClosingPersonalizedMessage}, right? This may really work well to give a truer sense of personalization, and would not be hard to implement at all. Just add another column.
  • If you want to get fancy, remember that GMass will substitute any text (and HTML tags) that you put in a Google Sheets spreadsheet, as long as the tag with curly braces, like {PersonalMessage} or {FirstName}, is used. If you think about it, you could use this fact to build as complex and personalized an email you could want. So, in our wedding photographer example, you could have spreadsheet columns for {ShootingLocation}, {MothersName}, {DressDesigner}, {CakeType}, and whatever else the photographer might want to mention. Then, you could use these to do even more personalizing. However, do note that you cannot put another GMass tag within a spreadsheet cell. Instead, you would have to use place various tags into the HTML email carefully yourself, send it to yourself as a test to work the kinks out of it, and then send it to the recipient. In most cases, this would get probably more complex than you would want to take on, but it’s good to note that option of building arbitrarily complex personalization is there if you want it.

Other Use Cases

In addition to wedding photographers, multi-line personalization is useful for many cases in which you want to make a personal connection with the recipient but wish to use a bit more than just their name. Here are some ideas for how use this feature:

  • Sales emails in which you know some facts about the customer. That could be something as simple as a suggestion from a mutual acquaintance to reach out to the potential customer.
  • Press releases to journalists, in which you might want to include a section of the email as the specific pitch to that publication, noting how your product or service fits into their publication niche.
  • Product notes to vendors you work with. In this case, you could update the vendor about what has changed with your product but also get in a quick personal “hello” and inquiries about their own business. Everyone appreciates this kind of touch.
  • The annual end-of-the-year email to family, friends, colleagues, or employees. You could include a nice personalized note at the start of your letter.
  • Quarterly emails to one’s employees. You could include a brief note to the employee and remarks on his or her own performance and how it tied into the company’s quarter. Of course, employees may share these emails, revealing that it is partly a form letter and partly personalized, but this probably won’t seem inappropriate.
  • A teacher’s emails to parents. The personalized portion can be about they and their child particularly, but the rest of the HTML email can be standardized content that talks about how the school year is going and includes some fun school-related images.
  • Letters to publishers or agents, shopping around a manuscript or other intellectual property. In this case, one could highlight how the author’s offering matches well to each particular publisher’s typical content.

 

Ready to transform Gmail into an email marketing/cold email/mail merge tool?


Only GMass packs every email app into one tool — and brings it all into Gmail for you. Better emails. Tons of power. Easy to use.


TRY GMASS FOR FREE

Download Chrome extension - 30 second install!
No credit card required
Love what you're reading? Get the latest email strategy and tips & stay in touch.
   


GMass