forked from themefisher/airspace-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
documentation.html
68 lines (60 loc) · 2.23 KB
/
documentation.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
layout: page
title: Our Work
permalink: /docs/
---
<!-- Slider Start -->
<script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"></script>
<section id="global-header">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
<h1>Let ORAC work for you</h1>
<p>Simplicity is a form of beauty</p>
</div>
</div>
</div>
</div>
</section>
<section id="explain">
<div class="container">
<div class="row">
<div class="section-title">
<h2>How to integrate ORAC in your system</h2>
<p>ORAC produces campaigns based on users' online behavior of visitors and/or their previous purchases.</p>
</div>
<h3>Online behavior</h3>
<p>After you have <a href="{{ site.baseurl }}/contact">contacted us</a>, we will generate the <code>KEY_ID</code> to be used in the JavaScript snippet like the one below.</p>
<pre class="prettyprint"><code>
<!-- ORAC -->
<script type='text/javascript'>
function setupORAC () {
window.ORACObject = 'orac';
// check whether the Orac object is defined
if (!('orac' in window)){
// define the Analytics object
window.orac = function(){
// add the tasks to the queue
window.orac.q.push(arguments);
};
// create the queue
window.orac.q = window.orac.q || [
['create', 'ORAC-KEY_ID', 'auto'],
['send', 'surf']
];
window.orac.l = new Date().getTime();
}
</script>
<script type='text/javascript' src='//www.elegans-orac.io/behavior.js' async></script>
<!-- End ORAC -->
</code>
</pre>
<h3>Past purchase</h3>
<p>Another way for ORAC to produce newsletter is to receive past purchase. You give us the file in any format you prefer, we take care of feeding ORAC.</p>
<h3>Done!</h3>
<p>Once ORAC has the list of users who authorized you to send email, it will start testing the conversion of messages with different personalizations and timing.</p>
<p>Reports on ORAC performances are produced according to the number and frequency of messages</p>
</div>
</div>
</section>