-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwhat-is-rcs.html
More file actions
944 lines (930 loc) · 31.4 KB
/
Copy pathwhat-is-rcs.html
File metadata and controls
944 lines (930 loc) · 31.4 KB
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
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
---
layout: null
permalink: /what-is-rcs/
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>What is RCS? A plain-English guide — RightOnQ</title>
<meta name="description" content="A plain-English UK business guide to RCS: what Rich Communication Services means, how it differs from SMS, what it can send, and what the caveats are.">
<link rel="canonical" href="https://www.rightonq.co.uk/what-is-rcs/">
<meta property="og:title" content="What is RCS? A plain-English guide — RightOnQ">
<meta property="og:description" content="A plain-English UK business guide to RCS: what Rich Communication Services means, how it differs from SMS, what it can send, and what the caveats are.">
<meta property="og:url" content="https://www.rightonq.co.uk/what-is-rcs/">
<meta property="og:type" content="article">
<meta property="og:image" content="https://www.rightonq.co.uk/og-image.png">
<meta property="og:site_name" content="RightOnQ">
<meta property="og:locale" content="en_GB">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="What is RCS? A plain-English guide — RightOnQ">
<meta name="twitter:description" content="A plain-English UK business guide to RCS: what Rich Communication Services means, how it differs from SMS, what it can send, and what the caveats are.">
<meta name="twitter:image" content="https://www.rightonq.co.uk/og-image.png">
<meta name="robots" content="index, follow">
<link rel="icon" type="image/png" href="/favicon.png">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Google tag (gtag.js) with UK GDPR consent mode -->
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('consent', 'default', {
'ad_storage': 'denied',
'analytics_storage': 'denied',
'ad_user_data': 'denied',
'ad_personalization': 'denied',
'wait_for_update': 500
});
gtag('js', new Date());
gtag('config', 'G-3CYR726BFR');
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3CYR726BFR"></script>
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
<style>
:root {
--navy: #101a2a;
--navy-deep: #0c1420;
--panel: #18263a;
--panel-soft: #20324a;
--blue: #3478d8;
--blue-light: #67a6ff;
--gold: #d6b65a;
--green: #35b978;
--white: #f7fbff;
--grey: #a9b7ca;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
background: linear-gradient(135deg, rgba(16,26,42,0.99), rgba(20,34,52,0.98));
color: var(--white);
font-family: 'DM Sans', sans-serif;
font-weight: 300;
}
nav {
position: fixed;
inset: 0 0 auto;
z-index: 10;
padding: 20px 60px;
display: flex;
align-items: center;
justify-content: space-between;
background: rgba(12,20,32,0.88);
border-bottom: 1px solid rgba(255,255,255,0.06);
backdrop-filter: blur(18px);
}
.logo {
display: flex;
align-items: center;
text-decoration: none;
}
.logo-svg { width: 44px; height: 44px; flex-shrink: 0; }
.logo-img {
width: 280px;
height: 62px;
object-fit: contain;
object-position: left center;
display: block;
}
.logo-text {
font-family: 'Syne', sans-serif;
font-weight: 700;
font-size: 20px;
color: var(--white);
letter-spacing: 0.06em;
}
.logo-text span { color: var(--blue); }
.nav-links {
display: flex;
align-items: center;
gap: 24px;
}
.nav-links a {
font-family: 'DM Sans', sans-serif;
color: #8A9BB5;
font-size: 14px;
font-weight: 500;
text-decoration: none;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
nav a.cta-nav {
color: var(--white);
padding: 10px 24px;
border: 1px solid rgba(47, 111, 210, 0.5);
border-radius: 6px;
white-space: nowrap;
}
nav a.cta-nav:hover {
background: var(--blue);
border-color: var(--blue);
}
.nav-return {
color: #8A9BB5;
text-decoration: none;
font-weight: 500;
font-size: 14px;
}
main {
width: min(100%, 1180px);
margin: 0 auto;
padding: 156px 60px 80px;
}
.tag {
display: flex;
align-items: center;
gap: 12px;
color: var(--blue-light);
font-size: 13px;
font-weight: 800;
letter-spacing: 0.18em;
text-transform: uppercase;
margin-bottom: 26px;
}
.tag::before {
content: '';
width: 42px;
height: 2px;
background: var(--blue);
}
h1 {
font-family: 'Syne', sans-serif;
font-weight: 800;
font-size: clamp(28px, 3.4vw, 40px);
line-height: 1.14;
letter-spacing: -0.02em;
max-width: 660px;
margin-bottom: 32px;
}
h1 em { color: var(--blue); font-style: normal; }
.intro {
max-width: 580px;
color: var(--grey);
font-size: clamp(16px, 2vw, 20px);
font-weight: 300;
line-height: 1.7;
margin-bottom: 42px;
}
.availability-note {
max-width: 760px;
color: rgba(169,183,202,0.82);
font-size: 15px;
line-height: 1.65;
border-left: 2px solid var(--blue);
padding-left: 18px;
margin: -18px 0 56px;
}
.bottom-actions {
margin-top: 34px;
margin-bottom: 30px;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 54px;
padding: 0 24px;
border-radius: 6px;
font-weight: 800;
text-decoration: none;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-secondary {
color: var(--grey);
border: 1px solid rgba(103,166,255,0.32);
}
.explainer-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
margin-bottom: 60px;
}
.card {
background: rgba(255,255,255,0.045);
border: 1px solid rgba(255,255,255,0.10);
border-radius: 10px;
padding: 24px;
}
.card h2 {
font-family: 'Syne', sans-serif;
font-size: 20px;
line-height: 1.2;
margin-bottom: 14px;
}
.card p,
.card li {
color: var(--grey);
font-size: 15px;
line-height: 1.65;
}
.card ul {
display: grid;
gap: 9px;
list-style: none;
}
.card li {
position: relative;
padding-left: 18px;
}
.card li::before {
content: '';
position: absolute;
left: 0;
top: 0.72em;
width: 7px;
height: 7px;
border-radius: 50%;
background: var(--green);
}
.plain-section {
margin-bottom: 60px;
}
.section-kicker {
display: inline-flex;
align-items: center;
gap: 10px;
color: var(--blue-light);
font-size: 12px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
margin-bottom: 14px;
}
.section-kicker::before {
content: "";
width: 28px;
height: 1px;
background: var(--blue);
}
.plain-section h2 {
font-family: 'Syne', sans-serif;
font-weight: 800;
font-size: clamp(28px, 3.4vw, 40px);
line-height: 1.14;
letter-spacing: 0;
max-width: 850px;
margin-bottom: 24px;
}
.plain-section h2 em {
color: var(--blue);
font-style: normal;
}
.plain-copy {
max-width: 850px;
color: var(--grey);
font-size: 17px;
line-height: 1.75;
}
.plain-copy + .plain-copy { margin-top: 16px; }
.flow-diagram {
display: grid;
grid-template-columns: 1fr auto 1fr auto 1fr;
gap: 12px;
align-items: center;
margin-top: 30px;
}
.flow-step {
min-height: 130px;
background: rgba(255,255,255,0.045);
border: 1px solid rgba(255,255,255,0.10);
border-radius: 10px;
padding: 18px;
}
.flow-step strong {
display: block;
font-family: 'Syne', sans-serif;
color: var(--white);
font-size: 17px;
margin-bottom: 8px;
}
.flow-step span {
color: var(--grey);
font-size: 14px;
line-height: 1.5;
}
.flow-arrow {
color: var(--blue-light);
font-family: 'Syne', sans-serif;
font-size: 28px;
font-weight: 900;
}
.wide {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 18px;
align-items: stretch;
margin-bottom: 60px;
}
.example-kicker {
margin-bottom: 18px;
}
.sms-box,
.rcs-box {
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.10);
border-radius: 10px;
padding: 28px;
}
.sms-box { opacity: 0.82; }
.rcs-box { border-color: rgba(103,166,255,0.28); background: rgba(52,120,216,0.08); }
.rcs-box > h2 {
color: var(--gold);
}
.message-demo {
margin-top: 22px;
background: #101928;
border: 1px solid rgba(255,255,255,0.10);
border-radius: 16px;
padding: 18px;
overflow: hidden;
max-width: 365px;
}
.brand-row {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 14px;
font-weight: 800;
}
.brand-dot {
width: 34px;
height: 34px;
border-radius: 50%;
display: grid;
place-items: center;
color: var(--gold);
border: 1px solid rgba(214,182,90,0.8);
background: #172238;
font-family: 'Syne', sans-serif;
font-size: 11px;
font-weight: 900;
}
.brand-name {
display: flex;
align-items: center;
gap: 7px;
color: var(--white);
font-size: 13px;
font-weight: 800;
letter-spacing: 0.08em;
}
.verified-dot {
width: 15px;
height: 15px;
border-radius: 50%;
display: inline-grid;
place-items: center;
background: var(--green);
color: white;
font-size: 10px;
line-height: 1;
}
.brand-sub {
margin-top: 3px;
color: rgba(247,251,255,0.48);
font-size: 11px;
font-weight: 500;
}
.carousel-window {
overflow: hidden;
border-radius: 14px;
}
.carousel-track {
display: flex;
gap: 14px;
transition: transform 0.28s ease;
}
.carousel-card {
flex: 0 0 100%;
background: rgba(255,255,255,0.045);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 14px;
padding: 12px;
overflow: hidden;
}
.message-image {
height: 170px;
border-radius: 10px;
background-size: cover;
background-position: center 52%;
background-repeat: no-repeat;
border: 1px solid rgba(255,255,255,0.08);
margin-bottom: 0;
}
.message-image--exterior {
background-image: url('/images/aston-martin-db6-rcs-card.jpg'), url('images/aston-martin-db6-rcs-card.jpg');
background-size: cover;
background-position: center 50%;
}
.message-image--interior {
background-image: url('/images/aston-martin-db6-interior.jpg'), url('images/aston-martin-db6-interior.jpg');
background-position: center 56%;
}
.message-image--engine {
background-image: url('/images/aston-martin-db6-engine.jpg'), url('images/aston-martin-db6-engine.jpg');
background-position: center 50%;
}
.message-image--food-launch {
background-image: url('/images/hometown-brewery-open-harvest.png'), url('images/hometown-brewery-open-harvest.png');
background-position: center 52%;
}
.message-image--food-event {
background-image: url('/images/hometown-brewery-open-harvest-event.png'), url('images/hometown-brewery-open-harvest-event.png');
background-position: center 50%;
}
.message-image--food-range {
background-image: url('/images/hometown-brewery-james-mitchell.png'), url('images/hometown-brewery-james-mitchell.png');
background-position: center 50%;
}
.carousel-card h3 {
font-family: 'Syne', sans-serif;
font-size: 17px;
line-height: 1.2;
margin-top: 10px;
margin-bottom: 6px;
}
.carousel-note {
color: rgba(247,251,255,0.72);
font-size: 13px;
line-height: 1.38;
margin-bottom: 10px;
}
.chip-row {
display: grid;
gap: 6px;
}
.chip {
border: 1px solid rgba(214,182,90,0.78);
border-radius: 999px;
padding: 8px 12px;
color: #f0d881;
text-align: center;
font-weight: 800;
font-size: 13px;
}
.chip:last-child {
border-color: rgba(103,166,255,0.55);
color: #b7d5ff;
}
.carousel-controls {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
margin-top: 14px;
}
.carousel-control {
width: 34px;
height: 34px;
border-radius: 50%;
border: 1px solid rgba(103,166,255,0.34);
background: rgba(52,120,216,0.12);
color: var(--white);
font-size: 18px;
cursor: pointer;
}
.carousel-dots {
display: flex;
gap: 7px;
}
.carousel-dot {
width: 7px;
height: 7px;
border-radius: 50%;
background: rgba(247,251,255,0.28);
}
.carousel-dot.is-active { background: var(--blue-light); }
.sms-demo {
margin-top: 24px;
max-width: 365px;
background: #101928;
border: 1px solid rgba(255,255,255,0.10);
border-radius: 16px;
padding: 18px;
}
.sms-demo-top {
display: flex;
align-items: center;
justify-content: space-between;
color: rgba(247,251,255,0.58);
font-size: 12px;
font-weight: 700;
margin-bottom: 16px;
}
.sms-sender {
color: rgba(247,251,255,0.82);
font-weight: 800;
}
.sms-bubble {
background: rgba(255,255,255,0.10);
border-radius: 17px 17px 17px 4px;
padding: 14px 15px;
color: rgba(247,251,255,0.82);
font-size: 14px;
line-height: 1.45;
}
.sms-compose {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
border: 1px solid rgba(255,255,255,0.14);
border-radius: 999px;
margin-top: 14px;
padding: 9px 11px 9px 14px;
color: rgba(247,251,255,0.38);
font-size: 12px;
}
.sms-send-dot {
width: 24px;
height: 24px;
border-radius: 50%;
display: grid;
place-items: center;
background: rgba(247,251,255,0.14);
color: rgba(247,251,255,0.48);
font-size: 13px;
}
.sms-limit {
margin-top: 13px;
color: rgba(169,183,202,0.72);
font-size: 12px;
line-height: 1.5;
}
.good-bad-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 18px;
margin-bottom: 60px;
}
.good-bad-card {
background: rgba(255,255,255,0.045);
border: 1px solid rgba(255,255,255,0.10);
border-radius: 10px;
padding: 26px;
}
.good-bad-card h2 {
font-family: 'Syne', sans-serif;
font-size: 24px;
margin-bottom: 16px;
}
.good-bad-card ul {
display: grid;
gap: 11px;
list-style: none;
}
.good-bad-card li {
color: var(--grey);
font-size: 15px;
line-height: 1.6;
padding-left: 20px;
position: relative;
}
.good-bad-card li::before {
content: "";
position: absolute;
left: 0;
top: 0.72em;
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--green);
}
.good-bad-card--caveat li::before { background: var(--gold); }
.footer-note {
color: rgba(169,183,202,0.72);
font-size: 13px;
line-height: 1.7;
border-top: 1px solid rgba(255,255,255,0.08);
padding-top: 26px;
}
.source-list {
display: grid;
gap: 8px;
margin-top: 14px;
}
.source-list a {
color: var(--blue-light);
text-decoration: none;
}
.source-list a:hover { color: var(--white); }
footer {
padding: 44px 60px;
border-top: 1px solid rgba(255,255,255,0.06);
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 24px;
}
.footer-logo { display: flex; align-items: center; gap: 18px; }
.footer-mark { width: 54px; height: 54px; object-fit: contain; flex: 0 0 auto; }
.footer-left { font-size: 13px; color: rgba(255,255,255,0.25); line-height: 1.8; }
.footer-right { font-size: 13px; color: rgba(255,255,255,0.25); line-height: 1.55; text-align: right; }
.footer-trade { display: block; margin-bottom: 5px; color: rgba(255,255,255,0.24); }
.footer-trade .tm-mark {
color: inherit;
font-size: 0.58em;
font-weight: 500;
vertical-align: super;
margin-left: 0.08em;
letter-spacing: 0;
}
.footer-right a {
color: #4A8AE8;
font-size: 13px;
text-decoration: none;
transition: color 0.2s;
}
.footer-right a:hover { color: var(--white); }
@media (max-width: 900px) {
nav { padding: 14px 16px; }
.logo-img { width: 150px; height: 40px; }
.nav-links { gap: 12px; }
.nav-links a { font-size: 13px; }
nav a.cta-nav { padding: 8px 14px; }
main { padding: 112px 24px 64px; }
h1 {
font-size: clamp(22px, 7vw, 32px);
line-height: 1.16;
}
.plain-section h2 {
font-size: clamp(22px, 7vw, 32px);
line-height: 1.16;
}
.explainer-grid,
.wide,
.good-bad-grid { grid-template-columns: 1fr; }
.flow-diagram { grid-template-columns: 1fr; }
.flow-arrow { transform: rotate(90deg); justify-self: center; }
footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
.footer-right { text-align: left; }
}
@media (max-width: 640px) {
nav { align-items: center; gap: 12px; }
.nav-links { flex-wrap: nowrap; justify-content: flex-end; }
.nav-links a:first-child { display: none; }
.logo-img { width: 142px; height: 38px; }
}
</style>
</head>
<body>
<nav>
<a href="/" class="logo">
<img class="logo-img" src="/images/rightonq-logo-transparent.png" onerror="this.onerror=null;this.src='images/rightonq-logo-transparent.png';" alt="RightOnQ">
</a>
<div class="nav-links">
<a href="/">Home</a>
<a href="/blog/">Blog</a>
<a href="/#contact" class="cta-nav">Get in touch</a>
</div>
</nav>
<main>
<div class="tag">RCS in plain English</div>
<h1>What is RCS, and why does it <em>matter?</em></h1>
<p class="intro">RCS stands for Rich Communication Services. It is the modern upgrade to SMS: your business name, logo, images, buttons and verified sender identity, delivered on the same message screen people already use for texts.</p>
<p class="availability-note">For most modern UK business audiences, RCS support is increasingly normal. On iPhone, RCS requires iOS 18 or later and a supporting carrier; iOS 18 was released in September 2024 and quickly reached the majority of compatible iPhones. Where RCS is not available, SMS or MMS fallback still carries the essential message.</p>
<section class="plain-section">
<div class="section-kicker">SMS vs RCS</div>
<h2>SMS is plain text. RCS adds brand, images and <em>reply buttons.</em></h2>
<p class="plain-copy">SMS stands for Short Message Service. It is simple, reliable and cost-effective, which is why it still works so well for bulk alerts, staff updates, appointment reminders and short operational messages. It reaches almost every mobile phone and everyone understands it.</p>
<p class="plain-copy">But SMS was built for a plainer world. It does not naturally carry brand identity, photography, product context or tap-to-reply choices. For sales, marketing and customer outreach teams competing with visual channels such as social media and email, that leaves a gap. RCS fills that gap by bringing richer presentation and clearer response paths into the same message screen.</p>
</section>
<div class="section-kicker example-kicker">RCS carousel examples</div>
<section class="wide" aria-label="RCS carousel examples">
<div class="rcs-box">
<h2>Luxury motor outreach example.</h2>
<p>Your business can show its name, logo and verified sender identity, then send rich cards with images and buttons the recipient can tap.</p>
<div class="message-demo" aria-label="Example RCS carousel message">
<div class="brand-row">
<span class="brand-dot">AM</span>
<span>
<span class="brand-name">APEX MOTORS <span class="verified-dot">✓</span></span>
<span class="brand-sub">Verified business sender</span>
</span>
</div>
<div class="carousel-window">
<div class="carousel-track" id="rcs-carousel-track">
<div class="carousel-card">
<div class="message-image message-image--exterior"></div>
<h3>Just arrived</h3>
<p class="carousel-note">1966 DB6 Aston in Snow Shadow Grey. We wanted you to be among the first to see it. Tap below if it's of interest or not.</p>
<div class="chip-row">
<div class="chip">Book appointment</div>
<div class="chip">More information</div>
<div class="chip">Not my cup of tea</div>
</div>
</div>
<div class="carousel-card">
<div class="message-image message-image--interior"></div>
<h3>Interior detail</h3>
<p class="carousel-note">Use the carousel to show cabin, trim and provenance without sending a separate message.</p>
<div class="chip-row">
<div class="chip">More information</div>
<div class="chip">Arrange a call</div>
<div class="chip">Not my cup of tea</div>
</div>
</div>
<div class="carousel-card">
<div class="message-image message-image--engine"></div>
<h3>Engine bay</h3>
<p class="carousel-note">Each card can carry its own image and next step, while staying inside one campaign.</p>
<div class="chip-row">
<div class="chip">Book appointment</div>
<div class="chip">More information</div>
<div class="chip">Not my cup of tea</div>
</div>
</div>
</div>
</div>
<div class="carousel-controls" aria-label="Carousel controls">
<button class="carousel-control" type="button" id="rcs-carousel-prev" aria-label="Previous carousel card">‹</button>
<div class="carousel-dots" aria-hidden="true" id="rcs-carousel-dots">
<span class="carousel-dot is-active"></span>
<span class="carousel-dot"></span>
<span class="carousel-dot"></span>
</div>
<button class="carousel-control" type="button" id="rcs-carousel-next" aria-label="Next carousel card">›</button>
</div>
</div>
</div>
<div class="rcs-box">
<h2>Brewery launch example.</h2>
<p>A brewery can show a new bottled ale, invite trade buyers to a launch event, then give people a clear one-tap way to respond.</p>
<div class="message-demo" aria-label="Example brewery RCS carousel message">
<div class="brand-row">
<span class="brand-dot">HB</span>
<span>
<span class="brand-name">HOMETOWN BREWERY <span class="verified-dot">✓</span></span>
<span class="brand-sub">Verified business sender</span>
</span>
</div>
<div class="carousel-window">
<div class="carousel-track" id="food-carousel-track">
<div class="carousel-card">
<div class="message-image message-image--food-launch"></div>
<h3>Open Harvest</h3>
<p class="carousel-note">A traditional bottled ale for pubs, farm shops and independent retailers looking for a fresh seasonal line.</p>
<div class="chip-row">
<div class="chip">Send sample case</div>
<div class="chip">Arrange a visit</div>
<div class="chip">Not for us</div>
</div>
</div>
<div class="carousel-card">
<div class="message-image message-image--food-event"></div>
<h3>June 2026 launch event</h3>
<p class="carousel-note">Invite selected buyers to the Open Harvest launch, with tasting notes, event details and a direct response.</p>
<div class="chip-row">
<div class="chip">RSVP</div>
<div class="chip">Undecided</div>
<div class="chip">Far too busy</div>
</div>
</div>
<div class="carousel-card">
<div class="message-image message-image--food-range"></div>
<h3>Meet James Mitchell</h3>
<p class="carousel-note">Introduce a new sales representative to trade partners with a clear, friendly way to respond.</p>
<div class="chip-row">
<div class="chip">Arrange a meet-up</div>
<div class="chip">Wish James all the best</div>
</div>
</div>
</div>
</div>
<div class="carousel-controls" aria-label="Food carousel controls">
<button class="carousel-control" type="button" id="food-carousel-prev" aria-label="Previous food carousel card">‹</button>
<div class="carousel-dots" aria-hidden="true" id="food-carousel-dots">
<span class="carousel-dot is-active"></span>
<span class="carousel-dot"></span>
<span class="carousel-dot"></span>
</div>
<button class="carousel-control" type="button" id="food-carousel-next" aria-label="Next food carousel card">›</button>
</div>
</div>
</div>
</section>
<section class="plain-section">
<div class="section-kicker">How it works</div>
<h2>RCS first, SMS fallback when the phone cannot receive <em>RCS.</em></h2>
<p class="plain-copy">The message is sent as RCS first. If the recipient’s phone and network are set up for RCS, they receive the rich version with branding, images and reply buttons. If RCS is not available, the message falls back to SMS or MMS, so the essential information still reaches them in a plainer format.</p>
</section>
<section class="explainer-grid">
<div class="card">
<h2>Why business owners care</h2>
<ul>
<li>Your message is clearly verified as coming from your business, not an unknown sender.</li>
<li>Customers recognise the brand, trust the message and act with more confidence.</li>
<li>Important offers, appointments or launches do not have to fight the email inbox.</li>
<li>Your team can see who has responded and what they asked for.</li>
</ul>
</div>
<div class="card">
<h2>What RCS brings in</h2>
<ul>
<li>Verified business name, logo and sender profile.</li>
<li>Photos, rich cards, carousels and longer messages.</li>
<li>Buttons for actions such as book, call, more information or not interested.</li>
<li>One campaign can give recipients clear next steps, from viewing more detail to booking a call or saying not interested.</li>
<li>Delivery and response signals that help with follow-up.</li>
</ul>
</div>
<div class="card">
<h2>Return on message spend</h2>
<ul>
<li>RCS costs more than basic SMS, so it suits messages where the outcome matters.</li>
<li>The gain is stronger brand presence, richer context and a clearer reason to respond.</li>
<li>One-tap replies reduce friction for people who are busy but interested.</li>
<li>Best used for launches, appointments, premium offers, relationship updates and buyer follow-up.</li>
</ul>
</div>
</section>
<section class="good-bad-grid" aria-label="RCS advantages and caveats">
<div class="good-bad-card">
<h2>What is good about it?</h2>
<ul>
<li>Messages can arrive with your business name, logo and verified sender profile.</li>
<li>Images, carousels and buttons can make the message easier to understand.</li>
<li>Customers can tap a clear next step instead of typing a reply from scratch.</li>
<li>It can feel more trustworthy than a random number or a cold-looking SMS.</li>
</ul>
</div>
<div class="good-bad-card good-bad-card--caveat">
<h2>What are the catches?</h2>
<ul>
<li>Business RCS needs registration and approval before messages go live.</li>
<li>It costs more than basic SMS, especially for rich cards, replies and premium scheduling.</li>
<li>Rendering can vary by phone, carrier, country and messaging client.</li>
<li>Fallback SMS protects reach, but it cannot show the full rich RCS experience.</li>
</ul>
</div>
</section>
<section class="plain-section">
<div class="section-kicker">The simple answer</div>
<h2>RCS is worth looking at when trust and presentation <em>matter.</em></h2>
<p class="plain-copy">If you only need to send the cheapest possible line of text, SMS still has a place. If the message carries brand value, product detail, appointment intent, customer choice or a reason to act, RCS gives you more to work with.</p>
<p class="plain-copy">The best use of RCS is not every message. It is the messages where presentation, trust and a clear response can change what happens next.</p>
</section>
<div class="bottom-actions">
<a href="/" class="btn btn-primary">Return to homepage</a>
</div>
<div class="footer-note">
This guide is based on public guidance from RCS, mobile platform and industry sources, simplified for RightOnQ customers. Final behaviour can vary by country, carrier, device support, RCS registration status and fallback configuration.
<div class="source-list" aria-label="RCS guide sources">
<a href="https://developers.google.com/business-communications/rcs-business-messaging/guides/learn/rich-cards" target="_blank" rel="noopener">Google: RCS rich cards</a>
<a href="https://support.apple.com/en-us/122195" target="_blank" rel="noopener">Apple: RCS messaging on iPhone</a>
<a href="https://www.openmarket.com/blog/why-use-rcs-here-are-five-reasons-to-start/" target="_blank" rel="noopener">OpenMarket/GSMA: RCS Business Messaging research</a>
</div>
</div>
</main>
<footer>
<div class="footer-logo">
<img class="footer-mark" src="/images/rightonq-calendar-mark-transparent.png" onerror="this.onerror=null;this.src='images/rightonq-calendar-mark-transparent.png';" alt="RightOnQ calendar mark">
<div class="footer-left">
© <span id="footer-year">2026</span> Continuity AI Ltd. Registered in England & Wales.<br>
Companies House No. 17119848
</div>
</div>
<div class="footer-right">
<span class="footer-trade">RightOnQ<span class="tm-mark">TM</span> is a trading name of Continuity AI Ltd.</span>
<a href="/">Home</a>
·
<a href="/blog/">Blog</a> ·
<a href="/privacy/">Privacy Policy</a>
·
<a href="/terms/">Terms & Conditions</a>
</div>
</footer>
<script>
document.getElementById('footer-year').textContent = new Date().getFullYear();
(function () {
function initCarousel(trackId, prevId, nextId, dotsId) {
const track = document.getElementById(trackId);
const prev = document.getElementById(prevId);
const next = document.getElementById(nextId);
const dotsContainer = document.getElementById(dotsId);
const dots = dotsContainer ? Array.from(dotsContainer.querySelectorAll('.carousel-dot')) : [];
if (!track || !prev || !next || dots.length === 0) return;
let index = 0;
function render() {
track.style.transform = 'translateX(calc(-' + (index * 100) + '% - ' + (index * 14) + 'px))';
dots.forEach(function (dot, dotIndex) {
dot.classList.toggle('is-active', dotIndex === index);
});
}
prev.addEventListener('click', function () {
index = (index + dots.length - 1) % dots.length;
render();
});
next.addEventListener('click', function () {
index = (index + 1) % dots.length;
render();
});
}
initCarousel('rcs-carousel-track', 'rcs-carousel-prev', 'rcs-carousel-next', 'rcs-carousel-dots');
initCarousel('food-carousel-track', 'food-carousel-prev', 'food-carousel-next', 'food-carousel-dots');
}());
</script>
</body>
</html>