<?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>Growth &#8211; Will Egan</title>
	<atom:link href="https://www.willegan.com/category/growth/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.willegan.com</link>
	<description>Melbourne-based growth marketer specialising in activation</description>
	<lastBuildDate>Mon, 08 Apr 2019 19:08:41 +0000</lastBuildDate>
	<language>en-AU</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.4.2</generator>
	<item>
		<title>What is Event-based Marketing?</title>
		<link>https://www.willegan.com/what-is-event-based-marketing/</link>
					<comments>https://www.willegan.com/what-is-event-based-marketing/#comments</comments>
		
		<dc:creator><![CDATA[Will Egan]]></dc:creator>
		<pubDate>Mon, 01 Apr 2019 09:52:29 +0000</pubDate>
				<category><![CDATA[Event Based Marketing]]></category>
		<category><![CDATA[Growth]]></category>
		<guid isPermaLink="false">https://www.willegan.com/?p=14</guid>

					<description><![CDATA[<p>Event-based marketing is a digital marketing technique where customers receive personalised communications based on their behaviour, or lack of. It relies on the measuring of implicit and explicit interactions between the user and the product (a website or app). The key word here is &#8216;event&#8217;. An event is a record of a single instance of ... <a title="What is Event-based Marketing?" class="read-more" href="https://www.willegan.com/what-is-event-based-marketing/">Read more<span class="screen-reader-text">What is Event-based Marketing?</span></a></p>
<p>The post <a rel="nofollow" href="https://www.willegan.com/what-is-event-based-marketing/">What is Event-based Marketing?</a> appeared first on <a rel="nofollow" href="https://www.willegan.com">Will Egan</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>Event-based marketing</strong> is a digital marketing technique where customers receive personalised communications based on their behaviour, or lack of. It relies on the measuring of implicit and explicit interactions between the user and the product (a website or app).</p>
<p>The key word here is &#8216;event&#8217;. An <strong>event</strong> is a record of a single instance of behaviour taking place on a website or app. It’s tied to a user&#8217;s identity and useful information (attributes) can be stored inside it.</p>
<p>This practice is sometimes referred to as <em>trigger marketing</em>, <em>event tracking</em>, <em>event driven marketing</em> or <em>event streaming</em>. The sheer power and potential of this new type of marketing is driving massive advances in the way digital marketers, growth hackers and product marketers work.</p>
<p>There are two components: <strong>managing identity</strong> and <strong>recording behaviour</strong>.</p>
<p><img class="aligncenter wp-image-33 size-large" src="https://www.willegan.com/wp-content/uploads/2016/12/identity-v-behaviour-1024x410.jpg" width="644" height="258" srcset="https://www.willegan.com/wp-content/uploads/2016/12/identity-v-behaviour-1024x410.jpg 1024w, https://www.willegan.com/wp-content/uploads/2016/12/identity-v-behaviour-300x120.jpg 300w, https://www.willegan.com/wp-content/uploads/2016/12/identity-v-behaviour-768x307.jpg 768w, https://www.willegan.com/wp-content/uploads/2016/12/identity-v-behaviour.jpg 1500w" sizes="(max-width: 644px) 100vw, 644px" /></p>
<h2>Identity</h2>
<p>When a user visits a website or mobile app they are automatically assigned an anonymous identity. The anonymous identity is used to store the record of their behaviour until, and if, the user becomes &#8216;identified&#8217;. Identified users are <em>known users</em> who already have a record in the user database. At this point, the anonymous identity and the known identity are joined together so that all past behaviour recorded against the anonymous user is now stored directly against the known user.</p>
<p>Without a user&#8217;s identity we would not be able to assign the stored behaviour to a particular person. This would limit our ability to communicate with the user (we can&#8217;t send them an email or push notification if we don&#8217;t know who they are). Instead, we would receive general data about the way the <em>whole</em> service is being used by <em>all</em> users (think Google Analytics). Identity based marketing also allows us to track users across different devices more easily.</p>
<h3>Basic Recipe of an Identify Call</h3>
<pre>analytics.identify([userId], [traits], [options], [callback]);</pre>
<h2>Behaviour</h2>
<p>Behaviour is information that describes <em>how the user interacts</em> with the website or app. <strong>It is recorded as an &#8216;event&#8217;.</strong> An <em>event</em> is a single instance of measured behaviour; a single event in the journey of the customer. The event could describe a users explicit action such as &#8216;Clicked on Playlist&#8217; or an implicit action such as &#8216;Moused Over Playlist&#8217;.</p>
<h3>Basic Recipe of an Event</h3>
<pre>analytics.track(event, [properties], [options], [callback]);</pre>
<p>Attributes can be parsed in to the event allowing for unique, and highly relevant knowledge to be stored inside the event itself. For example, the playlist name, the playlist ID, the duration, and the description could all be stored in the event &#8216;Clicked on Playlist&#8217;.</p>
<pre>analytics.track("Clicked on Playlist", {
playlistName: "Australian Top 50",
durationMins: 132,
playlistID: 2388383820022992,
playlistDescription: "The latest and greatest hits topping the charts down under."
});</pre>
<p>By measuring behaviour in this way and storing key information about the behaviour inside the event, we can send the user a much more contextual message or prompt when trying to engage them.</p>
<p><img class="aligncenter wp-image-28 size-large" src="https://www.willegan.com/wp-content/uploads/2016/12/customer-journey-1024x375.jpg" width="644" height="236" srcset="https://www.willegan.com/wp-content/uploads/2016/12/customer-journey-1024x375.jpg 1024w, https://www.willegan.com/wp-content/uploads/2016/12/customer-journey-300x110.jpg 300w, https://www.willegan.com/wp-content/uploads/2016/12/customer-journey-768x281.jpg 768w, https://www.willegan.com/wp-content/uploads/2016/12/customer-journey.jpg 1800w" sizes="(max-width: 644px) 100vw, 644px" /></p>
<h2>Origins</h2>
<p>Event stream processing has long been used by software engineers to build event-driven systems. An event would be use to record a significant change in the <em>state</em> of the object. By measuring behaviour in such incremental detail we are able to more clearly identify exactly where the user stops in a given flow or process. Algorithmic trading desks are an example of such systems. In this example each change in the price of a stock is measured as a single change in state, down to the cent. By monitoring all movement in the stock price, an algorithm can treat each event as a new state, and better predict the next movement based on the current and past states. Such granular measurement allows the algorithm to react quickly and accurately. Contrast this to simply knowing the starting price and the current price of a stock at any given time of the day (the way humans typically monitor stocks).</p>
<p>Event-based marketing is literally the marketers equivalent of this practice. By recording much more information about a user&#8217;s behaviour—each change in the user&#8217;s state—we know exactly where a user is in their journey and can construct a highly relevant and personalised message to deliver to them.</p>
<p><img class="aligncenter wp-image-38" src="https://www.willegan.com/wp-content/uploads/2016/12/event-google-analytics.jpg" width="600" height="319" srcset="https://www.willegan.com/wp-content/uploads/2016/12/event-google-analytics.jpg 1000w, https://www.willegan.com/wp-content/uploads/2016/12/event-google-analytics-300x160.jpg 300w, https://www.willegan.com/wp-content/uploads/2016/12/event-google-analytics-768x409.jpg 768w" sizes="(max-width: 600px) 100vw, 600px" /></p>
<p>The word &#8216;event&#8217; might ring some bells for us old-school marketers. Google Analytics has long offered the functionality of recording and storing <em>custom events</em> about how users interact with the product. This was great, and certainly offered us some insights into those more granular and unique behaviours, but there was always one problem&#8230; identity. Who are these people?</p>
<h2>Example</h2>
<p><img class="aligncenter wp-image-64" src="https://www.willegan.com/wp-content/uploads/2016/12/abandoned-cart.jpg" width="600" height="250" srcset="https://www.willegan.com/wp-content/uploads/2016/12/abandoned-cart.jpg 1000w, https://www.willegan.com/wp-content/uploads/2016/12/abandoned-cart-300x125.jpg 300w, https://www.willegan.com/wp-content/uploads/2016/12/abandoned-cart-768x320.jpg 768w" sizes="(max-width: 600px) 100vw, 600px" /><br />
Let&#8217;s use a typical abandoned cart campaign as a way to compare event-based marketing to traditional behavioural campaigns.</p>
<h3>Traditional Behavioural Campaigns</h3>
<p>Typically when implementing an abandoned cart campaigns we track two stages:<br />
1) when the user starts the checkout process and<br />
2) when the user successfully checks out.</p>
<p>More advanced implementations might track the step in the checkout process the user was at. This allows them to send the user back to the exact step they were up to. In total, most abandoned cart campaigns are measuring two or three stages. More often than not, this is done by querying the clickstream data (specifically the URL path) for users who have viewed the &#8216;checkout page&#8217;, but not viewed the &#8216;payment confirmation&#8217; page. Because of the vagueness around this method of tracking, we typically wait 2-3 hours before sending the abandoned cart campaign.</p>
<h3>Event-based Campaigns</h3>
<p>When implementing an event-based abandoned cart campaign, we can record many more events:<br />
1) User adds item to cart<br />
2) User starts checkout process<br />
3) User confirms shipping details<br />
4) User confirms billing details<br />
5) Payment successful<br />
6) Payment unsuccessful<br />
7) User successfully checks out</p>
<p>Each time a user triggers the next event in the sequence their state changes. This helps clearly indicate the exact point in the flow that they are up to. The moment events stop being received (the user abandons the checkout process) we need only wait a short period of time before sending the abandoned cart email (20 minutes for example). If the user stops at step 4, where they have confirmed their billing details but no result has been received for payment, we need simply send them an email encouraging them to finish paying.</p>
<p>On top of this, we are able to store information about the progression through the cart inside the event itself. This can be parsed through from the email to the target (website or app) by attaching the information in parameters on the link.</p>
<h2>How to Implement Event-based Marketing</h2>
<p>Event-based marketing significantly improves the capability, speed and quality of marketing. The technology is rapidly advancing and new tools are emerging designed specifically around these capabilities. This comprehensive guide to event-based marketing is designed to help digital marketers utilise javascript &#8220;events&#8221; to trigger marketing, product, analytics, advertising and communication campaigns based on user behaviour.</p>
<p>To be clear, this is <span style="text-decoration: underline; color: #ff0000;"><strong>not</strong></span> a guide about promoting physical events. This <span style="text-decoration: underline; color: #33cccc;"><strong>is</strong></span> a guide about using javascript based events to automatically trigger marketing.</p>
<p><img class="aligncenter size-large wp-image-663" src="https://www.willegan.com/wp-content/uploads/2018/12/disambiguation-event-based-marketing-1-2000x747.jpg" alt="" width="1200" height="448" srcset="https://www.willegan.com/wp-content/uploads/2018/12/disambiguation-event-based-marketing-1-2000x747.jpg 2000w, https://www.willegan.com/wp-content/uploads/2018/12/disambiguation-event-based-marketing-1-300x112.jpg 300w, https://www.willegan.com/wp-content/uploads/2018/12/disambiguation-event-based-marketing-1-768x287.jpg 768w" sizes="(max-width: 1200px) 100vw, 1200px" /></p>
<p>In the context of digital marketing, &#8220;events&#8221; record <strong>a single instance of a behaviour occurring on your website or app</strong>. They are called events because:</p>
<ol>
<li>they record a change in state, and</li>
<li>Javascript technology uses events to trigger functions.</li>
</ol>
<p>I&#8217;ve worked with event-based marketing since 2013 and in this article, I&#8217;m going to teach you everything I know about this field of marketing.<br />
<!--

<h2>Table of contents</h2>




<ul>
 	

<li>Does event-based marketing work?- DONE</li>


 	

<li>Technical background to event-based marketing - DONE</li>


 	

<li>What is an "event"?- DONE</li>




<li>Right person, right message, right time - NEXT</li>


 	

<li>Implementing events</li>


 	

<li>- How to structure your events (layout/table)</li>


 	

<li>- Google Tag Manager or Segment</li>


 	

<li>- Using events in Amplitude</li>


 	

<li>- Using events in Vero</li>


 	

<li>- Using events in Facebook</li>


 	

<li>- Using events in Hotjar</li>


 	

<li>- Using events in Google Ads</li>


 	

<li>- Using events in eCommerce</li>


 	

<li>- Using events in SaaS (activation)</li>


 	

<li>Tools that support event tracking (and tools that don't)</li>


 	

<li>Getting started</li>


</ul>

--></p>
<h2>Does event-based marketing work?</h2>
<p>Yes, event-based marketing works and it&#8217;s probably the single biggest opportunity for growth in almost every business today.</p>
<p>I&#8217;ve been using event-based marketing for around six years now. I&#8217;ve implemented it successfully in my own business, and have helped many other companies implement it. In every single case, those businesses saw an immediate company-wide increase in every metric that matters. From revenue to email deliverability. I&#8217;ve literally seen 400% to 600% increases in conversion metrics overnight. <strong>Event-based marketing absolutely works.</strong></p>
<p><img class="aligncenter size-full wp-image-665" src="https://www.willegan.com/wp-content/uploads/2018/12/event-based-marketing-works-1.png" alt="" width="1694" height="396" srcset="https://www.willegan.com/wp-content/uploads/2018/12/event-based-marketing-works-1.png 1694w, https://www.willegan.com/wp-content/uploads/2018/12/event-based-marketing-works-1-300x70.png 300w, https://www.willegan.com/wp-content/uploads/2018/12/event-based-marketing-works-1-768x180.png 768w" sizes="(max-width: 1694px) 100vw, 1694px" /></p>
<p>The performance of <strong>every single marketing channel and activity is enhanced when event-based marketing is added.</strong> Even interstitial popups convert well when enhanced with event-based marketing.</p>
<p><img class="aligncenter wp-image-668 size-full" src="https://www.willegan.com/wp-content/uploads/2018/12/event-based-list-building.jpg" alt="" width="1166" height="354" srcset="https://www.willegan.com/wp-content/uploads/2018/12/event-based-list-building.jpg 1166w, https://www.willegan.com/wp-content/uploads/2018/12/event-based-list-building-300x91.jpg 300w, https://www.willegan.com/wp-content/uploads/2018/12/event-based-list-building-768x233.jpg 768w" sizes="(max-width: 1166px) 100vw, 1166px" /></p>
<p>Yet, despite all of this&#8230; very few people know how to do it.</p>
<p>This makes sense though because it&#8217;s virtually impossible to learn. There is literally zero content online about it. Not a single guide or course&#8230; a few articles here and there, but that&#8217;s about it. So, being the content-savvy marketer I like to think I am, I started writing about it (and teaching it in real life). This was a great decision because it&#8217;s helped me refine all of the content I&#8217;m about to share with you. The diagrams, the explanations, the metaphors, the strategies and most importantly the application of the concepts are all better because of the real-life testing that has taken place in the classroom. Let&#8217;s begin&#8230;</p>
<h2>Technical background to event-based marketing</h2>
<p>It wasn&#8217;t until the early 90s that marketers first started tracking people visiting their websites. Unlike the way most marketing professionals approached their job at the time (think Don Draper), this new breed of marketer was fascinated by measuring whether their marketing activities actually worked. These data-driven-pioneers were the first &#8216;digital marketers&#8217; because of one thing: data.</p>
<p>Access to data was the turning point because it closed the feedback loop of marketing. Immediately every single marketing function became measurable, which in turn creates an opportunity to optimise our marketing. Data also speeds the entire marketing process up; if you&#8217;ve ever tried to optimise a website with no traffic you&#8217;ll know what I&#8217;m talking about.</p>
<p>From this moment on, data gave us the ability to measure our performance as marketers and compared to the incumbent alternative of little to no measurement, it probably felt like it was all happening in real time. Indeed, this was the birth of digital marketing, and the data source we came to rely on was server logs.</p>
<h3>Server logs</h3>
<p>Initially, the ability to actually measure the traffic to your website and the pages people were interested in relied on the most basic analytics technology we have: <strong>server logs</strong>. Server logs still work to this day. They show us the documents being requested by people who visit our website. When PHP, XML and HTML were the default web languages this worked well because every change in the state of a page (and the information contained upon it) relied on a call being made to a server. The typical user path on a website would look something like this:</p>
<p><img class="aligncenter size-full wp-image-688" src="https://www.willegan.com/wp-content/uploads/2018/12/server-log-based-analytics.gif" alt="" width="1180" height="462" /></p>
<p>The server log would tell us which documents were being requested on the server, and in which order. Beyond this, marketers couldn&#8217;t do much more&#8230; but neither could websites, so the data still felt pretty powerful. However, far more meaningful metrics would become available if we moved the tracking scripts to the client side. Enter &#8216;click-stream analytics&#8217;.</p>
<h3>Click-stream analytics</h3>
<p>Although they were not the first with this technology, the release of Google Analytics in 2005 democratised online analytics by introducing a free analytics package that would enable anyone with a website to begin collecting in-depth analytics about site usage.</p>
<p>The technical innovation was based on the repositioning of the data collection away from a server-side implementation to a client-side implementation. Rather than tracking document requests on the server, we would monitor requests from the front end of the website itself using a piece of javascript. In other words, we tracked the &#8220;click&#8221; side of a document request, rather than the response side of a document request. Clicks are an important evolution because they also represent a shift towards <span style="text-decoration: underline;">intention based metrics.</span></p>
<p>This repositioning of tracking allowed us to obtain an ever increasing number of new data points. Things like bounce rate, time on page, session durations along with new browser information such as screen size suddenly all became possible. The click-stream still recorded the movement of a user between documents, but it leveraged the user&#8217;s browser to achieve it (rather than the server).</p>
<p>This was a major breakthrough but it was appropriate given the changing purposes of websites. Rather than websites being brochures online, websites were becoming shops&#8230; and applications (such as forums and trading sites like eBay). This change in the way we used the Internet also spawned the development of a new series of technologies designed to facilitate a more lightweight transfer of data between a user (client) and the server. Not only would this speed browsing experiences up, but it would also take an enormous computational burden off the servers themselves (simply by reducing the size of the requests).</p>
<p>The things we cared about, such as a reply to our message or the change of an item&#8217;s price on eBay represented a very small portion of the overall HTML document. So instead of needing to reload the entire document, we were increasingly only reloading the portions of the document that had changed (often just a single line or value). AJAX and Javascript languages offered a way for websites to achieve this, by transferring small packets of data within the page itself.</p>
<p><img class="alignright size-medium wp-image-749" src="https://www.willegan.com/wp-content/uploads/2018/12/events-in-google-analytics-300x185.png" alt="" width="300" height="185" srcset="https://www.willegan.com/wp-content/uploads/2018/12/events-in-google-analytics-300x185.png 300w, https://www.willegan.com/wp-content/uploads/2018/12/events-in-google-analytics-768x473.png 768w, https://www.willegan.com/wp-content/uploads/2018/12/events-in-google-analytics.png 1600w" sizes="(max-width: 300px) 100vw, 300px" />Google Analytics quickly added support for these <em>in-page changes of state</em> using a new report called &#8220;events&#8221;, but the fact that user data is not allowed inside Google Analytics largely renders this function useless. Events in GA can be used for goal tracking and simple reporting, but not much more. This was not a problem for click-stream analytics at first, until Javascript took over most of the web in the form of Single Page Applications (SPAs). Yep, I&#8217;m talking about Angular and React, along with back-end frameworks like node.js.</p>
<p>Suddenly a single document became an entire website.</p>
<h3>Event-streaming analytics</h3>
<p>As <em>websites</em> quickly evolved into web <em>applications</em> a document based tracking method was no longer adequate. Users could spend 10 minutes on a single page clicking, liking, saving, posting and otherwise interacting with the page despite the document path <span style="text-decoration: underline;"><strong>not</strong></span> changing. Think of Facebook.com&#8217;s home page news feed for example, as a user scrolls through their uniquely personalised news feed liking and commenting on posts, they are creating an enormous amount of data, but the document path is not changing. In this scenario, a click-stream based analytics tool like Google Analytics would simply report time on page of say 10 minutes with a 0% bounce rate.</p>
<p>The fact that all of these sites run on Javascript technology means that <strong>all</strong> of these interactions are <em>already</em> being recorded using <strong>javascript events</strong>. Amongst other things, these js events are used by the application to change what the user sees (the DOM) and how they interact with content whilst avoiding reloading the entire site itself. These events trigger client side or server side functions and can transfer data&#8230; again, all without requiring the page to be reloaded.</p>
<p>For example, imagine a user finding a product on an e-commerce website, adding the item to their cart, and commencing the checkout process. The <em>event-stream</em> would look something like this. Notice how it&#8217;s sitting on top of the document (server logs) and click-stream.</p>
<p><img class="aligncenter size-full wp-image-740" src="https://www.willegan.com/wp-content/uploads/2018/12/event-based-marketing.gif" alt="" width="1278" height="579" /></p>
<p>You can see from the diagram above that the click-stream is really not that useful at all. So, now we arrive at the present day.</p>
<h3>Event-based marketing today</h3>
<p>Today, javascript events are running most of the front-end and back-end of websites and applications, but marketers&#8230; and product people&#8230; and even engineers sometimes just aren&#8217;t using them. Or are they?</p>
<p>In 2017 Facebook announced the transition away from the 8 default &#8216;conversion pixels&#8217; to a new &#8216;smart pixel&#8217;. You&#8217;ve probably guessed it, but the old conversion pixel was a server log based analytics method, much like the 1px by 1px image contained within emails to record email opens. The old Facebook pixel would trigger a request to a document on Facebooks server, located at a unique path where it could then be mapped as a conversion. The conversion count was simply the number of times the document had been requested on the server. The &#8216;smart pixel&#8217;, again you&#8217;ve probably already guessed it, is a new javascript based event tracking script. Javascript events would fire, sending a record of an event having occurred back to the Facebook conversion server. The number of conversions would be equal to the number of times the event had fired. This matters because <span style="text-decoration: underline;">marketers are interested in <em>who</em> triggered the event</span>, not just the fact that an event was triggered.</p>
<p>So, that leads us to the present day. Any marketer using Facebook advertising is already using &#8216;events&#8217; to measure conversion (they just don&#8217;t know it) and the worlds number one analytics platform doesn&#8217;t support personalised event tracking. Can you see the opportunity?</p>
<h2>What is an &#8220;event&#8221; in the context of event-based marketing?</h2>
<h3>Definition</h3>
<p><img class="alignright wp-image-745 size-medium" src="https://www.willegan.com/wp-content/uploads/2018/12/diagram-of-an-event-based-marketing-300x201.gif" alt="" width="300" height="201" srcset="https://www.willegan.com/wp-content/uploads/2018/12/diagram-of-an-event-based-marketing-300x201.gif 300w, https://www.willegan.com/wp-content/uploads/2018/12/diagram-of-an-event-based-marketing-768x514.gif 768w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>An event is a record of a <strong>single instance of behaviour taking place on a website or app</strong>. It’s pinned to a single identity (known or unknown) and we can store useful information inside it.</p>
<p>Think of an event like a box that you can store useful information inside of. It gets automatically created when a user performs an action or a task (a behaviour) you are interested in observing and measuring. This box can then be stored, and sent anywhere you desire. If you want your email marketing platform to know about the event, send the event there. If you want to serve the user an advert in Facebook based on this behaviour, send the event there. If you want to create a report of the number of times this event was fired, you might send a copy into Amplitude to help generate the report. If you want to send a push notification a week after the user triggers the event, send it to Vero.</p>
<h3>Anatomy of an event</h3>
<p><img class="alignright size-medium wp-image-755" src="https://www.willegan.com/wp-content/uploads/2018/12/example-of-an-event-300x135.gif" alt="" width="300" height="135" srcset="https://www.willegan.com/wp-content/uploads/2018/12/example-of-an-event-300x135.gif 300w, https://www.willegan.com/wp-content/uploads/2018/12/example-of-an-event-768x344.gif 768w" sizes="(max-width: 300px) 100vw, 300px" />There are three parts to every event:</p>
<ol>
<li>An identity (even if it&#8217;s anonymous)</li>
<li>A unique event name</li>
<li>Attributes stored inside the event.</li>
</ol>
<p>Again, an event is a single instance of behaviour with information stored inside it. People trigger events, which means we can attach an identity to the event. As marketers, this means we know <em><span style="text-decoration: underline;">what</span></em> happened, <span style="text-decoration: underline;"><em>when</em></span> it happened and <span style="text-decoration: underline;"><em>who</em></span> did it.</p>
<h3>Why do we use the phrase &#8216;event stream&#8217;?</h3>
<p>As users move around our website or app, clicking and interacting with things, they create a stream of data. This stream describes the user&#8217;s actions in chronological order. The stream really matters because it helps us perform what I can only describe as &#8216;reactive marketing&#8217;. We can react to users actions in real time by creating conditional rules. For example: if a user triggers, &#8220;add an item to cart&#8221; and does not trigger &#8220;started checkout&#8221; you may wish to commence display advertising containing the products the user just added to their cart. The fact that events happen in a particular order means we can more easily build conditional sequences around our user&#8217;s behaviour.</p>
<h3>Stateful and stateless data</h3>
<p>Lastly, it&#8217;s beneficial to know about the differences between stateful and stateless data. This is a very technical concept, but it fundamentally underpins event-based marketing.</p>
<p><img class="aligncenter size-large wp-image-754" src="https://www.willegan.com/wp-content/uploads/2018/12/stateless-data-breadcrumbs-2000x710.png" alt="" width="1200" height="426" srcset="https://www.willegan.com/wp-content/uploads/2018/12/stateless-data-breadcrumbs-2000x710.png 2000w, https://www.willegan.com/wp-content/uploads/2018/12/stateless-data-breadcrumbs-300x107.png 300w, https://www.willegan.com/wp-content/uploads/2018/12/stateless-data-breadcrumbs-768x273.png 768w" sizes="(max-width: 1200px) 100vw, 1200px" /></p>
<p><b>Stateful data</b><span style="font-weight: 400;"> allow us to create, store and read the memory of the data generated in the lead up to a stateless change in our database (like filling in a form).</span></p>
<p><b>Stateless data</b><span style="font-weight: 400;"> holds no memory of the past, it merely contains the most recent version of a record (such as the information submitted by the form).</span></p>
<p>Most marketing platforms were built for stateless data streams. This means that marketers can only react to stateless changes in the database, such as a user creating an account, adding an item to their cart or making a purchase. However, to build a truly customised event-based marketing program, we must be able to trigger marketing automation on the smallest changes, and these can be easily measured using stateful data points.</p>
<h2>Right person, right message, right time</h2>
<p>The post <a rel="nofollow" href="https://www.willegan.com/what-is-event-based-marketing/">What is Event-based Marketing?</a> appeared first on <a rel="nofollow" href="https://www.willegan.com">Will Egan</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.willegan.com/what-is-event-based-marketing/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Choosing a Marketing Framework</title>
		<link>https://www.willegan.com/choosing-a-marketing-framework/</link>
					<comments>https://www.willegan.com/choosing-a-marketing-framework/#respond</comments>
		
		<dc:creator><![CDATA[Will Egan]]></dc:creator>
		<pubDate>Sun, 14 Oct 2018 02:42:36 +0000</pubDate>
				<category><![CDATA[Growth]]></category>
		<category><![CDATA[Marketing]]></category>
		<guid isPermaLink="false">https://www.willegan.com/?p=43</guid>

					<description><![CDATA[<p>So, you&#8217;re trying to work out which marketing framework to use. Cool, there are three to choose from: SaaS, e-Commerce and High Consideration. Software as a Service (SaaS) &#8211; AARRR (colloquially called ‘Pirate Metrics’) This should be familiar for people who live in the startup world. It’s the go-to framework when thinking about consumer behaviour ... <a title="Choosing a Marketing Framework" class="read-more" href="https://www.willegan.com/choosing-a-marketing-framework/">Read more<span class="screen-reader-text">Choosing a Marketing Framework</span></a></p>
<p>The post <a rel="nofollow" href="https://www.willegan.com/choosing-a-marketing-framework/">Choosing a Marketing Framework</a> appeared first on <a rel="nofollow" href="https://www.willegan.com">Will Egan</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>So, you&#8217;re trying to work out which marketing framework to use. Cool, there are three to choose from: SaaS, e-Commerce and High Consideration.</p>
<h2>Software as a Service (SaaS) &#8211; AARRR (colloquially called ‘Pirate Metrics’)</h2>
<p><img src="https://www.willegan.com/wp-content/uploads/2018/10/Picture1.png" alt="" width="974" height="449" class="aligncenter size-full wp-image-525" srcset="https://www.willegan.com/wp-content/uploads/2018/10/Picture1.png 974w, https://www.willegan.com/wp-content/uploads/2018/10/Picture1-300x138.png 300w, https://www.willegan.com/wp-content/uploads/2018/10/Picture1-768x354.png 768w" sizes="(max-width: 974px) 100vw, 974px" /></p>
<p>This should be familiar for people who live in the startup world. It’s the go-to framework when thinking about consumer behaviour and decision-making. A startup or a business that operates from a SaaS model can only be successful when each of the five AARRR stages are broken down, defined, measured, analysed and then optimised. </p>
<h3>Acquisition</h3>
<p>Acquisition refers to how your customers find you. There are many potentials channels out there (over 800 at last count), and I highly recommend reading <a href="https://medium.com/@yegg/the-19-channels-you-can-use-to-get-traction-93c762d19339">this great article that covers the variety of channels</a> by Gabriel Weinberg (the author of the book Traction). </p>
<p>Weinberg manages to shoot off 19 different channels. Some such as SEO, SEM and display ads might sound familiar, but have you considered community building? Or unconventional PR? There is more than one way fill up the top of your funnel up. </p>
<p><img src="https://www.willegan.com/wp-content/uploads/2018/10/tractionvsgrowth.png" alt="" width="500" height="290" class="aligncenter size-full wp-image-536" srcset="https://www.willegan.com/wp-content/uploads/2018/10/tractionvsgrowth.png 500w, https://www.willegan.com/wp-content/uploads/2018/10/tractionvsgrowth-300x174.png 300w" sizes="(max-width: 500px) 100vw, 500px" /></p>
<p>Peter Thiel, legendary Silicon Valley entrepreneur and investor says “It’s very likely that one channel is optimal, most businesses get zero distribution channels to work. Poor distribution &#8211; not product &#8211; is the number one cause of failure.”</p>
<p><a href="https://medium.com/@yegg/the-bullseye-framework-for-getting-traction-ef49d05bfd7e">The Bullseye Framework</a> by Gabriel Weiner is another great framework to help you identify what channels are worth testing, in order to find that one scalable channel. </p>
<p>His article is structured whereby the 19 possible channels lie on the outside circle of a darts board, whilst the channels you should be testing lie in the inside circle on the board. The one channel that performs exceptionally well will be the metaphorical bullseye. Have a read.</p>
<p>These channels aren’t only relevant for acquisition however, or getting new users. For example, email marketing is great for top-of-the-funnel activities, but it is also one of the best weapons for retention, or referral. Have you had an email from a business that says, “we haven’t seen you around on our platform lately, we miss you!” These types of drip campaigns can be used across the entire user journey.</p>
<p>When testing acquisition channels, it’s incorrect to think about the funnel in the context of acquisition alone. As a great marketer, your mission is to consider the entire funnel. For example, whilst you might be getting someone onto your website for $0.30 with a display ad vs. $1.10 with Google Adwords the long-term value of these two users may be very different. </p>
<p>At first glance the display ad is a clear winner. But what if Adwords customers are converting 300% more often? Still a slightly worse option. But what if they are retained/repeat users at much higher levels, and even bring in more referrals? This is what you need to be thinking about in context of acquisition, not just the acquisition metrics.</p>
<p>Put simply, acquisition is a set of strategies and channels designed to acquire users. Acquisition is usually the last thing to be built-into most marketing machines. Often, there’s a minimum viable number of daily sign-ups (say 10 or 20) that most product-teams need whilst building the product and building the growth machine.</p>
<h2>Activation</h2>
<p><strong>The next step is activation.</strong> It&#8217;s our view that this step is the most important of all. Activation is tied directly to user experience. It refers to the amount of time before a user obtains value from your product.</p>
<p>A business with great activation will see the majority of users who sign up continue to use the product over the long term. Whereas a business with low levels of activation will have much lower rates of usage and retention over the long term (if at all).</p>
<p>A great example of a business with fantastic activation is <strong><a href="https://www.duolingo.com/">duolingo</a></strong>. The core value of this website (learn a language) is demonstrated very quickly &#8211;  literally within a few clicks you’re learning a new language. You don’t even have to sign up!</p>
<p><img src="https://www.willegan.com/wp-content/uploads/2018/10/Screen-Shot-2014-08-18-at-11.29.41-AM-570x259.png" alt="" width="570" height="259" class="aligncenter size-full wp-image-530" srcset="https://www.willegan.com/wp-content/uploads/2018/10/Screen-Shot-2014-08-18-at-11.29.41-AM-570x259.png 570w, https://www.willegan.com/wp-content/uploads/2018/10/Screen-Shot-2014-08-18-at-11.29.41-AM-570x259-300x136.png 300w" sizes="(max-width: 570px) 100vw, 570px" /><br />
In this scenario, activation has been positioned before acquisition. Duolingo actually ‘activates you’ before they ‘acquire you’ (so clever). They have you sign up after you get to experience the value of the product. Ultimately, this means activation is 100% (a dream).</p>
<p>An easy way to start caring more about activation is to change your user acquisition metric from ‘number of sign-ups’ to ‘number of activated sign-ups’.</p>
<h2>Retention</h2>
<p><strong>Growth is all about retention.</strong> Don’t bother trying to scale a product unless you have retention. It’s like trying to fill a bucket that has holes in it.</p>
<p><img src="https://www.willegan.com/wp-content/uploads/2018/10/retention.jpg" alt="" width="1000" height="670" class="aligncenter size-full wp-image-531" srcset="https://www.willegan.com/wp-content/uploads/2018/10/retention.jpg 1000w, https://www.willegan.com/wp-content/uploads/2018/10/retention-300x201.jpg 300w, https://www.willegan.com/wp-content/uploads/2018/10/retention-768x515.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" /></p>
<p>If you truly want to be an awesome growth marketer, please spend some time watching <a href="https://www.youtube.com/watch?v=n_yHZ_vKjno">Alex’s presentation on growth</a>. He is a former VP of marketing at Facebook and truly understands the power of retention. </p>
<p><strong>Retention, put simply, is whether or not users come back to use your product a second or more time.</strong> What’s the point of acquiring new users and activating them if they’re just going to stop using your product? In terms of total users, it’s a lot easier to keep adding more users to your platform with a growing base, than trying to compensate for all the users who are disengaged and no longer using your product. </p>
<p>If you have low retention, you have big holes in your bucket (and activation is probably the main problem). In other words, when retention is down, it’s not the fact that people aren’t using your product over and over again, it’s usually because they’ve never used it, not once.</p>
<p>For those of you who are starting a business, retention is actually a great sign of product-market fit. If 40% of users are being retained, this says a lot about the value of your product. And in our experience, 40% is actually a good 30-day retention rate.</p>
<p>Retention metrics vary from business to business so it’s really important to consider how you’re going to measure retention. The simplest and certainly most common measurement of retention is monthly active users (MAUs). </p>
<p>A better (but more complex) approach is measuring the difference between the number of times a user used the product, compared to the number of times a user could or should have used the product over the typical time period in which a user should use the product. </p>
<p><u>In other words, when the user could have or should have used our product, did they?</u></p>
<p>E.G. When a user needed to book a flight, did they use our platform to do so?<br />
To determine this ‘typical window of usage’ a social media site might be interested in weekly active users (WAUs), whereas an end-of-financial-year accounting platform might have to wait a year to find out if a user is retained.</p>
<p>In it’s early days, Facebook as a social media platform was heavily focused on Monthly Active Users (MAU’s) while other social platforms were mainly measuring total registered users. What’s the difference? Facebook cared more about people actually using the community, versus the number of people in it. Sounds like an awfully familiar homage to core value proposition doesn’t it.</p>
<p><a href="https://www.andrewthompson.co/2013/04/chamath-palihapitiya-vp-of-growth.html"><img src="https://www.willegan.com/wp-content/uploads/2018/10/Facebook-Growth-Framework.png" alt="" width="957" height="165" class="aligncenter size-full wp-image-532" srcset="https://www.willegan.com/wp-content/uploads/2018/10/Facebook-Growth-Framework.png 957w, https://www.willegan.com/wp-content/uploads/2018/10/Facebook-Growth-Framework-300x52.png 300w, https://www.willegan.com/wp-content/uploads/2018/10/Facebook-Growth-Framework-768x132.png 768w" sizes="(max-width: 957px) 100vw, 957px" /></a></p>
<p>To go further, Facebook had a golden rule for activation in their context of retention. They thought that if a user got to 10 friends in 14 days, they were much more likely to be retained as a user.</p>
<p>It’s important to be mindful of the difference between correlation and causation here though. A similar metric was espoused by the folks at Twitter: users with 20 or so followers were more likely to be engaged over the long term. This sounds like causation, meaning by following 20+ accounts it would cause a user to become engaged over the long term. To encourage/increase this, Twitter introduced a single button during on-boarding that automatically followed 20+ people. Effectively forcing activation.</p>
<p><img src="https://www.willegan.com/wp-content/uploads/2018/10/twitter-forced-followers.png" alt="" width="2330" height="1708" class="aligncenter size-full wp-image-533" srcset="https://www.willegan.com/wp-content/uploads/2018/10/twitter-forced-followers.png 2330w, https://www.willegan.com/wp-content/uploads/2018/10/twitter-forced-followers-300x220.png 300w, https://www.willegan.com/wp-content/uploads/2018/10/twitter-forced-followers-768x563.png 768w, https://www.willegan.com/wp-content/uploads/2018/10/twitter-forced-followers-2000x1466.png 2000w" sizes="(max-width: 2330px) 100vw, 2330px" /></p>
<p>A quick aside before we proceed, forcing activation never works. True activation involves the user doing the work, not the product ‘showing’ or ‘demonstrating’ or ‘stepping the user through’ the product.</p>
<p>Alas, Twitter’s observation of users who followed 20+ people being more engaged was actually correlation (not causation). Meaning people who were engaged also happened to follow 20+ people. In other words, one didn’t cause the other.</p>
<h3>Revenue</h3>
<p>This is pretty simple. Are people paying to use your product? </p>
<p>Yes = good.<br />
No = bad.<br />
Any questions?</p>
<p>If you’re a bit of a sucker for psychology like us, there is a lot of cool content out there on pricing, and how humans react to it. Hint: we as consumers make some very dumb decisions.</p>
<p><img src="https://www.willegan.com/wp-content/uploads/2018/10/popcorn-upsell.jpg" alt="" width="800" height="400" class="aligncenter size-full wp-image-534" srcset="https://www.willegan.com/wp-content/uploads/2018/10/popcorn-upsell.jpg 800w, https://www.willegan.com/wp-content/uploads/2018/10/popcorn-upsell-300x150.jpg 300w, https://www.willegan.com/wp-content/uploads/2018/10/popcorn-upsell-768x384.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>A cool example is the psychology of decoy pricing on popcorn. You’d be surprised how you can make this work for a range of business pricing decisions.</p>
<h3>Referral</h3>
<p>The last component of the SaaS funnel is referral. Have you heard of the phrase ‘net promoter score (NPS)’ before? It’s a great way to understand how likely your users are to refer your product to other people organically.</p>
<p>Companies can work out their NPS by asking their users “How likely are you to recommend this business to a friend or colleague?”</p>
<p><img src="https://www.willegan.com/wp-content/uploads/2018/10/NPS.png" alt="" width="974" height="249" class="aligncenter size-full wp-image-537" srcset="https://www.willegan.com/wp-content/uploads/2018/10/NPS.png 974w, https://www.willegan.com/wp-content/uploads/2018/10/NPS-300x77.png 300w, https://www.willegan.com/wp-content/uploads/2018/10/NPS-768x196.png 768w" sizes="(max-width: 974px) 100vw, 974px" /></p>
<p>The reason why this metric is so important is because referrals are directly correlated to the virality of a product, and how much it will grow organically through word of mouth. </p>
<p>Companies such as Dropbox, PayPal and Uber have all used incentivised referrals as a catalyst for growth. Refer a friend and get $20 in Uber vouchers, or $20 into your PayPal account or even something as simple as 1GB extra storage in your Dropbox! </p>
<p>Incentivised referrals are great. But remember this:</p>
<p>What’s better than incentivised referrals? Inherent referrals, or inherent virality.</p>
<p>Inherent referrals are ones that come about because of the nature of your product or service. There may be a purposeful mechanism behind it, and it is built in to how people would normally experience or use your product. Sharing the product is part of everyday use.</p>
<p>Email and telephone calls, for example, are inherently viral. You can’t send an email without sending it to a recipient.</p>
<p>Inherent virality is so powerful, and if you can discover it, it will certainly be your biggest driver of growth. Consider this, which of the following referral features drove more growth in Dropbox?</p>
<ul>
<li>Incentivised referral: share Dropbox and get 1GB for every friend that signed up.</li>
<li>Inherent referral: share this file/album with a friend.</li>
</ul>
<p>Now consider which one of these two strategies is cheaper, and which one is the longest-lasting. Remember, it’s the long-term sustainable tactics that we want to identify and include in our Growth Machine.</p>
<p>A word of caution though. Be careful trying to engineer inherent virality in products that don’t inherently have it. Technically speaking, it is a very difficult test to run, and despite the many times we’ve personally tried to  implement an inherent virality strategy, it’s almost never worked. </p>
<p>If you do want to do it though, and at least want to test it, ask yourself the following question: ‘where in my product experience would someone naturally share/communicate with another person?’. If you are able to really maximise this point of experience, you don’t need to try and convince users to tell their friends. They’ll want to do it anyway, all you’ll need to offer is the button/or link to enable them to do it. Even better, if your product by nature has a collaborative element to it, your inherent referral mechanism would also act as an ongoing activation (and therefore retention) factor.</p>
<h2>e-Commerce Sales Funnel &#8211; The Ol&#8217; Fashioned Way</h2>
<p><img src="https://www.willegan.com/wp-content/uploads/2018/10/e-commerce-growth-framework.png" alt="" width="872" height="443" class="aligncenter size-full wp-image-538" srcset="https://www.willegan.com/wp-content/uploads/2018/10/e-commerce-growth-framework.png 872w, https://www.willegan.com/wp-content/uploads/2018/10/e-commerce-growth-framework-300x152.png 300w, https://www.willegan.com/wp-content/uploads/2018/10/e-commerce-growth-framework-768x390.png 768w" sizes="(max-width: 872px) 100vw, 872px" /></p>
<p>A typical e-commerce website is transaction focused. It has browse, category, product, and checkout pages. eCommerce follows the following formula:</p>
<div style="padding:20px; margin-bottom:10px; background-color:#f1f1f1; border:1px solid #f9f9f9; border-radius: 5px;">Revenue = Traffic (#) x Conversion (%) x Average Order Value (AOV) ($)</div>
<p>Improve any one of those three dimensions (without negatively effecting the others) and you will increase revenue. </p>
<p>While there is still a lot to this process, many modern e-commerce businesses adopt the SaaS mindset typically with the intention of outperforming rivals. </p>
<p>A site that adheres to the typical e-commerce way of life in Australia is Myer. Much of the site acts like a directory. They hope you click around, then find something that interests you enough to add it to your basket and ultimately convert. </p>
<p>An example of an e-commerce business, that has literally dominated every market it has entered because of its SaaS mindset is Amazon. Their focus on activation and retention is without doubt integrated into the core of their business. </p>
<p>A sure bet you can make about Amazon is that they will try and get as many Australians as possible to make one purchase from their platform. That way they’re signed up, can experience the value Amazon offers, and Amazon has a chance to ultimately retain them as a user.</p>
<p>This is an example of an e-commerce business thinking about activation. An example of Amazon thinking about retention was their introduction of Amazon Prime as a subscription service. This is a sure way to raise the customer lifetime value (CLV) of a user over time.</p>
<p>Over the years, eCommerce has become increasingly reliant on email and pricing as the value drivers in their marketing funnel.</p>
<h2>High Consideration Sales Funnel</h2>
<p><img src="https://www.willegan.com/wp-content/uploads/2018/10/high-consideration-sales-funnel.png" alt="" width="695" height="375" class="aligncenter size-full wp-image-539" srcset="https://www.willegan.com/wp-content/uploads/2018/10/high-consideration-sales-funnel.png 695w, https://www.willegan.com/wp-content/uploads/2018/10/high-consideration-sales-funnel-300x162.png 300w" sizes="(max-width: 695px) 100vw, 695px" /></p>
<p>This funnel is quite similar to e-commerce but has a much longer purchasing lifecycle. This is largely due to the ‘high-consideration’ nature of what’s being purchased (cars, holidays, degrees). This funnel also accurately describes a sales funnel through to lead generation.</p>
<p>In a high-consideration environment, marketing teams will spend much more time in the awareness, interest and evaluation stages of the sales funnel.</p>
<p>Typical examples of products that would have a sales process like this online include enrolling in tertiary study, buying a property, purchasing a car, or booking an expensive holiday. </p>
<p>Few people have access to such large credit facilities that they can afford to purchase these items online. Think about the most expensive thing you have bought online. Maybe a plane ticket to Europe? Rarely would your average consumer spend more than $5k online.</p>
<p>What about a student’s university debt? The customer&#8217;s credit facility is actually the government, and you definitely apply for a degree online for most universities. But because it’s such a massive commitment, the mindset of the user will lend itself to the high consideration funnel more than the e-commerce funnel.</p>
<p>A somewhat obvious insight when thinking about your ‘bullseye’ framework for high consideration products is the potential power of high value content. A great strategy in these scenarios is to have well-developed, long form pieces of content for the early parts of your funnel.</p>
<p>The important thing about high-consideration sales is that a transactional approach (like e-Commerce) doesn’t work. The reality is that whether you like it or not, your user is going to go through most of these stages in the path to conversion.</p>
<p>It’s also very important to realise that if you’re not there during the first few stages (awareness, interest and evaluation), don’t expect to be in the game further down the funnel when the prospect is about to buy. Users aren’t going to just randomly show up to your site and purchase (unless your Apple).</p>
<p>In this process, content is truly king.</p>
<p>The post <a rel="nofollow" href="https://www.willegan.com/choosing-a-marketing-framework/">Choosing a Marketing Framework</a> appeared first on <a rel="nofollow" href="https://www.willegan.com">Will Egan</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.willegan.com/choosing-a-marketing-framework/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
