<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blog &#8211; Message Hero</title>
	<atom:link href="https://www.messagehero.com/category/blog/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.messagehero.com</link>
	<description>Reach your customers instantly by text message</description>
	<lastBuildDate>Thu, 14 May 2015 09:48:54 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>NEW Feature: Send SMS from your site or software with our SMS API!</title>
		<link>https://www.messagehero.com/new-feature-sms-api/</link>
		
		<dc:creator><![CDATA[Message Hero]]></dc:creator>
		<pubDate>Thu, 14 May 2015 08:40:16 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://www.messagehero.com/?p=5827</guid>

					<description><![CDATA[<p><img width="146" height="146" src="https://www.messagehero.com/wp-content/uploads/2015/05/API-146x146.gif" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://www.messagehero.com/wp-content/uploads/2015/05/API-146x146.gif 146w, https://www.messagehero.com/wp-content/uploads/2015/05/API-150x150.gif 150w, https://www.messagehero.com/wp-content/uploads/2015/05/API-300x300.gif 300w, https://www.messagehero.com/wp-content/uploads/2015/05/API-50x50.gif 50w, https://www.messagehero.com/wp-content/uploads/2015/05/API-80x80.gif 80w, https://www.messagehero.com/wp-content/uploads/2015/05/API-90x90.gif 90w, https://www.messagehero.com/wp-content/uploads/2015/05/API-70x70.gif 70w" sizes="(max-width: 146px) 100vw, 146px" /></p>At Message Hero HQ, we are constantly working hard to create NEW cutting-edge functionality to enable you to contact your customers easily by SMS.  Check out our latest new features below!! 

Tweet @messagehero if you have any questions!!

<hr />
<h2>Message Hero's SMS API</h2>
We know that while SMS marketing is a low-cost way to reach all your customers, you may want to reach them in other ways, for instance when they make a purchase or booking on your website.  Enter Message Hero's new SMS API - a powerful, yet simple way for your business, with the help of your developers, to integrate SMS sending into your website, app or software.  Just like Message Hero it's free to use the API, there are no monthly fees or charges, just a simple cost per SMS.

<div class="lead"><img src="/wp-content/uploads/2015/05/API.gif" /></div>

You can connect to the Message Hero API and send SMS by completing three simple steps:

<h2>Step 1 - SIGNUP</h2>
The first step is to <a href="https://www.messagehero.com/Signup">signup for a free Message Hero account</a> and get it set up so you can use the API.  If you already use Message Hero, then this part is done!  Then, if you'd like to use a custom 'from' label, you just need to enter one on the Compose view.  And lastly, if you don't have credit, you'll need to <a href="https://www.messagehero.com/Topup">top up</a> so that you have credit to send your SMS.

<h2>Step 2 - AUTHENTICATE</h2>
Next, you'll need to call our API with your Message Hero account details to receive an authentication token as in this sample:
<pre>
<strong>jQuery example:</strong>
 
var token = '';       
var email = 'mhemail@domain.com';
var password = 'mhpassword';

$.ajax({
	url: 'https://www.messagehero.com/api/token',
	type: 'post',
	data: {
		email: email,
		password: password,
		grant_type: 'password'
	},
	success: function (response) {
		if (response.access_token != undefined) {
			token = response.access_token;
		}
		else
		{
			alert(response.responseMessage);
		}
	},
	error: function($xhr) {
		alert($.parseJSON($xhr.responseText)
			.ResponseMessage);
	}
});

</pre>

<h2>Step 3 - SEND</h2>
Lastly you can call our API via POST or GET methods to send an SMS (POST sample below).  You can use a custom 'from' label and you'll receive a response code from our API so you know the status of your SMS.
<pre>
<strong>jQuery example:</strong><br>
var message = JSON.stringify({
	msisdn: '35386XXXXXXX',
	userFromTag: 'Business',
	messageText: 'Your Message Text'
});

$.ajax({
	url: 'https://www.messagehero.com/api/message/send',
	type: 'post',
	contentType: 'application/json',
	dataType: 'json',
	headers: {
		Authorization: 'bearer ' + token
	},
	data: message,
	success: function (response) {
         alert(response.responseMessage);
         alert(response.responseCodeId);
    },
    error: function($xhr) {
        alert($.parseJSON($xhr.responseText)
            .ResponseMessage);
         alert($.parseJSON($xhr.responseText)
            .ResponseCodeId);
    }
});
</pre>

<a href="/sms-api">For complete information on our new SMS API, please click here.</a>
<hr>

<h2>Google Chrome App</h2>
<div class="lead"><img src="/wp-content/uploads/2015/05/Chrome_App_Icon.gif" /></div>
We are always looking at ways to make Message Hero more user friendly, so we’ve created a Google Chrome App that can add Message Hero to your Google Chrome web browser for free. Customers can  use Message Hero’s Chrome App as a shortcut to enter their account or go to the Message Hero’s website.
<br />
<a href="https://chrome.google.com/webstore/detail/message-hero/aflkeaphbegeloblajhkmjnhlimflkcj?hl=en-GB&utm_source=chrome-ntp-launcher">Click here to get Message Hero’s Google Chrome App</a>

<hr>

<h2>Feedback</h2>
We are constantly developing new features for Message Hero, based on feedback from our users, so we can make the whole process of sending and receiving SMS as seamless and easy as possible.

If you have any features you would like to see integrated into Message Hero in the future, <a href="/get-in-touch">please get in touch and let us know</a>.

]]></description>
										<content:encoded><![CDATA[<p><img width="146" height="146" src="https://www.messagehero.com/wp-content/uploads/2015/05/API-146x146.gif" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://www.messagehero.com/wp-content/uploads/2015/05/API-146x146.gif 146w, https://www.messagehero.com/wp-content/uploads/2015/05/API-150x150.gif 150w, https://www.messagehero.com/wp-content/uploads/2015/05/API-300x300.gif 300w, https://www.messagehero.com/wp-content/uploads/2015/05/API-50x50.gif 50w, https://www.messagehero.com/wp-content/uploads/2015/05/API-80x80.gif 80w, https://www.messagehero.com/wp-content/uploads/2015/05/API-90x90.gif 90w, https://www.messagehero.com/wp-content/uploads/2015/05/API-70x70.gif 70w" sizes="(max-width: 146px) 100vw, 146px" /></p>At Message Hero HQ, we are constantly working hard to create NEW cutting-edge functionality to enable you to contact your customers easily by SMS.  Check out our latest new features below!! 

Tweet @messagehero if you have any questions!!

<hr />
<h2>Message Hero's SMS API</h2>
We know that while SMS marketing is a low-cost way to reach all your customers, you may want to reach them in other ways, for instance when they make a purchase or booking on your website.  Enter Message Hero's new SMS API - a powerful, yet simple way for your business, with the help of your developers, to integrate SMS sending into your website, app or software.  Just like Message Hero it's free to use the API, there are no monthly fees or charges, just a simple cost per SMS.

<div class="lead"><img src="/wp-content/uploads/2015/05/API.gif" /></div>

You can connect to the Message Hero API and send SMS by completing three simple steps:

<h2>Step 1 - SIGNUP</h2>
The first step is to <a href="https://www.messagehero.com/Signup">signup for a free Message Hero account</a> and get it set up so you can use the API.  If you already use Message Hero, then this part is done!  Then, if you'd like to use a custom 'from' label, you just need to enter one on the Compose view.  And lastly, if you don't have credit, you'll need to <a href="https://www.messagehero.com/Topup">top up</a> so that you have credit to send your SMS.

<h2>Step 2 - AUTHENTICATE</h2>
Next, you'll need to call our API with your Message Hero account details to receive an authentication token as in this sample:
<pre>
<strong>jQuery example:</strong>
 
var token = '';       
var email = 'mhemail@domain.com';
var password = 'mhpassword';

$.ajax({
	url: 'https://www.messagehero.com/api/token',
	type: 'post',
	data: {
		email: email,
		password: password,
		grant_type: 'password'
	},
	success: function (response) {
		if (response.access_token != undefined) {
			token = response.access_token;
		}
		else
		{
			alert(response.responseMessage);
		}
	},
	error: function($xhr) {
		alert($.parseJSON($xhr.responseText)
			.ResponseMessage);
	}
});

</pre>

<h2>Step 3 - SEND</h2>
Lastly you can call our API via POST or GET methods to send an SMS (POST sample below).  You can use a custom 'from' label and you'll receive a response code from our API so you know the status of your SMS.
<pre>
<strong>jQuery example:</strong><br>
var message = JSON.stringify({
	msisdn: '35386XXXXXXX',
	userFromTag: 'Business',
	messageText: 'Your Message Text'
});

$.ajax({
	url: 'https://www.messagehero.com/api/message/send',
	type: 'post',
	contentType: 'application/json',
	dataType: 'json',
	headers: {
		Authorization: 'bearer ' + token
	},
	data: message,
	success: function (response) {
         alert(response.responseMessage);
         alert(response.responseCodeId);
    },
    error: function($xhr) {
        alert($.parseJSON($xhr.responseText)
            .ResponseMessage);
         alert($.parseJSON($xhr.responseText)
            .ResponseCodeId);
    }
});
</pre>

<a href="/sms-api">For complete information on our new SMS API, please click here.</a>
<hr>

<h2>Google Chrome App</h2>
<div class="lead"><img src="/wp-content/uploads/2015/05/Chrome_App_Icon.gif" /></div>
We are always looking at ways to make Message Hero more user friendly, so we’ve created a Google Chrome App that can add Message Hero to your Google Chrome web browser for free. Customers can  use Message Hero’s Chrome App as a shortcut to enter their account or go to the Message Hero’s website.
<br />
<a href="https://chrome.google.com/webstore/detail/message-hero/aflkeaphbegeloblajhkmjnhlimflkcj?hl=en-GB&utm_source=chrome-ntp-launcher">Click here to get Message Hero’s Google Chrome App</a>

<hr>

<h2>Feedback</h2>
We are constantly developing new features for Message Hero, based on feedback from our users, so we can make the whole process of sending and receiving SMS as seamless and easy as possible.

If you have any features you would like to see integrated into Message Hero in the future, <a href="/get-in-touch">please get in touch and let us know</a>.

]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>NEW Feature: Create SMS Templates in Message Hero!</title>
		<link>https://www.messagehero.com/new-feature-sms-templates/</link>
		
		<dc:creator><![CDATA[Message Hero]]></dc:creator>
		<pubDate>Thu, 02 Apr 2015 09:20:49 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<guid isPermaLink="false">https://www.messagehero.com/?p=5634</guid>

					<description><![CDATA[<p><img width="255" height="146" src="https://www.messagehero.com/wp-content/uploads/2015/04/MH_Templates_Step2-255x146.gif" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://www.messagehero.com/wp-content/uploads/2015/04/MH_Templates_Step2-255x146.gif 255w, https://www.messagehero.com/wp-content/uploads/2015/04/MH_Templates_Step2-300x171.gif 300w, https://www.messagehero.com/wp-content/uploads/2015/04/MH_Templates_Step2-50x28.gif 50w, https://www.messagehero.com/wp-content/uploads/2015/04/MH_Templates_Step2-122x70.gif 122w" sizes="(max-width: 255px) 100vw, 255px" /></p>Does your business send out a large number of relatively similar SMS messages every day, week or month? If so, you will be excited to hear that Message Hero has just released new functionality to our web interface, that now allows users to create message templates.
<br />
Message templates are quick and easy to use and are a great way for businesses to maintain a level of consistency, avoid spelling or grammar errors and most importantly save time!
<br />
So what are the best messages to create into a SMS message template? Start off with message types that are likely to be sent out to your customers or members in a standardised format such as appointment reminders, marketing campaigns, alerts and notifications. 
<br />
<hr>
<br />
Take a look at the three simple steps below, to create your first SMS message template:
<br />
<hr>
<h2>Step 1</h2><br />
<em>To create a message template, go to 'Compose' and click on ‘Create a Template’ above the message field.  This will bring you to the 'Templates' view.</em>
<img src="/wp-content/uploads/2015/04/MH_Templates_Step1.gif" alt="Click create a template to create your sms message template" />
<br />
<h2>Step 2</h2><br />
<em>In the templates view, click on ‘Create new Template’, then enter in the template name (30 character limit) and message text and press ‘Save’.</em>
<img src="/wp-content/uploads/2015/04/MH_Templates_Step2.gif" alt="Enter a template name and message text" />
<br />
<h2>Step 3</h2><br />
<em>Now when you want to use one of your saved templates in the 'Compose' view, you can choose one from the ‘Use a Template’ drop down menu above the message field.  This will place your template text in the message field - you can make any changes you need to and then send!</em>
<img src="/wp-content/uploads/2015/04/MH_Templates_Step3.gif" alt="Choose your sms message template from the dropdown" />
<br />
<hr>
<br />
This functionality improvement was based on your feedback, so thanks for letting us know your thoughts. If you’d like to request any other features, <a href="get-in-touch">please get in touch</a> and we’ll be sure to consider them for our next release! 
]]></description>
										<content:encoded><![CDATA[<p><img width="255" height="146" src="https://www.messagehero.com/wp-content/uploads/2015/04/MH_Templates_Step2-255x146.gif" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://www.messagehero.com/wp-content/uploads/2015/04/MH_Templates_Step2-255x146.gif 255w, https://www.messagehero.com/wp-content/uploads/2015/04/MH_Templates_Step2-300x171.gif 300w, https://www.messagehero.com/wp-content/uploads/2015/04/MH_Templates_Step2-50x28.gif 50w, https://www.messagehero.com/wp-content/uploads/2015/04/MH_Templates_Step2-122x70.gif 122w" sizes="(max-width: 255px) 100vw, 255px" /></p>Does your business send out a large number of relatively similar SMS messages every day, week or month? If so, you will be excited to hear that Message Hero has just released new functionality to our web interface, that now allows users to create message templates.
<br />
Message templates are quick and easy to use and are a great way for businesses to maintain a level of consistency, avoid spelling or grammar errors and most importantly save time!
<br />
So what are the best messages to create into a SMS message template? Start off with message types that are likely to be sent out to your customers or members in a standardised format such as appointment reminders, marketing campaigns, alerts and notifications. 
<br />
<hr>
<br />
Take a look at the three simple steps below, to create your first SMS message template:
<br />
<hr>
<h2>Step 1</h2><br />
<em>To create a message template, go to 'Compose' and click on ‘Create a Template’ above the message field.  This will bring you to the 'Templates' view.</em>
<img src="/wp-content/uploads/2015/04/MH_Templates_Step1.gif" alt="Click create a template to create your sms message template" />
<br />
<h2>Step 2</h2><br />
<em>In the templates view, click on ‘Create new Template’, then enter in the template name (30 character limit) and message text and press ‘Save’.</em>
<img src="/wp-content/uploads/2015/04/MH_Templates_Step2.gif" alt="Enter a template name and message text" />
<br />
<h2>Step 3</h2><br />
<em>Now when you want to use one of your saved templates in the 'Compose' view, you can choose one from the ‘Use a Template’ drop down menu above the message field.  This will place your template text in the message field - you can make any changes you need to and then send!</em>
<img src="/wp-content/uploads/2015/04/MH_Templates_Step3.gif" alt="Choose your sms message template from the dropdown" />
<br />
<hr>
<br />
This functionality improvement was based on your feedback, so thanks for letting us know your thoughts. If you’d like to request any other features, <a href="get-in-touch">please get in touch</a> and we’ll be sure to consider them for our next release! 
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>New features for February 2015!</title>
		<link>https://www.messagehero.com/new-features-for-february-2015/</link>
		
		<dc:creator><![CDATA[Message Hero]]></dc:creator>
		<pubDate>Thu, 19 Feb 2015 10:57:46 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<guid isPermaLink="false">http://www.messagehero.com/?p=5122</guid>

					<description><![CDATA[<p><img width="247" height="146" src="https://www.messagehero.com/wp-content/uploads/2015/02/Receive_Laptop-247x146.gif" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://www.messagehero.com/wp-content/uploads/2015/02/Receive_Laptop-247x146.gif 247w, https://www.messagehero.com/wp-content/uploads/2015/02/Receive_Laptop-300x177.gif 300w, https://www.messagehero.com/wp-content/uploads/2015/02/Receive_Laptop-1024x604.gif 1024w, https://www.messagehero.com/wp-content/uploads/2015/02/Receive_Laptop-50x29.gif 50w, https://www.messagehero.com/wp-content/uploads/2015/02/Receive_Laptop-118x70.gif 118w" sizes="(max-width: 247px) 100vw, 247px" /></p>At Message Hero HQ, we are constantly working to improve our product and website to enhance your experience as well as adding great new features to help you get the most out of your business SMS!
Well, we've just released a new version with some great improvements we think you're going to love!<br /><br />Want to have effortless two-way SMS communiactions with your customers? Check!  Want to get 200 free messages when you invite another business to use Message Hero? Check!  See below for our full list of new features.
<br />
Show us your excitement by Tweeting us <b>@messagehero</b><br />

<img src="/wp-content/uploads/2015/02/Receive_Laptop.gif" alt="Two Way SMS with Message Hero's Inbox" />
<h2>1. Receive SMS Replies to your Online Inbox with Smart Reply</h2>
Our new <b>Smart Reply</b> feature automatically detects replies to your sent SMS and displays them in your online Inbox, without the need for keywords or virtual numbers!  Just send texts and receive your replies - easy peasy!  You could offer 24/7 SMS customer support, get instant feedback, run mobile polls and surveys or simply make your customer communications more interactive.  Whatever your needs, this feature will change the way you look at SMS going forward.  Don't just broadcast - have a conversation!
<br />
<div class="alert alert_info"><i class="alert_icon icon-question"></i><div class="alert_desc"> Did you know? Setting your 'from' label to your own mobile phone number will allow you to receive replies to texts you send online direct to your handset? </div></div>
<br />
<h2>2. Invite a Business</h2>
We've introduced a promotion for all existing Message Hero customers to reward you for sharing!  Invite another business to use Message Hero and <b>we'll give you both a gift of 200 FREE MESSAGES</b>​ when they first top­up!!  <b>Just click the new 'Invite a Business' button on the left navigation bar in your Message Hero account.</b>
<center><img src="/wp-content/uploads/2015/01/MH_Invite.gif" alt="Invite a business to Message Hero and get 200 texts free each"></center>
<br />
<h2>3. Improved Customer Support Functionality</h2>
We have added functionality to allow Message Hero’s customer support team to help you upload contacts and make other specific changes to your account remotely.  We've also added a 'Business/Organisation' field to our signup form to allow our support team to give you specific tips based on your industry.<br /><br />While Message Hero can be a self-service tool, we pride ourselves on offering great customer support from helping you get set up to wording your marketing texts and everything in between.
<br />
<h2>4. User Interface Improvements</h2>
We are always looking at ways to make Message Hero more user-friendly, so we've updated our interface to help make it clearer:
<ul class="list">
<li>Clearer message counter: We've added styling to make it clear that you are moving into a multi-part message when you are sending long messages.</li>
<li>Opt-Ins and Opt-Outs: Both are now automatically shown by most recent.</li>
<li>Clearer 'Message Sent' feedback.  Now when you send or schedule a message, we'll show you a large notification so it's more obvious your send has been successful!</li>
</ul>
<br />
<h2>5. Bug Fixes and General Updates</h2>
While our software always goes through rigorous quality testing, some little bugs can pop up from time to time, so like everyone else we clear up any issues reported every time we release a new version of Message Hero!  We've also made more technical tweaks behind the scenes to ensure your SMS are sent and received in the most efficient way possible!
<hr>
<h2>Feedback</h2>
Many of these improvements were based on your feedback, so thanks for letting us know your thoughts.  If you'd like to request any other features, <a href="../get-in-touch/">please get in touch</a> and we'll be sure to consider them for our next release!]]></description>
										<content:encoded><![CDATA[<p><img width="247" height="146" src="https://www.messagehero.com/wp-content/uploads/2015/02/Receive_Laptop-247x146.gif" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://www.messagehero.com/wp-content/uploads/2015/02/Receive_Laptop-247x146.gif 247w, https://www.messagehero.com/wp-content/uploads/2015/02/Receive_Laptop-300x177.gif 300w, https://www.messagehero.com/wp-content/uploads/2015/02/Receive_Laptop-1024x604.gif 1024w, https://www.messagehero.com/wp-content/uploads/2015/02/Receive_Laptop-50x29.gif 50w, https://www.messagehero.com/wp-content/uploads/2015/02/Receive_Laptop-118x70.gif 118w" sizes="(max-width: 247px) 100vw, 247px" /></p>At Message Hero HQ, we are constantly working to improve our product and website to enhance your experience as well as adding great new features to help you get the most out of your business SMS!
Well, we've just released a new version with some great improvements we think you're going to love!<br /><br />Want to have effortless two-way SMS communiactions with your customers? Check!  Want to get 200 free messages when you invite another business to use Message Hero? Check!  See below for our full list of new features.
<br />
Show us your excitement by Tweeting us <b>@messagehero</b><br />

<img src="/wp-content/uploads/2015/02/Receive_Laptop.gif" alt="Two Way SMS with Message Hero's Inbox" />
<h2>1. Receive SMS Replies to your Online Inbox with Smart Reply</h2>
Our new <b>Smart Reply</b> feature automatically detects replies to your sent SMS and displays them in your online Inbox, without the need for keywords or virtual numbers!  Just send texts and receive your replies - easy peasy!  You could offer 24/7 SMS customer support, get instant feedback, run mobile polls and surveys or simply make your customer communications more interactive.  Whatever your needs, this feature will change the way you look at SMS going forward.  Don't just broadcast - have a conversation!
<br />
<div class="alert alert_info"><i class="alert_icon icon-question"></i><div class="alert_desc"> Did you know? Setting your 'from' label to your own mobile phone number will allow you to receive replies to texts you send online direct to your handset? </div></div>
<br />
<h2>2. Invite a Business</h2>
We've introduced a promotion for all existing Message Hero customers to reward you for sharing!  Invite another business to use Message Hero and <b>we'll give you both a gift of 200 FREE MESSAGES</b>​ when they first top­up!!  <b>Just click the new 'Invite a Business' button on the left navigation bar in your Message Hero account.</b>
<center><img src="/wp-content/uploads/2015/01/MH_Invite.gif" alt="Invite a business to Message Hero and get 200 texts free each"></center>
<br />
<h2>3. Improved Customer Support Functionality</h2>
We have added functionality to allow Message Hero’s customer support team to help you upload contacts and make other specific changes to your account remotely.  We've also added a 'Business/Organisation' field to our signup form to allow our support team to give you specific tips based on your industry.<br /><br />While Message Hero can be a self-service tool, we pride ourselves on offering great customer support from helping you get set up to wording your marketing texts and everything in between.
<br />
<h2>4. User Interface Improvements</h2>
We are always looking at ways to make Message Hero more user-friendly, so we've updated our interface to help make it clearer:
<ul class="list">
<li>Clearer message counter: We've added styling to make it clear that you are moving into a multi-part message when you are sending long messages.</li>
<li>Opt-Ins and Opt-Outs: Both are now automatically shown by most recent.</li>
<li>Clearer 'Message Sent' feedback.  Now when you send or schedule a message, we'll show you a large notification so it's more obvious your send has been successful!</li>
</ul>
<br />
<h2>5. Bug Fixes and General Updates</h2>
While our software always goes through rigorous quality testing, some little bugs can pop up from time to time, so like everyone else we clear up any issues reported every time we release a new version of Message Hero!  We've also made more technical tweaks behind the scenes to ensure your SMS are sent and received in the most efficient way possible!
<hr>
<h2>Feedback</h2>
Many of these improvements were based on your feedback, so thanks for letting us know your thoughts.  If you'd like to request any other features, <a href="../get-in-touch/">please get in touch</a> and we'll be sure to consider them for our next release!]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to upload your Android phone contacts to Message Hero using Gmail</title>
		<link>https://www.messagehero.com/how-to-upload-your-android-phone-contacts-to-message-hero-using-gmail/</link>
		
		<dc:creator><![CDATA[Message Hero]]></dc:creator>
		<pubDate>Tue, 13 Jan 2015 15:09:07 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Help & Tips]]></category>
		<guid isPermaLink="false">http://www.messagehero.com/?p=4864</guid>

					<description><![CDATA[<p><img width="260" height="136" src="https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step8-260x136.gif" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step8-260x136.gif 260w, https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step8-300x157.gif 300w, https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step8-50x26.gif 50w, https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step8-133x70.gif 133w" sizes="(max-width: 260px) 100vw, 260px" /></p>Why not make life easier on yourself by following the steps below to easily upload business contacts from your Android phone to Message Hero?

<h2>Step 1</h2>
On your Android phone go into settings and click on ‘Accounts and Sync’. Then under the heading ‘auto-sync’ click into the gmail account you want to upload your contacts to and press ‘sync contacts’.

<em><strong>NOTE:</strong> Step 1 might vary depending on your Android device.</em>

Once you have all your contacts uploaded from your Android phone to your Gmail account you can then export your contacts to Message Hero. This is a very quick and easy way to export Gmail contacts into a CSV file. Follow the next nine steps to know how:

<h2>Step 2</h2>
Sign into your Gmail account.

<h2>Step 3</h2>
Click the ‘Mail’ icon at the top left hand corner of your Gmail where a drop-down menu will appear, then choose ‘contacts’. This will bring up your contact list.

<img src="https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step3.gif" alt="Upload Mobile Phone Contacts to Message Hero using Gmail Step 3" />

<h2>Step 4</h2>
Directly across from the ‘Contacts’ icon you will see a drop-down menu called ‘More’, click on this and select the ‘export’ option. Then choose whether you want to export all contacts or only one particular group.

<img src="https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step4.gif" alt="Upload Mobile Phone Contacts to Message Hero using Gmail Step 4" />

<h2>Step 5</h2>
Select the outlook CSV format (for importing into outlook or another application). Then click export. 

<img src="https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step5.gif" alt="Upload Mobile Phone Contacts to Message Hero using Gmail Step 5" />

<h2>Step 6</h2>
Click on the document that appears on your desktop (if not it will be in downloads), you will see all your contact information listed on the document. It is a good opportunity to add or update your contacts information at this stage and clean up the file by deleting columns that are not necessary. 

<img src="https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step6.gif" alt="Upload Mobile Phone Contacts to Message Hero using Gmail Step 6" />

<h2>Step 7</h2>
Select a location to save your file and save it in a CSV format, then click ok.

<h2>Step 8</h2>
Sign into your message hero account. 

<img src="https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step7.gif" alt="Upload Mobile Phone Contacts to Message Hero using Gmail Step 7" />

<h2>Step 9</h2>
Under the ‘contacts section’, click on ‘upload contacts’. Choose the file containing your contacts information that you just previously saved and click on upload.

<img src="https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step8.gif" alt="Upload Mobile Phone Contacts to Message Hero using Gmail Step 8" />

<h2>Step 10</h2>
From the ‘import to’ drop-down menu, select all contacts. Then click import contacts.

<img src="https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step10.gif" alt="Upload Mobile Phone Contacts to Message Hero using Gmail Step 10" />

Congratulations your contacts have been successfully imported to Message Hero!!]]></description>
										<content:encoded><![CDATA[<p><img width="260" height="136" src="https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step8-260x136.gif" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step8-260x136.gif 260w, https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step8-300x157.gif 300w, https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step8-50x26.gif 50w, https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step8-133x70.gif 133w" sizes="(max-width: 260px) 100vw, 260px" /></p>Why not make life easier on yourself by following the steps below to easily upload business contacts from your Android phone to Message Hero?

<h2>Step 1</h2>
On your Android phone go into settings and click on ‘Accounts and Sync’. Then under the heading ‘auto-sync’ click into the gmail account you want to upload your contacts to and press ‘sync contacts’.

<em><strong>NOTE:</strong> Step 1 might vary depending on your Android device.</em>

Once you have all your contacts uploaded from your Android phone to your Gmail account you can then export your contacts to Message Hero. This is a very quick and easy way to export Gmail contacts into a CSV file. Follow the next nine steps to know how:

<h2>Step 2</h2>
Sign into your Gmail account.

<h2>Step 3</h2>
Click the ‘Mail’ icon at the top left hand corner of your Gmail where a drop-down menu will appear, then choose ‘contacts’. This will bring up your contact list.

<img src="https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step3.gif" alt="Upload Mobile Phone Contacts to Message Hero using Gmail Step 3" />

<h2>Step 4</h2>
Directly across from the ‘Contacts’ icon you will see a drop-down menu called ‘More’, click on this and select the ‘export’ option. Then choose whether you want to export all contacts or only one particular group.

<img src="https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step4.gif" alt="Upload Mobile Phone Contacts to Message Hero using Gmail Step 4" />

<h2>Step 5</h2>
Select the outlook CSV format (for importing into outlook or another application). Then click export. 

<img src="https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step5.gif" alt="Upload Mobile Phone Contacts to Message Hero using Gmail Step 5" />

<h2>Step 6</h2>
Click on the document that appears on your desktop (if not it will be in downloads), you will see all your contact information listed on the document. It is a good opportunity to add or update your contacts information at this stage and clean up the file by deleting columns that are not necessary. 

<img src="https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step6.gif" alt="Upload Mobile Phone Contacts to Message Hero using Gmail Step 6" />

<h2>Step 7</h2>
Select a location to save your file and save it in a CSV format, then click ok.

<h2>Step 8</h2>
Sign into your message hero account. 

<img src="https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step7.gif" alt="Upload Mobile Phone Contacts to Message Hero using Gmail Step 7" />

<h2>Step 9</h2>
Under the ‘contacts section’, click on ‘upload contacts’. Choose the file containing your contacts information that you just previously saved and click on upload.

<img src="https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step8.gif" alt="Upload Mobile Phone Contacts to Message Hero using Gmail Step 8" />

<h2>Step 10</h2>
From the ‘import to’ drop-down menu, select all contacts. Then click import contacts.

<img src="https://www.messagehero.com/wp-content/uploads/2015/01/MH_Gmail_Step10.gif" alt="Upload Mobile Phone Contacts to Message Hero using Gmail Step 10" />

Congratulations your contacts have been successfully imported to Message Hero!!]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>5 non-marketing ways to use business SMS</title>
		<link>https://www.messagehero.com/5-non-marketing-text-message-uses-to-boost-your-business/</link>
		
		<dc:creator><![CDATA[Message Hero]]></dc:creator>
		<pubDate>Mon, 03 Nov 2014 15:58:18 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[News]]></category>
		<guid isPermaLink="false">http://www.messagehero.com/?p=4712</guid>

					<description><![CDATA[<p><img width="254" height="146" src="https://www.messagehero.com/wp-content/uploads/2014/11/Blog_5NonMarketing-254x146.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://www.messagehero.com/wp-content/uploads/2014/11/Blog_5NonMarketing-254x146.jpg 254w, https://www.messagehero.com/wp-content/uploads/2014/11/Blog_5NonMarketing-300x172.jpg 300w, https://www.messagehero.com/wp-content/uploads/2014/11/Blog_5NonMarketing-50x28.jpg 50w, https://www.messagehero.com/wp-content/uploads/2014/11/Blog_5NonMarketing-121x70.jpg 121w, https://www.messagehero.com/wp-content/uploads/2014/11/Blog_5NonMarketing.jpg 870w" sizes="(max-width: 254px) 100vw, 254px" /></p><p>Lots of businesses send bulk text messages online as a core part of their marketing plan - it's a low-cost way to send deals and special offers directly to your customers' phones. However, direct marketing is just one use for group text messaging. There are a variety of other uses for text messaging that can be help to keep your customers or members informed and help your business to run more efficiently.</p>
<p><img src="https://www.messagehero.com/wp-content/uploads/2014/11/Blog_5NonMarketing.jpg" alt="five non marketing text message uses to boost business" width="870" height="500" /></p>
<h2>Operational News &amp; Information</h2>
<p>You may need to send out operational information e.g. opening/closing times, class locations, enrollment info etc. It's always a good idea to keep your customers in the loop regarding any changes to your business operations that may affect them.</p>
<h2>Last Minute or Urgent Notices</h2>
<p>No matter how well you plan, there can sometimes be circumstances out of your control that will throw a spanner in the works. Maybe a speaker at your event has dropped out? Perhaps you are a golf club and you need to inform your members the course will be closed due to bad weather. You may run a fitness club and need to rearrange a training session. Whatever the case, texting your customers or members is a great way to instantly inform your contacts of last minute or urgent changes.</p>
<h2>Reminders</h2>
<p>The modern world is an increasingly busy place with a multitude of distractions. If your business works on a booking basis, it's always a good idea to send an SMS reminder to your customers for their appointment or booking. Usually a text the day before is the best idea, to allow them time to reorganise things to make sure they can make their booking. You can ask your customer to let you know in advance if they can't make their booking and also offer them an easy way to book a different time. Then you can free up the slot for another customer and limit the potential loss of a no-show.</p>
<h2>Fixtures &amp; Results</h2>
<p>If you run a sports club, it's a nice idea to send fixture information and recent results out periodically to keep your members in the loop and reinforce the community atmosphere at your club.</p>
<h2>Two Way Texting &amp; Competitions</h2>
<p>Another great way to communicate with your customers is to use a keyword - a short word unique to your business that your customers can text to send messages to you e.g. if you run a car repair shop called Top Motor, you could choose the keyword TOPMOTOR. Every Message Hero account comes with one free keyword. To send you a message, your customers simply need to text your keyword + their message text to 51772 <em><strong>e.g. TOPMOTOR Answer to 51772</strong></em>. This allows you to interact in two-way texting with your customers. You could also run mobile competitions where your customers can enter via text - all texts will be viewable in your Message Hero Inbox so you can choose a winner from the correct entrants. You can set an auto-reply message for your keyword and if you would like multiple SMS keywords, this can be arranged, <a href="../get-in-touch/">please get in touch.</a></p>
<p>Hopefully this article will give you more ideas for how you can use online text messages to interact in different ways with your customers and boost your business as a result!</p>
<hr />
<center>
<h2>Try Message Hero Free</h2>
<p>Don't have a Message Hero account yet? No Problem! Every Message Hero account comes with 20 messages free so you can try before you buy.</p>
<p>[do action="signup-ok"]SIGN UP & TRY FREE[/do]</p>
</center>
<hr />
]]></description>
										<content:encoded><![CDATA[<p><img width="254" height="146" src="https://www.messagehero.com/wp-content/uploads/2014/11/Blog_5NonMarketing-254x146.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://www.messagehero.com/wp-content/uploads/2014/11/Blog_5NonMarketing-254x146.jpg 254w, https://www.messagehero.com/wp-content/uploads/2014/11/Blog_5NonMarketing-300x172.jpg 300w, https://www.messagehero.com/wp-content/uploads/2014/11/Blog_5NonMarketing-50x28.jpg 50w, https://www.messagehero.com/wp-content/uploads/2014/11/Blog_5NonMarketing-121x70.jpg 121w, https://www.messagehero.com/wp-content/uploads/2014/11/Blog_5NonMarketing.jpg 870w" sizes="(max-width: 254px) 100vw, 254px" /></p><p>Lots of businesses send bulk text messages online as a core part of their marketing plan - it's a low-cost way to send deals and special offers directly to your customers' phones. However, direct marketing is just one use for group text messaging. There are a variety of other uses for text messaging that can be help to keep your customers or members informed and help your business to run more efficiently.</p>
<p><img src="https://www.messagehero.com/wp-content/uploads/2014/11/Blog_5NonMarketing.jpg" alt="five non marketing text message uses to boost business" width="870" height="500" /></p>
<h2>Operational News &amp; Information</h2>
<p>You may need to send out operational information e.g. opening/closing times, class locations, enrollment info etc. It's always a good idea to keep your customers in the loop regarding any changes to your business operations that may affect them.</p>
<h2>Last Minute or Urgent Notices</h2>
<p>No matter how well you plan, there can sometimes be circumstances out of your control that will throw a spanner in the works. Maybe a speaker at your event has dropped out? Perhaps you are a golf club and you need to inform your members the course will be closed due to bad weather. You may run a fitness club and need to rearrange a training session. Whatever the case, texting your customers or members is a great way to instantly inform your contacts of last minute or urgent changes.</p>
<h2>Reminders</h2>
<p>The modern world is an increasingly busy place with a multitude of distractions. If your business works on a booking basis, it's always a good idea to send an SMS reminder to your customers for their appointment or booking. Usually a text the day before is the best idea, to allow them time to reorganise things to make sure they can make their booking. You can ask your customer to let you know in advance if they can't make their booking and also offer them an easy way to book a different time. Then you can free up the slot for another customer and limit the potential loss of a no-show.</p>
<h2>Fixtures &amp; Results</h2>
<p>If you run a sports club, it's a nice idea to send fixture information and recent results out periodically to keep your members in the loop and reinforce the community atmosphere at your club.</p>
<h2>Two Way Texting &amp; Competitions</h2>
<p>Another great way to communicate with your customers is to use a keyword - a short word unique to your business that your customers can text to send messages to you e.g. if you run a car repair shop called Top Motor, you could choose the keyword TOPMOTOR. Every Message Hero account comes with one free keyword. To send you a message, your customers simply need to text your keyword + their message text to 51772 <em><strong>e.g. TOPMOTOR Answer to 51772</strong></em>. This allows you to interact in two-way texting with your customers. You could also run mobile competitions where your customers can enter via text - all texts will be viewable in your Message Hero Inbox so you can choose a winner from the correct entrants. You can set an auto-reply message for your keyword and if you would like multiple SMS keywords, this can be arranged, <a href="../get-in-touch/">please get in touch.</a></p>
<p>Hopefully this article will give you more ideas for how you can use online text messages to interact in different ways with your customers and boost your business as a result!</p>
<hr />
<center>
<h2>Try Message Hero Free</h2>
<p>Don't have a Message Hero account yet? No Problem! Every Message Hero account comes with 20 messages free so you can try before you buy.</p>
<p>[do action="signup-ok"]SIGN UP & TRY FREE[/do]</p>
</center>
<hr />
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Send SMS Online To Get More Bookings, Walk-Ins And Return Visits</title>
		<link>https://www.messagehero.com/send-sms-online-to-get-more-bookings-walk-ins-and-return-visits/</link>
		
		<dc:creator><![CDATA[Message Hero]]></dc:creator>
		<pubDate>Mon, 06 Oct 2014 09:51:25 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Help & Tips]]></category>
		<guid isPermaLink="false">http://www.messagehero.com/?p=4623</guid>

					<description><![CDATA[<p><img width="254" height="146" src="https://www.messagehero.com/wp-content/uploads/2014/10/WalkIns-254x146.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://www.messagehero.com/wp-content/uploads/2014/10/WalkIns-254x146.jpg 254w, https://www.messagehero.com/wp-content/uploads/2014/10/WalkIns-300x172.jpg 300w, https://www.messagehero.com/wp-content/uploads/2014/10/WalkIns-50x28.jpg 50w, https://www.messagehero.com/wp-content/uploads/2014/10/WalkIns-121x70.jpg 121w, https://www.messagehero.com/wp-content/uploads/2014/10/WalkIns.jpg 870w" sizes="(max-width: 254px) 100vw, 254px" /></p><p>When you run a business with physical locations such as a shop, café, restaurant or theater, you'll know that while you have plenty of loyal, regular customers, there can still be slow days. You can entice some new walk-ins using chalkboards, window stickers and other ads on your premises. You can also encourage return visits with discount vouchers and loyalty cards. Sending SMS text messages online using <a title="Message Hero Signup" href="https://www.messagehero.com/Signup/">Message Hero</a> is another great way to boost the chances of your customers returning.</p>
<p><img src="https://www.messagehero.com/wp-content/uploads/2014/10/WalkIns.jpg" alt="Send SMS Online To Get More Bookings, Walk-Ins And Return Visits" width="870" height="500" /></p>
<h2>How can sending text messages get me more bookings or walk-ins?</h2>
<p>1. <strong>Exclusive Special Offers.</strong> You can text your latest special offers, value discounts, seasonal sale information and lots more directly to your customer's phone's to prompt them to come to your premises. You can even text exclusive offers to people who sign up to your text marketing database. You can make them time sensitive i.e. This offer applies today only, if you want to entice your customers as soon as possible. You can text a special voucher code your customers can show to redeem their gift. If you have an online store, you can text a link to your special offer or discount code. True, you could do the same by email, but with email open rates coming in at around 20% vs 99% of text messages being read, it's a no-brainer.</p>
<p>2. <strong>New Products.</strong> If you have a new range of products or a seasonal special, let your customers know by SMS.</p>
<p>3. <strong>Event Promotion by Text Message.</strong> If you are planning an event on your premises and you want to increase attendance, texting the details to your customers with plenty of notice is a great idea. Maybe you can encourage bookings with an early bird rate? You can even send them a reminder closer to the event date. If you own a restaurant or a café and you are launching a new menu, let your customers know! There are various public holidays and events throughout the year that make great times to send out text messages to promote special events e.g. New Years, Valentines Day, Mid-Term breaks, Christmas Holidays etc. There's a good chance your customers will have time off on some of these occasions, so it's a good idea to let them know what you are offering - just remember to give plenty of notice if they are going to need a babysitter!</p>
<p>4. <strong>Reminders.</strong> If your business runs on an appointment basis, sending text message reminders is a great way of avoiding no-shows. If you offer pre-ordering of highly anticipated products, you can use text messages to let your customers know their order is in stock and ready for collection.</p>
<p><img class="alignnone size-full wp-image-4641" src="https://www.messagehero.com/wp-content/uploads/2014/10/SMS_Special_Offers.jpg" alt="SMS_Special_Offers" width="870" height="500" /></p>
<h2>6 benefits of text message marketing for dining and retail</h2>
<p>1. <strong>It's really cheap.</strong> You can try Message Hero for free, and once you are happy it'll only cost [CBC show="y" country="ie"]4.5c[/CBC][CBC show="n" country="ie"]3.3p[/CBC] per text message you send. Compared to other advertising budgets, that is a huge saving.</p>
<p>2. <strong>It's direct.</strong> With the rapid, near 100% reach of mobile phone technology, you can be sure your customers will be carrying their phones with them most of the time - meaning they'll see your message, wherever they are.</p>
<p>3. <strong>It's quick.</strong> If you are really busy, texting is one of the fastest ways for you to advertise. Texts are short, so they take very little time to type. You can also schedule messages to send at future dates with Message Hero. This means you can line texts up to send out over the next few weeks all at once, so you can focus on other things.</p>
<p>4. <strong>It's instant.</strong> Within seconds of sending your text, your customers will see it on their phone. This means you can include time-sensitive offers, or you can make urgent or last-minute announcements. Studies have also shown that the majority of text messages are read <em>within 3 minutes</em> of being received.</p>
<p>5. <strong>It's flexible.</strong> You don't have to book in your advertising or run it at a pre-defined time. You can send text messages when it suits you. Maybe you are having an event at the weekend or a public holiday is coming up and you want to get people's attention when they aren't in work. Texts can be sent any time - although it's not recommended to send texts late at night or early in the morning - you want your customers to be well rested!</p>
<p>6. <strong>It's requested.</strong> Text messages, like emails, are based on customer opt-ins i.e. your customers agree to sign up to receive offers from you. This means that the people receiving your messages are likely to respond to the offers in them. If customers aren't interested, they can simply opt-out of future communications as long as you have included opt-out information in your messages (which is obligatory for marketing messages). Message Hero automatically removes opted-out contacts from your account so you can guarantee you are being compliant with data protection regulations.</p>
<p><a title="SMS Marketing Guide" href="../support/guides/how-to-send-the-perfect-marketing-text-message/">For more tips on sending the perfect marketing text message, please read our free guide here</a></p>
<hr />
<center>
<h2>Try Message Hero To Send Online SMS Today</h2>
<p>With the bank holiday approaching, why not get together your customer contact information and give Message Hero a test? Each account is free and quick to set up and you'll have 20 free messages so you can try before you buy.</p>
[do action="signup-ok"]SIGNUP & TRY FREE[/do]
</center>
<hr />
]]></description>
										<content:encoded><![CDATA[<p><img width="254" height="146" src="https://www.messagehero.com/wp-content/uploads/2014/10/WalkIns-254x146.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://www.messagehero.com/wp-content/uploads/2014/10/WalkIns-254x146.jpg 254w, https://www.messagehero.com/wp-content/uploads/2014/10/WalkIns-300x172.jpg 300w, https://www.messagehero.com/wp-content/uploads/2014/10/WalkIns-50x28.jpg 50w, https://www.messagehero.com/wp-content/uploads/2014/10/WalkIns-121x70.jpg 121w, https://www.messagehero.com/wp-content/uploads/2014/10/WalkIns.jpg 870w" sizes="(max-width: 254px) 100vw, 254px" /></p><p>When you run a business with physical locations such as a shop, café, restaurant or theater, you'll know that while you have plenty of loyal, regular customers, there can still be slow days. You can entice some new walk-ins using chalkboards, window stickers and other ads on your premises. You can also encourage return visits with discount vouchers and loyalty cards. Sending SMS text messages online using <a title="Message Hero Signup" href="https://www.messagehero.com/Signup/">Message Hero</a> is another great way to boost the chances of your customers returning.</p>
<p><img src="https://www.messagehero.com/wp-content/uploads/2014/10/WalkIns.jpg" alt="Send SMS Online To Get More Bookings, Walk-Ins And Return Visits" width="870" height="500" /></p>
<h2>How can sending text messages get me more bookings or walk-ins?</h2>
<p>1. <strong>Exclusive Special Offers.</strong> You can text your latest special offers, value discounts, seasonal sale information and lots more directly to your customer's phone's to prompt them to come to your premises. You can even text exclusive offers to people who sign up to your text marketing database. You can make them time sensitive i.e. This offer applies today only, if you want to entice your customers as soon as possible. You can text a special voucher code your customers can show to redeem their gift. If you have an online store, you can text a link to your special offer or discount code. True, you could do the same by email, but with email open rates coming in at around 20% vs 99% of text messages being read, it's a no-brainer.</p>
<p>2. <strong>New Products.</strong> If you have a new range of products or a seasonal special, let your customers know by SMS.</p>
<p>3. <strong>Event Promotion by Text Message.</strong> If you are planning an event on your premises and you want to increase attendance, texting the details to your customers with plenty of notice is a great idea. Maybe you can encourage bookings with an early bird rate? You can even send them a reminder closer to the event date. If you own a restaurant or a café and you are launching a new menu, let your customers know! There are various public holidays and events throughout the year that make great times to send out text messages to promote special events e.g. New Years, Valentines Day, Mid-Term breaks, Christmas Holidays etc. There's a good chance your customers will have time off on some of these occasions, so it's a good idea to let them know what you are offering - just remember to give plenty of notice if they are going to need a babysitter!</p>
<p>4. <strong>Reminders.</strong> If your business runs on an appointment basis, sending text message reminders is a great way of avoiding no-shows. If you offer pre-ordering of highly anticipated products, you can use text messages to let your customers know their order is in stock and ready for collection.</p>
<p><img class="alignnone size-full wp-image-4641" src="https://www.messagehero.com/wp-content/uploads/2014/10/SMS_Special_Offers.jpg" alt="SMS_Special_Offers" width="870" height="500" /></p>
<h2>6 benefits of text message marketing for dining and retail</h2>
<p>1. <strong>It's really cheap.</strong> You can try Message Hero for free, and once you are happy it'll only cost [CBC show="y" country="ie"]4.5c[/CBC][CBC show="n" country="ie"]3.3p[/CBC] per text message you send. Compared to other advertising budgets, that is a huge saving.</p>
<p>2. <strong>It's direct.</strong> With the rapid, near 100% reach of mobile phone technology, you can be sure your customers will be carrying their phones with them most of the time - meaning they'll see your message, wherever they are.</p>
<p>3. <strong>It's quick.</strong> If you are really busy, texting is one of the fastest ways for you to advertise. Texts are short, so they take very little time to type. You can also schedule messages to send at future dates with Message Hero. This means you can line texts up to send out over the next few weeks all at once, so you can focus on other things.</p>
<p>4. <strong>It's instant.</strong> Within seconds of sending your text, your customers will see it on their phone. This means you can include time-sensitive offers, or you can make urgent or last-minute announcements. Studies have also shown that the majority of text messages are read <em>within 3 minutes</em> of being received.</p>
<p>5. <strong>It's flexible.</strong> You don't have to book in your advertising or run it at a pre-defined time. You can send text messages when it suits you. Maybe you are having an event at the weekend or a public holiday is coming up and you want to get people's attention when they aren't in work. Texts can be sent any time - although it's not recommended to send texts late at night or early in the morning - you want your customers to be well rested!</p>
<p>6. <strong>It's requested.</strong> Text messages, like emails, are based on customer opt-ins i.e. your customers agree to sign up to receive offers from you. This means that the people receiving your messages are likely to respond to the offers in them. If customers aren't interested, they can simply opt-out of future communications as long as you have included opt-out information in your messages (which is obligatory for marketing messages). Message Hero automatically removes opted-out contacts from your account so you can guarantee you are being compliant with data protection regulations.</p>
<p><a title="SMS Marketing Guide" href="../support/guides/how-to-send-the-perfect-marketing-text-message/">For more tips on sending the perfect marketing text message, please read our free guide here</a></p>
<hr />
<center>
<h2>Try Message Hero To Send Online SMS Today</h2>
<p>With the bank holiday approaching, why not get together your customer contact information and give Message Hero a test? Each account is free and quick to set up and you'll have 20 free messages so you can try before you buy.</p>
[do action="signup-ok"]SIGNUP & TRY FREE[/do]
</center>
<hr />
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>New website, new features, new price!</title>
		<link>https://www.messagehero.com/new-website-new-features-new-price/</link>
		
		<dc:creator><![CDATA[Message Hero]]></dc:creator>
		<pubDate>Thu, 11 Sep 2014 11:23:48 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[News]]></category>
		<guid isPermaLink="false">http://www.messagehero.com/?p=4586</guid>

					<description><![CDATA[<p><img width="254" height="146" src="https://www.messagehero.com/wp-content/uploads/2014/09/MH_Website-254x146.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://www.messagehero.com/wp-content/uploads/2014/09/MH_Website-254x146.jpg 254w, https://www.messagehero.com/wp-content/uploads/2014/09/MH_Website-300x172.jpg 300w, https://www.messagehero.com/wp-content/uploads/2014/09/MH_Website-50x28.jpg 50w, https://www.messagehero.com/wp-content/uploads/2014/09/MH_Website-121x70.jpg 121w, https://www.messagehero.com/wp-content/uploads/2014/09/MH_Website.jpg 870w" sizes="(max-width: 254px) 100vw, 254px" /></p><img src="https://www.messagehero.com/wp-content/uploads/2014/09/MH_Website.jpg" alt="Message Hero SMS Marketing Screenshot" width="870" height="500" />

It’s been a whirlwind few months at Message Hero HQ!  We’ve just launched our new website design and added some great new features to the app, as well as expanding to the United Kingdom and cutting our price, so it’s even better value for you!

<h2>NEW FEATURES</h2>

<h4>Improved Uploads</h4>
The ‘Upload Contacts’ feature has been improved to make it much easier to get your existing mobile marketing contacts uploaded.  You can upload .xls, .xlsx or .csv files - and our system is now much smarter - it can accept more number formats than before and automatically picks up duplicate phone numbers and existing contacts.

<h4>Compose Tour</h4>
For first time users or if you just need a quick refresher, we’ve added a step-by-step walkthrough to the ‘Compose’ section to help with sending your first message.

<img src="https://www.messagehero.com/wp-content/uploads/2014/09/Wizard.jpg" alt="Wizard" width="870" height="500" />

<h4>Flat-rate Pricing</h4>
Rather than lower cost text messages exclusively to high-volume customers, we decided to roll out a great new flat-rate low price for everyone.  Now, all your messages cost just 3.4c each in Ireland!

You can still try before you buy, no credit card required - the proof is in the pudding, after all!  So each new account comes pre-loaded with 20 free messages so you can send yourself sample text messages and see how they appear on your phone.  Your new account also comes with a free keyword, which your customers and members can text to join your marketing list.  You can set this up and test this on your free account too, all before you have spent a cent (or penny)!

When you are happy with Message Hero, you can just top up by choosing whichever message bundle suits your needs.  We have 4 message bundle options: 1,000 messages, 2,500 messages, 10,000 messages or 20,000 messages.  If you need to send higher volumes, please get in touch and we will organise this for you.

<h2>FEEDBACK</h2>

We are constantly developing new features for Message Hero, based on feedback from our users, so we can make the whole process as seamless and easy as possible.

If you have any features you would like to see integrated into Message Hero in the future, <a href="../get-in-touch/" title="Contact Us">please get in touch and let us know</a>.


]]></description>
										<content:encoded><![CDATA[<p><img width="254" height="146" src="https://www.messagehero.com/wp-content/uploads/2014/09/MH_Website-254x146.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://www.messagehero.com/wp-content/uploads/2014/09/MH_Website-254x146.jpg 254w, https://www.messagehero.com/wp-content/uploads/2014/09/MH_Website-300x172.jpg 300w, https://www.messagehero.com/wp-content/uploads/2014/09/MH_Website-50x28.jpg 50w, https://www.messagehero.com/wp-content/uploads/2014/09/MH_Website-121x70.jpg 121w, https://www.messagehero.com/wp-content/uploads/2014/09/MH_Website.jpg 870w" sizes="(max-width: 254px) 100vw, 254px" /></p><img src="https://www.messagehero.com/wp-content/uploads/2014/09/MH_Website.jpg" alt="Message Hero SMS Marketing Screenshot" width="870" height="500" />

It’s been a whirlwind few months at Message Hero HQ!  We’ve just launched our new website design and added some great new features to the app, as well as expanding to the United Kingdom and cutting our price, so it’s even better value for you!

<h2>NEW FEATURES</h2>

<h4>Improved Uploads</h4>
The ‘Upload Contacts’ feature has been improved to make it much easier to get your existing mobile marketing contacts uploaded.  You can upload .xls, .xlsx or .csv files - and our system is now much smarter - it can accept more number formats than before and automatically picks up duplicate phone numbers and existing contacts.

<h4>Compose Tour</h4>
For first time users or if you just need a quick refresher, we’ve added a step-by-step walkthrough to the ‘Compose’ section to help with sending your first message.

<img src="https://www.messagehero.com/wp-content/uploads/2014/09/Wizard.jpg" alt="Wizard" width="870" height="500" />

<h4>Flat-rate Pricing</h4>
Rather than lower cost text messages exclusively to high-volume customers, we decided to roll out a great new flat-rate low price for everyone.  Now, all your messages cost just 3.4c each in Ireland!

You can still try before you buy, no credit card required - the proof is in the pudding, after all!  So each new account comes pre-loaded with 20 free messages so you can send yourself sample text messages and see how they appear on your phone.  Your new account also comes with a free keyword, which your customers and members can text to join your marketing list.  You can set this up and test this on your free account too, all before you have spent a cent (or penny)!

When you are happy with Message Hero, you can just top up by choosing whichever message bundle suits your needs.  We have 4 message bundle options: 1,000 messages, 2,500 messages, 10,000 messages or 20,000 messages.  If you need to send higher volumes, please get in touch and we will organise this for you.

<h2>FEEDBACK</h2>

We are constantly developing new features for Message Hero, based on feedback from our users, so we can make the whole process as seamless and easy as possible.

If you have any features you would like to see integrated into Message Hero in the future, <a href="../get-in-touch/" title="Contact Us">please get in touch and let us know</a>.


]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Message Hero has launched it&#8217;s bulk SMS service in the UK</title>
		<link>https://www.messagehero.com/launched-bulk-sms-service-uk/</link>
		
		<dc:creator><![CDATA[Message Hero]]></dc:creator>
		<pubDate>Mon, 01 Sep 2014 10:15:58 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[News]]></category>
		<guid isPermaLink="false">http://www.messagehero.com/?p=4588</guid>

					<description><![CDATA[<p><img width="254" height="146" src="https://www.messagehero.com/wp-content/uploads/2014/09/UK_Launch-254x146.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://www.messagehero.com/wp-content/uploads/2014/09/UK_Launch-254x146.jpg 254w, https://www.messagehero.com/wp-content/uploads/2014/09/UK_Launch-300x172.jpg 300w, https://www.messagehero.com/wp-content/uploads/2014/09/UK_Launch-50x28.jpg 50w, https://www.messagehero.com/wp-content/uploads/2014/09/UK_Launch-121x70.jpg 121w, https://www.messagehero.com/wp-content/uploads/2014/09/UK_Launch.jpg 870w" sizes="(max-width: 254px) 100vw, 254px" /></p><img src="https://www.messagehero.com/wp-content/uploads/2014/09/UK_Launch.jpg" alt="UK_Launch" width="870" height="500" class="alignnone size-full wp-image-4594" />

Message Hero has been available to customers in Ireland for nearly a year now and we’re delighted to announce that we have now launched Message Hero for customers in the United Kingdom.  We have added a country selection dropdown menu to the signup form with a choice of Ireland and United Kingdom.

<h2>GREAT, LOW-PRICE TEXTING IN THE UK</h2>

Sending text messages with Message Hero in the UK is great value - <strong>just 3.3p per message</strong>!  You can choose from one of four message bundles when you top up: 1,000 messages, 2,500 messages, 10,000 messages or 20,000 messages.  Regardless of which bundle you choose, the cost per message will be the same, so you can just buy and use what you need – always at the best price!

<h2>TRY IT FREE TODAY</h2>

Each Message Hero account is free to set up, with no credit card required.  Each account comes with 20 free texts to try it out, as well as a free keyword, which your customers can text to join your marketing list or send you texts which will appear in your online text message Inbox.

So if you have customers or club members in the UK and you need an online tool for mobile marketing or text communications, why not try Message Hero free today?

[do action="signup-ok"]SIGN UP & TRY FREE[/do]]]></description>
										<content:encoded><![CDATA[<p><img width="254" height="146" src="https://www.messagehero.com/wp-content/uploads/2014/09/UK_Launch-254x146.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://www.messagehero.com/wp-content/uploads/2014/09/UK_Launch-254x146.jpg 254w, https://www.messagehero.com/wp-content/uploads/2014/09/UK_Launch-300x172.jpg 300w, https://www.messagehero.com/wp-content/uploads/2014/09/UK_Launch-50x28.jpg 50w, https://www.messagehero.com/wp-content/uploads/2014/09/UK_Launch-121x70.jpg 121w, https://www.messagehero.com/wp-content/uploads/2014/09/UK_Launch.jpg 870w" sizes="(max-width: 254px) 100vw, 254px" /></p><img src="https://www.messagehero.com/wp-content/uploads/2014/09/UK_Launch.jpg" alt="UK_Launch" width="870" height="500" class="alignnone size-full wp-image-4594" />

Message Hero has been available to customers in Ireland for nearly a year now and we’re delighted to announce that we have now launched Message Hero for customers in the United Kingdom.  We have added a country selection dropdown menu to the signup form with a choice of Ireland and United Kingdom.

<h2>GREAT, LOW-PRICE TEXTING IN THE UK</h2>

Sending text messages with Message Hero in the UK is great value - <strong>just 3.3p per message</strong>!  You can choose from one of four message bundles when you top up: 1,000 messages, 2,500 messages, 10,000 messages or 20,000 messages.  Regardless of which bundle you choose, the cost per message will be the same, so you can just buy and use what you need – always at the best price!

<h2>TRY IT FREE TODAY</h2>

Each Message Hero account is free to set up, with no credit card required.  Each account comes with 20 free texts to try it out, as well as a free keyword, which your customers can text to join your marketing list or send you texts which will appear in your online text message Inbox.

So if you have customers or club members in the UK and you need an online tool for mobile marketing or text communications, why not try Message Hero free today?

[do action="signup-ok"]SIGN UP & TRY FREE[/do]]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>7 biggest mobile marketing mistakes</title>
		<link>https://www.messagehero.com/7-biggest-mobile-marketing-mistakes/</link>
					<comments>https://www.messagehero.com/7-biggest-mobile-marketing-mistakes/#respond</comments>
		
		<dc:creator><![CDATA[Message Hero]]></dc:creator>
		<pubDate>Thu, 15 May 2014 09:22:01 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Help & Tips]]></category>
		<guid isPermaLink="false">http://www.messagehero.com/?p=4390</guid>

					<description><![CDATA[<p><img width="254" height="146" src="https://www.messagehero.com/wp-content/uploads/2014/05/MH_Blog_6Mistakes-254x146.gif" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://www.messagehero.com/wp-content/uploads/2014/05/MH_Blog_6Mistakes-254x146.gif 254w, https://www.messagehero.com/wp-content/uploads/2014/05/MH_Blog_6Mistakes-300x172.gif 300w, https://www.messagehero.com/wp-content/uploads/2014/05/MH_Blog_6Mistakes-50x28.gif 50w, https://www.messagehero.com/wp-content/uploads/2014/05/MH_Blog_6Mistakes-121x70.gif 121w" sizes="(max-width: 254px) 100vw, 254px" /></p><h3>Here's a rundown of the <em><strong>7 biggest mobile marketing mistakes</strong></em> and some simple ideas to avoid them.</h3>
<ol>
<li><a href="#badTiming">Bad Timing!</a></li>
<li><a href="#forgetCTA">What do I do now?</a></li>
<li><a href="#unsuitableTone">Unsuitable Tone</a></li>
<li><a href="#messageLength">Message Length</a></li>
<li><a href="#noId">Who is this?</a></li>
<li><a href="#optOut">No Opt-Out Information</a></li>
<li><a href="#underwhelmingOffer">Underwhelming Offers</a></li>
</ol>
<p><a name="badTiming"></a><br />
<img src="https://www.messagehero.com/wp-content/uploads/2014/05/MH_Blog_6Mistakes.gif" alt="7 biggest mobile marketing mistakes and how to avoid them" width="870px" height="500px" /></p>
<h2>1. Bad Timing</h2>
<p>One of the <strong>big advantages of text message marketing</strong> is that your customers will have their mobile phones with them at all times of the day. Unlike email, most text messages are read immediately but that doesn't mean there aren't bad times to send your marketing message.</p>
<p>Before you hit the send button, think about when your customers are most likely to act on your message. If you want customers to pop into your cafe for a lunchtime special then maybe a mid- morning marketing message will work. If you want them to call and make a booking then send your message when you think your customers will have time to call you.</p>
<p><strong>Forward planning is key.</strong> If you are advertising a future event like a special Valentines dinner menu, a good rule of thumb is to send an early message so your organised customers can book in advance. Then you can cater for the badly-prepped boyfriends and send a last minute reminder to fill up your remaining tables.</p>
<p><a name="forgetCTA"></a></p>
<div class="alert alert_warning"><i class="alert_icon icon-exclamation"></i></p>
<div class="alert_desc"><strong>TIP:</strong> Even if your marketing message is very exciting, your customers won't appreciate being woken up to read it. Remember to send your marketing message between 9am and 10pm.  <a title="Online SMS Marketing – Tips for Timing Your Messages" href="http://www.messagehero.com/tips-for-timing-sms-marketing-messages/">Learn more about timing your marketing messages</a></div>
</div>
<h2>2. What Do I Do Now?</h2>
<p>One of the biggest mobile marketing mistakes companies make is <strong>forgetting to include a call to action</strong> at the end of their text marketing message. Make it easy for your customers and tell them exactly what they need to do next.</p>
<p>If you want them to visit your website, pick up the phone or simply call in to your store - don't forget to include all the relevant information!</p>
<ul class="list list_tick">
<li>Book online at www.bla.com</li>
<li>Pop in to Cookees on Main St to pick up your free pastry with any regular coffee</li>
<li>Call us on 012345678 today to book your deluxe facial</li>
</ul>
<p><a name="unsuitableTone"></a></p>
<div class="alert alert_warning"><i class="alert_icon icon-exclamation"></i></p>
<div class="alert_desc"><strong>TIP:</strong> Remember, if you ask your customers to phone be sure to send your message at a time you will be answering your phone!</div>
</div>
<h2>3. Unsuitable Tone</h2>
<p>You might think that if any medium could warrant a more casual approach it would be texting. You may be a master of txt spk and know your LOLs, L8Rs, TTYLs and GR8s from your ROFLs (and if you don't you can get a translation <a href="https://en.wikipedia.org/wiki/SMS_language">here</a>) but your customers might not respond well to the language, depending on your business. Try to tailor your tone to your business. TXT SPK might be fine in casual circumstances, but if you want your customers to take your business seriously, you should try to <strong>use appropriate tone in your messages</strong> to them.</p>
<ul class="list list_tick">
<li>Hi There, Get a free bottle of wine this Wednesday with every two main courses in Freddie's Bistro. Call to book now on 01 600 XXXX. Opt-out? Text STOP to 51772.</li>
</ul>
<p>It may not always be the case that you want to sound professional - it depends on what type of business you have and who your audience is. For example, if you run student nights for a pub, your customers might respond better to younger, friendlier language:</p>
<ul class="list list_tick">
<li>YOYOYO! Student BYOB Electro Nite in the Bunker tomoz and every Tues! €20 Entry &amp; DJ Till Late. C U There! Opt-out? Text STOP to 51772.</li>
</ul>
<p><a name="messageLength"></a></p>
<p>You will have a fair idea what writing style might appeal to your audience, but try to put yourself in their shoes and imagine how they would respond to your text message.<br />
<a name="noId"></a></p>
<h2>4. Message Length - Too Short or Too Long?</h2>
<p>Text messages aren't limited to only 160 characters - most phones will support messages up to 459 characters. This isn't an invitation to write an essay though. Let's assume your customers are all busy people - they'll appreciate you getting to the point without the waffle but make sure not to be curt or abrupt.</p>
<p>A good ingredients check list for marketing messages is Greeting + Offer/News + Call to Action. Embellish the language and tone as you think necessary for your target market.</p>
<h2>5. Who is this?</h2>
<p>A perfectly written marketing message can often fail for one simple reason. You forget to tell your customers who you are!</p>
<p>There are a couple of ways to identify yourself but one of the simplest is to change the From Label on your message. This label is displayed at the top of the message on your customers phone - in place of a phone number.</p>
<p><a name="optOut"></a><br />
You are limited to 11 characters when choosing your From Label but make sure it's something your customers will recognise. E.g. If your business is called 'Dees Salon', then set your 'From' label to 'Dees Salon' or if you have a longer company name that exceeds the 11 character limit such as Greener Space, you could choose an abbreviation for your 'From' label e.g. 'GREENER' or 'GSPACE'.</p>
<p>If you can't set your From Label then be sure to sign off with your company name at the end of the message, before your opt-out wording.<br />
<a name="underwhelmingOffer"></a></p>
<h2>6. No Opt-out Information</h2>
<p>One unforgivable mobile marketing mistake is to omit your opt-out information from your message. You might be sad to see them go, but it is legally required by data-protection law to include a way for your customers to unsubscribe from your database. The easiest way to do this is to include instructions to opt out by text message e.g. Opt-Out? Text STOP to 51772.</p>
<h2>7. Underwhelming Offers</h2>
<p>At the end of the day, perfect timing and tone is not going to work if your customers don't feel you are offering value. Don't waste time and money sending marketing messages that won't surprise and delight your customers.</p>
<p>In addition to your product or service, you may wish to try some of these <strong>text marketing ideas</strong> to improve your customers' response to your offer:</p>
<ol class="list list_tick">
<li>Loyalty Discounts: Schedule your next 3 sessions with us today and get the third half price.</li>
<li>Bonus e.g. Buy any regular coffee and get a free pastry!</li>
<li>Time Sensitive e.g. Book today to avail of this great offer!</li>
<li>Action-based rewards e.g. Book online and get 20% off.</li>
<li>Audience incentives e.g. Great family offer, kids go free...!</li>
<li>Complimentary Upgrades: Book a something and we'll make it a deluxe on us!</li>
</ol>
<div class="alert alert_warning"><i class="alert_icon icon-exclamation"></i></p>
<div class="alert_desc"><strong>TIP:</strong> If you want to motivate your customer to take action consider time limited offers that will encourage them to act sooner.</div>
</div>
<h2>Roundup</h2>
<p>These may be the biggest mobile  marketing mistakes but they are easy to avoid and with a little thought and planning you can increase the return on your marketing and create text message marketing campaigns that really work.</p>
]]></description>
										<content:encoded><![CDATA[<p><img width="254" height="146" src="https://www.messagehero.com/wp-content/uploads/2014/05/MH_Blog_6Mistakes-254x146.gif" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://www.messagehero.com/wp-content/uploads/2014/05/MH_Blog_6Mistakes-254x146.gif 254w, https://www.messagehero.com/wp-content/uploads/2014/05/MH_Blog_6Mistakes-300x172.gif 300w, https://www.messagehero.com/wp-content/uploads/2014/05/MH_Blog_6Mistakes-50x28.gif 50w, https://www.messagehero.com/wp-content/uploads/2014/05/MH_Blog_6Mistakes-121x70.gif 121w" sizes="(max-width: 254px) 100vw, 254px" /></p><h3>Here's a rundown of the <em><strong>7 biggest mobile marketing mistakes</strong></em> and some simple ideas to avoid them.</h3>
<ol>
<li><a href="#badTiming">Bad Timing!</a></li>
<li><a href="#forgetCTA">What do I do now?</a></li>
<li><a href="#unsuitableTone">Unsuitable Tone</a></li>
<li><a href="#messageLength">Message Length</a></li>
<li><a href="#noId">Who is this?</a></li>
<li><a href="#optOut">No Opt-Out Information</a></li>
<li><a href="#underwhelmingOffer">Underwhelming Offers</a></li>
</ol>
<p><a name="badTiming"></a><br />
<img src="https://www.messagehero.com/wp-content/uploads/2014/05/MH_Blog_6Mistakes.gif" alt="7 biggest mobile marketing mistakes and how to avoid them" width="870px" height="500px" /></p>
<h2>1. Bad Timing</h2>
<p>One of the <strong>big advantages of text message marketing</strong> is that your customers will have their mobile phones with them at all times of the day. Unlike email, most text messages are read immediately but that doesn't mean there aren't bad times to send your marketing message.</p>
<p>Before you hit the send button, think about when your customers are most likely to act on your message. If you want customers to pop into your cafe for a lunchtime special then maybe a mid- morning marketing message will work. If you want them to call and make a booking then send your message when you think your customers will have time to call you.</p>
<p><strong>Forward planning is key.</strong> If you are advertising a future event like a special Valentines dinner menu, a good rule of thumb is to send an early message so your organised customers can book in advance. Then you can cater for the badly-prepped boyfriends and send a last minute reminder to fill up your remaining tables.</p>
<p><a name="forgetCTA"></a></p>
<div class="alert alert_warning"><i class="alert_icon icon-exclamation"></i></p>
<div class="alert_desc"><strong>TIP:</strong> Even if your marketing message is very exciting, your customers won't appreciate being woken up to read it. Remember to send your marketing message between 9am and 10pm.  <a title="Online SMS Marketing – Tips for Timing Your Messages" href="http://www.messagehero.com/tips-for-timing-sms-marketing-messages/">Learn more about timing your marketing messages</a></div>
</div>
<h2>2. What Do I Do Now?</h2>
<p>One of the biggest mobile marketing mistakes companies make is <strong>forgetting to include a call to action</strong> at the end of their text marketing message. Make it easy for your customers and tell them exactly what they need to do next.</p>
<p>If you want them to visit your website, pick up the phone or simply call in to your store - don't forget to include all the relevant information!</p>
<ul class="list list_tick">
<li>Book online at www.bla.com</li>
<li>Pop in to Cookees on Main St to pick up your free pastry with any regular coffee</li>
<li>Call us on 012345678 today to book your deluxe facial</li>
</ul>
<p><a name="unsuitableTone"></a></p>
<div class="alert alert_warning"><i class="alert_icon icon-exclamation"></i></p>
<div class="alert_desc"><strong>TIP:</strong> Remember, if you ask your customers to phone be sure to send your message at a time you will be answering your phone!</div>
</div>
<h2>3. Unsuitable Tone</h2>
<p>You might think that if any medium could warrant a more casual approach it would be texting. You may be a master of txt spk and know your LOLs, L8Rs, TTYLs and GR8s from your ROFLs (and if you don't you can get a translation <a href="https://en.wikipedia.org/wiki/SMS_language">here</a>) but your customers might not respond well to the language, depending on your business. Try to tailor your tone to your business. TXT SPK might be fine in casual circumstances, but if you want your customers to take your business seriously, you should try to <strong>use appropriate tone in your messages</strong> to them.</p>
<ul class="list list_tick">
<li>Hi There, Get a free bottle of wine this Wednesday with every two main courses in Freddie's Bistro. Call to book now on 01 600 XXXX. Opt-out? Text STOP to 51772.</li>
</ul>
<p>It may not always be the case that you want to sound professional - it depends on what type of business you have and who your audience is. For example, if you run student nights for a pub, your customers might respond better to younger, friendlier language:</p>
<ul class="list list_tick">
<li>YOYOYO! Student BYOB Electro Nite in the Bunker tomoz and every Tues! €20 Entry &amp; DJ Till Late. C U There! Opt-out? Text STOP to 51772.</li>
</ul>
<p><a name="messageLength"></a></p>
<p>You will have a fair idea what writing style might appeal to your audience, but try to put yourself in their shoes and imagine how they would respond to your text message.<br />
<a name="noId"></a></p>
<h2>4. Message Length - Too Short or Too Long?</h2>
<p>Text messages aren't limited to only 160 characters - most phones will support messages up to 459 characters. This isn't an invitation to write an essay though. Let's assume your customers are all busy people - they'll appreciate you getting to the point without the waffle but make sure not to be curt or abrupt.</p>
<p>A good ingredients check list for marketing messages is Greeting + Offer/News + Call to Action. Embellish the language and tone as you think necessary for your target market.</p>
<h2>5. Who is this?</h2>
<p>A perfectly written marketing message can often fail for one simple reason. You forget to tell your customers who you are!</p>
<p>There are a couple of ways to identify yourself but one of the simplest is to change the From Label on your message. This label is displayed at the top of the message on your customers phone - in place of a phone number.</p>
<p><a name="optOut"></a><br />
You are limited to 11 characters when choosing your From Label but make sure it's something your customers will recognise. E.g. If your business is called 'Dees Salon', then set your 'From' label to 'Dees Salon' or if you have a longer company name that exceeds the 11 character limit such as Greener Space, you could choose an abbreviation for your 'From' label e.g. 'GREENER' or 'GSPACE'.</p>
<p>If you can't set your From Label then be sure to sign off with your company name at the end of the message, before your opt-out wording.<br />
<a name="underwhelmingOffer"></a></p>
<h2>6. No Opt-out Information</h2>
<p>One unforgivable mobile marketing mistake is to omit your opt-out information from your message. You might be sad to see them go, but it is legally required by data-protection law to include a way for your customers to unsubscribe from your database. The easiest way to do this is to include instructions to opt out by text message e.g. Opt-Out? Text STOP to 51772.</p>
<h2>7. Underwhelming Offers</h2>
<p>At the end of the day, perfect timing and tone is not going to work if your customers don't feel you are offering value. Don't waste time and money sending marketing messages that won't surprise and delight your customers.</p>
<p>In addition to your product or service, you may wish to try some of these <strong>text marketing ideas</strong> to improve your customers' response to your offer:</p>
<ol class="list list_tick">
<li>Loyalty Discounts: Schedule your next 3 sessions with us today and get the third half price.</li>
<li>Bonus e.g. Buy any regular coffee and get a free pastry!</li>
<li>Time Sensitive e.g. Book today to avail of this great offer!</li>
<li>Action-based rewards e.g. Book online and get 20% off.</li>
<li>Audience incentives e.g. Great family offer, kids go free...!</li>
<li>Complimentary Upgrades: Book a something and we'll make it a deluxe on us!</li>
</ol>
<div class="alert alert_warning"><i class="alert_icon icon-exclamation"></i></p>
<div class="alert_desc"><strong>TIP:</strong> If you want to motivate your customer to take action consider time limited offers that will encourage them to act sooner.</div>
</div>
<h2>Roundup</h2>
<p>These may be the biggest mobile  marketing mistakes but they are easy to avoid and with a little thought and planning you can increase the return on your marketing and create text message marketing campaigns that really work.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.messagehero.com/7-biggest-mobile-marketing-mistakes/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Happy St. Patricks Day from Message Hero!</title>
		<link>https://www.messagehero.com/happy-st-patricks-day-message-hero/</link>
		
		<dc:creator><![CDATA[Message Hero]]></dc:creator>
		<pubDate>Thu, 13 Mar 2014 12:17:08 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<guid isPermaLink="false">http://www.messagehero.com/?p=4094</guid>

					<description><![CDATA[<p><img width="254" height="146" src="https://www.messagehero.com/wp-content/uploads/2014/03/MH_Blog_StPatricksDay-254x146.gif" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://www.messagehero.com/wp-content/uploads/2014/03/MH_Blog_StPatricksDay-254x146.gif 254w, https://www.messagehero.com/wp-content/uploads/2014/03/MH_Blog_StPatricksDay-300x172.gif 300w, https://www.messagehero.com/wp-content/uploads/2014/03/MH_Blog_StPatricksDay-50x28.gif 50w, https://www.messagehero.com/wp-content/uploads/2014/03/MH_Blog_StPatricksDay-121x70.gif 121w" sizes="(max-width: 254px) 100vw, 254px" /></p><img alt="Message Hero SMS Marketing for St. Patricks Day" src="https://www.messagehero.com/wp-content/uploads/2014/03/MH_Blog_StPatricksDay.gif" width="870" height="500" /><br />
<br />
Hi everyone, we'd just like to wish you all a very Happy St. Patricks Day this weekend! Remember, it's a great time to send marketing text messages because of the long weekend.
<br />
<br />
If you haven't tried Message Hero for sending texts to your customers, you can sign up for a free trial today - it only takes a minute!
<br />
<br />
[do action="signup-ok"]SIGNUP & TRY FREE[/do]]]></description>
										<content:encoded><![CDATA[<p><img width="254" height="146" src="https://www.messagehero.com/wp-content/uploads/2014/03/MH_Blog_StPatricksDay-254x146.gif" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://www.messagehero.com/wp-content/uploads/2014/03/MH_Blog_StPatricksDay-254x146.gif 254w, https://www.messagehero.com/wp-content/uploads/2014/03/MH_Blog_StPatricksDay-300x172.gif 300w, https://www.messagehero.com/wp-content/uploads/2014/03/MH_Blog_StPatricksDay-50x28.gif 50w, https://www.messagehero.com/wp-content/uploads/2014/03/MH_Blog_StPatricksDay-121x70.gif 121w" sizes="(max-width: 254px) 100vw, 254px" /></p><img alt="Message Hero SMS Marketing for St. Patricks Day" src="https://www.messagehero.com/wp-content/uploads/2014/03/MH_Blog_StPatricksDay.gif" width="870" height="500" /><br />
<br />
Hi everyone, we'd just like to wish you all a very Happy St. Patricks Day this weekend! Remember, it's a great time to send marketing text messages because of the long weekend.
<br />
<br />
If you haven't tried Message Hero for sending texts to your customers, you can sign up for a free trial today - it only takes a minute!
<br />
<br />
[do action="signup-ok"]SIGNUP & TRY FREE[/do]]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
