Posts tagged MailChimp
4 types of emails you need to be sending

Want to learn more about our favorite email marketing platform? Check out this post.

Email marketing can help you engage new customers – in addition to helping you sell your products; email marketing will help you enhance your brand awareness and build trust with new prospects. Once you’ve engaged a customer, it can even help you build brand loyalty.

For businesses of any size, email marketing is a no brainer. If you have a small marketing budget, it’s an easy way to connect with a lot of customers at once. In addition to being low investment, it drives traffic to your website and it’s the channel most customer prefer. 

As your company grows you can also scale your email marketing efforts – making it a useful tool no matter what stage of growth your business is at. 

4 types of emails you need to be sending  |  Hue & Tone Creative


One study from Marketing Sherpa reports that 72% of consumers prefer to receive promotional messages through email (source).


You can send a wide variety of different emails to your marketing list, but if you’re just getting started with email marketing, there’s a few types of emails we suggest you start with. These four types are all great to engage both new customers and old leads. 


1. Welcome email

This is your first chance to get your newfound relationship off on the right foot. Your welcome email should include key components like:

  • A thank you message for choosing your brand

  • Links to your social media channels to encourage additional engagement

  • A discount or deal that’s exclusive to new customers (this not only demonstrate a token of appreciation, but it will give them a nudge to browse your products or services again)

As with any type of email, your welcome email should be kept short and sweet to ensure the recipient isn’t overwhelmed with information. We suggest sending this initial email within 48 hours of signing up or making a purchase - the sooner the better though. Often, people will actively check for your name in their inbox after a sale’s been processed, so any later can look a little lazy!


2. Regular newsletters

Newsletters are an excellent way to naturally maintain contact with customers – it’s a great way to share useful information while also ensuring your brand remains at the forefront of their mind.

Your newsletter could include content like:

  • Blogs relevant to the product/service they took out

  • Company updates

  • Competitions/giveaways

  • Teasers: if you’ve got something new coming out

  • Testimonials: to reaffirm you’re a good brand to be with

Your newsletters should be consistent. Don’t send three in one month and then go silent for the next four. Decide how regular you want to start sending them - weekly, biweekly, monthly or quarterly. Try to stick to the same date and time too, that way people can start to expect (and hopefully look forward to) your updates.


3. Promote your products 

Existing customers present a potential gold mine of up-sell and cross-sell opportunities. If they’ve already purchased from you there’s a good chance they already enjoy your brand, so it’s a waste not to play on that.

It’s really important you don’t go overboard with these kind of emails though. If you do, you run the risk of recipients unsubscribing and losing all chances of reaching out to them. 

Your promotional emails should:

 a)     Be clearly targeted
b)     Focus on quality, rather than quantity
c)     Outline why this product is suited to them
d)     If possible, offer an additional incentive - i.e. a discount

4 types of emails you need to be sending  |  Hue & Tone Creative


4. Ask for a review

If you never ask there’s no chance you’ll get what you want, right? 

Reviews are key to your success. The majority of prospects will peruse your reviews before making their final decision, so the more high-quality testimonials you have to your name, the more chance you have of attaining new leads. 

For existing customers, reviews provide an open platform to air opinions, and show that you a) care what they think, and b) are looking to continually improve and evolve your offering for them.

 Don’t be too keen with your review request though. To make sure it’s meaningful, give the customer chance to actually use your product or service first. Equally though, make sure you don’t leave it too long, if you do, you might slip off their radar before you land in their inbox. We suggest waiting a minimum of about 2-3 weeks before prompting someone for a product review, but no more than 2 months. 


Hue & Tone Creative: Email Marketing in Greensboro, NC

Whether you need help building your overarching email strategy, putting words together, or branding your template, we’re your go to experts. To start or improve your email strategy today, get in touch with our team at (336) 365-8550 or hannah@hueandtonecreative.com.

Intro to HTML: Must Know Tags for Beginners
Into to HTML  |  Hue & Tone Creative

If you’re not familiar with HTML, making even small tweaks to your website or custom MailChimp template can be a struggle. HTML is a complicated language and you won’t become an expert overnight – however, you can master a few basics that will make it easier to tweak templates, build web pages, and control your online presence.

This is by no means meant to be a comprehensive guide to HTML, but rather an introduction with some of the most basic tags you’ll need to customize your in-house marketing campaigns. 

 

What is HTML?

Let’s start with the most basic question – “what is HTML?”

Hypertext markup language (HTML) is a standardized system for tagging text files to achieve font, color, graphic, and hyperlink effects. You use specific tags to customize each element of a web page.

Check it out for yourself: Open up a well-designed site in Chrome, right click, and select "Inspect Element." You’ll be able to get a look behind-the-scenes at how the site was coded. 

 

HTML Elements

HTML elements are individual components of your webpage that are made up of a start tag <example> and an end tag </example >.

Here’s an example of what a simple HTML page might look like:

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>Sample heading</h1>
<p>A sample paragraph would go here.</p>

</body>
</html>

 

Note the <html> tag at the very top.

This element specifies the language the webpage or document is written in. Without this tag your computer won’t know how to process all the code that follows it. It’s important to realize that browsers do not display the HTML tags, but they use them to render the content of the page.

 

The Basics

<body>
The visible part of the HTML document is between <body> and </body>.

Your body tag is the first element content tag that you can open after you’ve opened your initial html tag.

 

<head>
This tag is one of the content elements that can be opened within your body tag. You can vary the size of your headings and subheadings by specifying whether you want <h1>, <h2>, <h3>, <h4>, <h5>, or <h6>.

<h1> defines the most important heading. <h6> defines the least important heading.

 

<p>
Used for formatting paragraphs of text. Just to be clear, the paragraph tag defaults to which ever style you already have assigned to your style sheet.

 

<a>
HTML links are defined with the <a> tag.

For example:
<a href="hueandtonecreative.com">You would put the text you want to be hyperlinked here. </a>

 

<img>
To incorporate an image into your page you’ll want to use an <img> tag -- the source file (src), alternative text (alt), width, and height can all be defined.

Example here:
<img src="hueandtonelogo.jpg" alt="hueandtonecreative.com" width="210" height="210">


Always remember to close your tags. Anytime you open a tag <example> you should close it after you’ve defined all your content </example>. 


Style Elements

<style>
Your style tags help you specify which colors and fonts are used for your headings, paragraphs, etc.

 

Here’s a few examples:

You could format size like this:

<h1 style="font-size:300%;">This is a heading</h1>
 

Color like this:

<h1 style="color:blue">This is where the text you want stylized goes. </h1>
 

Or both like this:

<h1 style="color:blue;"font-size:300%">This is where the text you want stylized goes.</h1>

 

Formatting Elements

Formatting assist with the aesthetics of your webpage, kind of like the style elements we mentioned earlier. The main difference between the two is that your formatting elements deal with text effects.

<b>
Used to make specific text bold.

<i>
Used for italicizing text.

<marked>
Highlights text.

<small>
Makes specific text smaller. 


Helpful Resources

Learning HTML isn’t the easiest task, so here are a few tools to help you become a pro in no time!

  • Treehouse is an online coding school specializing in front end web development, JavaScript, IOS, and Python. Learn from over 1,000 video tutorials, quizzes, and coding challenges. There’s a free trial for first time users.

  • Lynda is a digital learning library where you can learn skills for business, design, marketing, and web development.

  • HTML Dog offers free online tutorials in HTML, CSS, and JavaScript. There are specific tutorials for every level of learning: beginner, intermediate, and advanced.

 

One last note…

Becoming proficient in HTML takes time and consistent practice, so don’t get discouraged if it doesn’t come easy to you! Be patient and try to set obtainable goals for yourself.


Web and Graphic Design in Greensboro and beyond.

Clueless on how to build a website or create a logo? We’ve got you covered! Eye catching landing pages that help reel in leads to business cards that leave a lasting impression, Hue & Tone Creative is here for all of your marketing needs.