-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpricing.html
853 lines (803 loc) · 50.2 KB
/
pricing.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pricing</title>
<link rel="stylesheet" href="../pricing.css">
</head>
<body>
<div id="navbar">
</div>
<div id="heading">
<h1>Pricing Plans</h1>
<p class="desc">
No credit card required. All plans come with a free, 30-day trial of our Premium features.
</p>
<p class="choose">Choose your billing:</p>
<div id="box">
<button id="white">Annual</button>
<button id="month">Monthly</button>
</div>
</div>
<!-- Cards section -->
<div id="cards-section">
<!-- This section should contain 3 children divs, each div should have h2,h1,p,p,button -->
<div id="back">
<div id="mainBox"></div>
<h2>Free</h2>
<p>Seamless time tracking and reporting designed with freelancers in mind</p>
<h1>$O</h1>
<p id="size">Free for up to 5 users.</p>
<hr>
<h4><span><i class="fa-solid fa-check"></i></span>Unlimited time tracking</h4>
<h4><span><i class="fa-solid fa-check"></i></span>Unlimited projects, clients, and tags</h4>
<h4><span><i class="fa-solid fa-check"></i></span>Exportable reports</h4>
<h4><span><i class="fa-solid fa-check"></i></span>Web app, mobile apps, and desktop apps</h4>
<h4><span><i class="fa-solid fa-check"></i></span>Automated time tracking triggers</h4>
<h4><span><i class="fa-solid fa-check"></i></span>Idle time detection</h4>
<h4><span><i class="fa-solid fa-check"></i></span>Pomodoro timer</h4>
<h4><span><i class="fa-solid fa-check"></i></span>CSV imports</h4>
<h4><span><i class="fa-solid fa-check"></i></span>Personal desktop activity tracking</h4>
<h4><span><i class="fa-solid fa-check"></i></span>Track time in 100+ popular tools</h4>
<button>Get Started</button>
</div>
<div id="back">
<div id="mainBox"></div>
<h2>Starter</h2>
<p>Built for small teams to work at a fast pace without a lot of overhead</p>
<h1>$9</h1>
<p id="size">per user per month</p>
<hr>
<h4><span><i class="fa-solid fa-check"></i></span>Everything in Free +</h4>
<h4><span><i class="fa-solid fa-check"></i></span>Billable rates</h4>
<h4><span><i class="fa-solid fa-check"></i></span>Time rounding for reports</h4>
<h4><span><i class="fa-solid fa-check"></i></span>Favorite time entries</h4>
<h4><span><i class="fa-solid fa-check"></i></span>Create Saved Reports for quick online access</h4>
<h4><span><i class="fa-solid fa-check"></i></span>Project time estimates and alerts</h4>
<h4><span><i class="fa-solid fa-check"></i></span>Tasks (Sub-projects)</h4>
<h4><span><i class="fa-solid fa-check"></i></span>Pre-populated project templates</h4>
<h4><span><i class="fa-solid fa-check"></i></span>View tracked time in your calendar</h4>
<h5>dzjcskdkzvhsdzvjdjkckdvh fndzmcvfxjhkjsdhzc</h5>
<button>Get Started</button>
</div>
<div id="best">
<div id="parrent">Best value</div>
<h2 id="premium">Premium</h2>
<p>Powerful tools to keep growing teams aligned and agile</p>
<h1>$18</h1>
<h6 id="value">per user per month</h6>
<hr>
<h4><i id="p" class="fa-solid fa-check"></i>Everything in Starter +</h4>
<h4><span><i id="p" class="fa-solid fa-check"></i></span>Team time tracking reminders</h4>
<h4><span><i id="p" class="fa-solid fa-check"></i></span>Schedule saved reports via email</h4>
<h4><span><i id="p" lass="fa-solid fa-check"></i></span>Time tracking audits</h4>
<h4><span><i id="p" class="fa-solid fa-check"></i></span>Project forecasts and analysis</h4>
<h4><span><i id="p" class="fa-solid fa-check"></i></span>Centralized control of labor costs and billable rates for
team members</h4>
<h4><span><i id="p" class="fa-solid fa-check"></i></span>Lock time entries and add time for team members</h4>
<h4><span><i id="p" class="fa-solid fa-check"></i></span>Set required fields for time entries</h4>
<h4><span><i id="p" class="fa-solid fa-check"></i></span>Single sign-on (SSO)</h4>
<button id="diff">Get Started</button>
</div>
<div id="back">
<div id="mainBox"></div>
<h2>Enterprise</h2>
<p>Tailored solutions for your large or complex organization</p>
<h1>~</h1>
<p id="size">Custom pricing. Unlimited users.</p>
<hr>
<h4><span><i class="fa-solid fa-check"></i></span>Everything in Premium +</h4>
<h4><span><i class="fa-solid fa-check"></i></span>Manage multiple workspaces under one Organization</h4>
<h4><span><i class="fa-solid fa-check"></i></span>Priority support</h4>
<h4><span><i class="fa-solid fa-check"></i></span>Expert training and assistance</h4>
<h4><span><i class="fa-solid fa-check"></i></span>Customizable solutions</h4>
<h4><span><i class="fa-solid fa-check"></i></span>Volume discounts for large teams on our annual plan</h4>
<h5>lllllllllllllllllllllllllllllllllllllllllllllllllll
lllllllllllllllllllllllllllllllllllllllll
zmn cz nc ncb jshd
jgdc
aghcbaca
zj bn
mn nzn x
ajkewfchjqfehac
ldzhcawidkwqiudwjc
hsgcdjzkhzckjajewhqefuweabvbcnjirujs
ewfegshcjfeuyfwh
keutywecaeryufe
wjefeghcjfwush
cjwfeyhjcd
hjrfwghdcfeuyewghcdzkaiwdkcdacj
hdghcbnjjhcbx
lhcdbnx </h5>
<button>Book a demo</button>
</div>
</div>
<!-- <p id="bottom">All plans come with a free, 30-day trial of Toggl Track Premium—no credit card required. You can choose
to upgrade at the end of the trial or continue using Track for free.
<br>
<br> Still unsure?
</p> -->
<div id="compare">
<p>All plans come with a free, 30-day trial of Toggl Track Premium—no credit card required. You can choose to upgrade at the end of the trial or continue using Track for free.</p>
<p>Still unsure?</p>
<button>Compare all plan features</button>
</div>
</div>
<!-- <div id="main-2">
<div id="study">
<div>
<h2 style="background-color: white;">“Toggl Track increased our profitability by at least 20%. We found out where the team was spending too much time on clients. Toggl Track gave us the ability to restrategize, find out what’s wrong, and fix it.”</h2>
<p style="background-color: white;">— Sweat+Co on Toggl Track’s Premium plan. <span style="background-color: white;">Read the case study</span></p>
</div>
<div>
<img src="https://public-assets.toggl.com/b/static/81d28305aa04efef1d9588833a218978/a9ff4/case-study-sweatandco.avif" alt="">
</div>
</div>
<div id="h2btn">
<h2 style="background-color: white; padding-top: 1%;">Toggl Track is trusted by Sweat+Co and 70,000+ teams</h2>
<button>Try Toggl Track</button>
</div>
<div id="cimeg">
<img src="https://public-assets.toggl.com/b/static/1ede89b0d75ce5a9cd6476ba3f2d6cf4/83e96/brands-oneliner.avif" alt="">
</div> -->
<div id="faq">
<h1>FAQs</h1>
</div>
<div id="faqdiv">
<h4>Is Toggl Track free for an unlimited number of users?</h4>
<h4>How is the subscription fee calculated for paid plans?</h4>
<h4>You mentioned that Toggl Track is free for up to 5 users. If I’m on a paid plan, do I only need to pay for the 6th user?</h4>
<h4>Does Toggl Track offer discounts?</h4>
<h4>It keeps taking me to a page where it says I’m signing up for a trial of Premium. I’d just like to sign up for a Free plan.</h4>
<h4>If I sign up for a Free plan but add 6 users to my Workspace during my free Premium trial, what will happen to the 6th user once the 30 days are up?</h4>
<h4>If I use your Premium features during the trial, what happens to all the data related to paid features (Tasks, Billable Rates, etc.) once my Workspace downgrades to the Free plan?</h4>
<h4>Does Toggl Track have desktop or mobile apps? Are they free?</h4>
<h4>If I have a paid Toggl Plan subscription, do I need to pay for Toggl Track?</h4>
</div>
</div>
<div id="signline" style="background-color: pink" >
<h2 style="color: black;background-color: pink;">Sign up for <span style="background-color: pink;"> free</span>. No credit card required.</h2>
<div>
<form style="background-color: pink;">
<input type="email" placeholder="Email">
<input type="password" placeholder="A Strong Password">
<input type="submit" value="Sign up with email">
</form>
<p style="background-color: pink;">Or sign up with:</p>
<img src="https://www.freepnglogos.com/uploads/google-logo-png/google-logo-png-google-icon-download-icons-18.png" alt=""; style="background-color: pink; display: block;">
<img src="https://www.freepnglogos.com/uploads/apple-logo-png/apple-logo-png-dallas-shootings-don-add-are-speech-zones-used-4.png" alt="">
</div>
<p style="background-color: pink;">By signing up, you agree to our <u style="background-color: pink;">terms of service</u>, <u style="background-color: pink;">privacy policy</u> and to receiving marketing communication from Toggl Track. You can opt out anytime.</p>
</div>
<div id="demo">
<p> Onboarding a team?</p>
<p>Book a demo</p>
</div>
</div>
<div id="main-table" style="width: 80%;margin: auto; background-color: white;">
<h1 style="text-align: center; font-size: 60px;color: bisque;">Full Plan Comparison</h1>
<table class="table" >
<tbody>
<tr>
<td class="tooltip">
<div class="tooltip">Multiple users</div>
<div class="tooltiptext">Each of your team members will have a secure and unique login</div>
</td>
<td>Unlimited</td>
<td>Unlimited</td>
<td>Unlimited</td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">User roles & permissions</div>
<div class="tooltiptext">Manage individual permission settings and control access to features to suit different roles</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Two Factor Authentication</div>
<div class="tooltiptext">Multiple layers of protection will keep your account secure.</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
</tbody>
</table>
<h1 style="display: block;background-color: #564260; color: white;">Time Tracking</h1>
<table class="table">
<tbody>
<tr>
<td class="tooltip">
<div class="tooltip">Drag-and-drop builder</div>
<div class="tooltiptext">Easily use different content blocks to build beautiful, professional emails</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Customizable template library</div>
<div class="tooltiptext">Choose from over over 100 customizable, responsive designs</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Custom coded templates</div>
<div class="tooltiptext">Import custom coded HTML emails, either by uploading from your computer, or importing from the web.</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Branded templates</div>
<div class="tooltiptext">Enter your URL, and we'll directly import your creative elements into a collection of templates to ensure your emails are always on brand.</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Segmentation tools</div>
<div class="tooltiptext">Easily segment your audience to drive tailored email content to your subscribers</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td>Advanced engagement segments</td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Free image gallery</div>
<div class="tooltiptext">Access to over 2 million free Unsplash images directly in the email builder, to help you send beautiful, engaging emails</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Signup forms</div>
<div class="tooltiptext">Grow your list with signup pages and pop-up forms, hosted by us or on your site</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Mobile optimization tools</div>
<div class="tooltiptext">Ensure your emails look perfect on desktop and mobile with our mobile layout & background image settings</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">A/B testing</div>
<div class="tooltiptext">Send two options of an email to test which performs best</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Preference Center</div>
<div class="tooltiptext">Make it easy for subscribers to modify how you interact with them, instead of unsubscribing all together</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Real-time reporting analytics</div>
<div class="tooltiptext">Get a comprehensive view of your email marketing performance with subscriber growth and engagement reports.</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Worldview reporting</div>
<div class="tooltiptext">Watch subscribers open and click in real-time across the globe</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
</tbody>
</table>
<h1 style="display: block;background-color: #564260; color: white;">Team Management</h1>
<table class="table">
<tbody>
<tr>
<td class="tooltip">
<div class="tooltip">Automated emails</div>
<div class="tooltiptext">Create an automated journey to welcome new subscribers and keep them engaged over time, based on a set trigger</div>
</td>
<td>Limited to email send volume</td>
<td>Unlimited</td>
<td>Unlimited</td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">RSS feed trigger</div>
<div class="tooltiptext">Use your website's RSS feed to create and send emails automatically.</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Transactional emails</div>
<div class="tooltiptext">Automatically send emails based on a specific subscriber action such as invoices or account confirmation. *Volume limited to subscriber tier</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Campaign Tags</div>
<div class="tooltiptext">Organize, categorize, and sort your draft and sent campaigns.</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Dynamic content</div>
<div class="tooltiptext">Deliver unique, targeted content to each subscriber from a single email</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Custom fields</div>
<div class="tooltiptext">Personalize content and plan more targeted campaigns using your individual subscriber data.</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Countdown timer</div>
<div class="tooltiptext">A live-updating timer that makes it easy to drive urgency for limited-time offers.</div>
</td>
<td></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Time zone sending</div>
<div class="tooltiptext">Maximize email performance by setting a specific time for delivery, and your message will be delivered at that time across every time zone.</div>
</td>
<td></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Send time optimization</div>
<div class="tooltiptext">Let Campaign Monitor determine the best time to deliver based on how each of your individual subscribers have historically interacted with your campaigns.</div>
</td>
<td></td>
<td></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Email section locking</div>
<div class="tooltiptext">Ensure your campaigns are always on brand by assigning content editing permissions to your email templates.</div>
</td>
<td></td>
<td></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Advanced link tracking</div>
<div class="tooltiptext">Track how your email campaign performs in third party platforms like Omniture, WebTrends, & Core Metrics.</div>
</td>
<td></td>
<td><</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
</tbody>
</table>
<h1 style="display: block;background-color: #564260; color: white;">Reporting</h1>
<table class="table">
<tr>
<td class="tooltip">
<div class="tooltip">Link review</div>
<div class="tooltiptext">Automatically tests all of your links right in the builder and notifies you of any that are broken or missing.</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Design & spam testing</div>
<div class="tooltiptext">Our automated test tool shows what your email will look like in all the major email clients and runs your campaign through popular spam filters to detect anything that could prevent delivery.</div>
</td>
<td></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Email support</div>
<div class="tooltiptext">Instant access to our industry-leading support team</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td>Priority</td>
<td>Primier</td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Phone support</div>
<div class="tooltiptext">24/5 access to our industry-leading support team</div>
</td>
<td></td>
<td></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Deliverability support</div>
<div class="tooltiptext">Our expert deliverability team helps investigate any delivery issues that may arise.</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Help Center</div>
<div class="tooltiptext">24/7 access to our expansive list of resources and robust help documentation.</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Training videos</div>
<div class="tooltiptext">Get the most out of Campaign Monitor with our step‑by‑step videos and tutorials.</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Email Academy</div>
<div class="tooltiptext">Learn everything you need to know about email theory and best practices with our extensive email course.</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
</table>
<h1 style="display: block;background-color: #564260; color: white;">Project Management</h1>
<table class="table">
<tbody>
<tr>
<td class="tooltip">
<div class="tooltip">API access</div>
<div class="tooltiptext">Build custom integrations with any platform through our robust API</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Advertising</div>
<div class="tooltiptext">Drive ad revenue through email</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Billing</div>
<div class="tooltiptext">Integrate Campaign Monitor with billing systems and tools</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">CMS</div>
<div class="tooltiptext">ntegrate with your content management system</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Content & video</div>
<div class="tooltiptext">Take content to the next level with video, live feeds and more</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">CRM</div>
<div class="tooltiptext">Combine the power of your CRM and Campaign Monitor</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">E-commerce</div>
<div class="tooltiptext">Connect your online store to send powerful automations and transactional emails</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Email address verification</div>
<div class="tooltiptext">Remove bad addresses and keep your lists healthy</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Email testing</div>
<div class="tooltiptext">Test and optimize your emails across inboxes and devices</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Events</div>
<div class="tooltiptext">Manage event communications by integrating with your event system</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Landing pages</div>
<div class="tooltiptext">Drive subscribers to beautiful, branded landing pages</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Lifecycle marketing</div>
<div class="tooltiptext">Incorporate email at every stage of the customer journey to increase conversions and drive revenue</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">List management</div>
<div class="tooltiptext">Sync your contacts from other applications</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Loyalty & referral</div>
<div class="tooltiptext">Drive loyalty and referrals for your company through email</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Mobile</div>
<div class="tooltiptext">Align your marketing across devices</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Personalization</div>
<div class="tooltiptext">Harness data to deliver your subscribers a personalized email experience</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Reporting & analytics</div>
<div class="tooltiptext">Automate and streamline your reporting across apps</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Signup forms</div>
<div class="tooltiptext">Grow your Campaign Monitor lists with these simple and powerful signup forms</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Social</div>
<div class="tooltiptext">Align your social and email marketing strategy</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Surveys</div>
<div class="tooltiptext">Create and sync survey data with Campaign Monitor</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
</tbody>
</table>
<h1 style="display: block;background-color: #564260; color: white;">Integrations</h1>
<table class="table">
<tbody>
<tr>
<td class="tooltip">
<div class="tooltip">Tiered account setup</div>
<div class="tooltiptext">Set up multiple sub-accounts under a main administrative account</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Client dashboard</div>
<div class="tooltiptext">Our agency overview page makes it easy to view the latest activity of all your clients within your account.</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">User roles & permissions</div>
<div class="tooltiptext">Manage individual permission settings and control access to features to suit different roles & clients</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Private labeling</div>
<div class="tooltiptext">Choose to remove all Campaign Monitor branding from the app and replace it with your own</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Markup options</div>
<div class="tooltiptext">Add a markup to the base price and let our billing system handle everything on your behalf, while you watch the profits roll in.</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">In-app billing management</div>
<div class="tooltiptext">Manage all of your billing in one place and let our system track everything for you.</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Contract & PAYG options</div>
<div class="tooltiptext">Bill clients independently based on what works for them.</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Email section locking</div>
<div class="tooltiptext">Ensure your campaigns are always on brand by assigning content editing permissions to your email templates.</div>
</td>
<td></td>
<td></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Unique API keys by subaccount</div>
<div class="tooltiptext">Control the number of calls and identify usage patterns by assigning each subaccount their own API key.</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Template sharing</div>
<div class="tooltiptext">Share templates across with your subaccounts</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Automation sharing</div>
<div class="tooltiptext">Share automations across with your subaccounts</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
<tr>
<td class="tooltip">
<div class="tooltip">Charge in local currency</div>
</td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
<td><img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/160/google/56/heavy-check-mark_2714.png" alt=""></td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>