So, how do I do it?

Let's get started

Here at Round Robin we've endeavoured to make the process of getting started accessible to developers and marketing personnel alike.

The `subject`, `identification` and `route` fields are essential for sending emails via Round Robin.
All other fields of data are reported via email to your specific department/s.

Utilise Labels to match up with your field names; to ensure your emails are human readable.

          
1<form class="round-robin-form">
2 <!-- If your form has a '.success-message' element, it is set to show on success -->
3 <div class="success-message" style="display: none">
4 Thank you! We have received your email.
5 </div>
6 <!-- The subject of your email -->
7 <input type="hidden" name="subject" value="Contact form enquiry" />
8 <!-- Your unique identification key (the key below is just an example) -->
9 <input type="hidden" name="identification" value="zz9ff89a-23ab-4f4b-ade9-d9d500eb344c" />
10 <div class="formContent">
11 <div class="row">
12 <div class="col-xs-12">
13 <div class="form-group">
14 <!-- Specify your routes, usually with a select, this is where Round Robin does its
15 magic and assists in delivering your emails to their specific department -->
16 <select name="route" class="form-control">
17 <option value="NULL">-- Select --</option>
18 <option value="online">Online order enquiry</option>
19 <option value="reservation_enquiries">Bar or table reservation enquiries</option>
20 <option value="host_event">Host an event or experience</option>
21 <option value="media_enquiries">Media enquiries</option>
22 <option value="other_enquiries">All other enquiries</option>
23 </select>
24 </div>
25 </div>
26 <div class="col-xs-12">
27 <div class="form-group">
28 <!-- Labels can be used to substitute the name value when sending form values
29 to email. If you create a label called 'name' and made its value 'Full name' your
30 email would utilise the label 'Full name' for the 'name' field. -->
31 <input type="text" name="name" placeholder="Full Name*" autocapitalize="words" />
32 </div>
33 </div>
34 <div class="col-xs-12">...
35 <div class="form-group">
36 <input type="email" name="email" autocorrect="off" placeholder="Email Address*" />
37 </div>
38 </div>
39 <div class="col-xs-12">
40 <div class="form-group">
41 <textarea name="message" placeholder="Message*"></textarea>
42 </div>
43 </div>
44 </div>
45 <div class="form-button">
46 <button type="submit" class="btn" value="SUBMIT">SUBMIT</button>
47 </div>
48 </div>
49</form>

That's it! The default enlisted email address will already receive submissions, provided you have added the Round Robin javascript to your site before the closing </body> tag.

          
1<script src="https://mxms.s3.ap-southeast-2.amazonaws.com/robin.min.js"></script>
2// Just before closing body tag
3// </body>

We’re here to help

If you're having trouble, perhaps visit our Knowledge Base for more assistance or lodge a ticket with support for us to assist with your store's implementation!