@capillarytech/creatives-library 7.12.38 → 7.12.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/v2Components/CapWhatsappCTA/messages.js +1 -1
- package/v2Components/TemplatePreview/_templatePreview.scss +1 -0
- package/v2Components/TemplatePreview/index.js +5 -6
- package/v2Components/TemplatePreview/messages.js +0 -8
- package/v2Components/TemplatePreview/tests/__snapshots__/index.test.js.snap +3 -12
- package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxContent.test.js.snap +1 -6
- package/v2Containers/Templates/tests/__snapshots__/index.test.js.snap +40 -240
- package/v2Containers/Whatsapp/index.js +86 -41
- package/v2Containers/Whatsapp/index.scss +17 -3
- package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +19589 -19483
- package/v2Containers/Whatsapp/tests/__snapshots__/utils.test.js.snap +2 -12
- package/v2Containers/Whatsapp/utils.js +46 -47
package/package.json
CHANGED
|
@@ -64,7 +64,7 @@ export default defineMessages({
|
|
|
64
64
|
},
|
|
65
65
|
ctaButtonTextTooltip: {
|
|
66
66
|
id: `${prefix}.ctaButtonTextTooltip`,
|
|
67
|
-
defaultMessage: '
|
|
67
|
+
defaultMessage: 'Use this to name the button. We would recommend not to use special characters for the button text.',
|
|
68
68
|
},
|
|
69
69
|
ctaOptionDisabledTooltip: {
|
|
70
70
|
id: `${prefix}.ctaOptionDisabledTooltip`,
|
|
@@ -21,7 +21,6 @@ import {
|
|
|
21
21
|
} from '../../v2Containers/CreativesContainer/constants';
|
|
22
22
|
import Carousel from '../Carousel';
|
|
23
23
|
import { VIBER, FACEBOOK } from '../../v2Containers/App/constants';
|
|
24
|
-
import { UNSUBSCRIBE_TEXT_LENGTH } from '../../v2Containers/Whatsapp/constants';
|
|
25
24
|
import whatsappMobileAndroid from './assets/images/whatsapp_mobile_android.svg';
|
|
26
25
|
const wechatBodyNew = require('./assets/images/wechat_mobile_android.svg');
|
|
27
26
|
const smsMobileAndroid = require('./assets/images/sms_mobile_android.svg');
|
|
@@ -324,7 +323,7 @@ export class TemplatePreview extends React.Component { // eslint-disable-line re
|
|
|
324
323
|
};
|
|
325
324
|
|
|
326
325
|
const whatsappUpdatedAccountName = whatsappAccountName || templateData?.versions?.base?.content?.whatsapp?.accountName || '';
|
|
327
|
-
const whatsappUpdatedLen = whatsappContentLen !== undefined ?
|
|
326
|
+
const whatsappUpdatedLen = whatsappContentLen !== undefined ? whatsappContentLen : content?.charCount;
|
|
328
327
|
|
|
329
328
|
return (
|
|
330
329
|
<CapRow>
|
|
@@ -342,10 +341,10 @@ export class TemplatePreview extends React.Component { // eslint-disable-line re
|
|
|
342
341
|
<>
|
|
343
342
|
<WhatsappStatusContainer template={templateData} />
|
|
344
343
|
<CapHeading type="h3" className="margin-t-12">
|
|
345
|
-
<FormattedMessage
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
344
|
+
<FormattedMessage
|
|
345
|
+
{...messages.whatsappMessageLength}
|
|
346
|
+
values={{ length: whatsappUpdatedLen }}
|
|
347
|
+
/>
|
|
349
348
|
</CapHeading>
|
|
350
349
|
</>
|
|
351
350
|
) : null}
|
|
@@ -22,18 +22,10 @@ export default defineMessages({
|
|
|
22
22
|
id: 'creatives.componentsV2.TemplatePreview.charactersTotal',
|
|
23
23
|
defaultMessage: "{smsCount} SMS ({charCount} characters)",
|
|
24
24
|
},
|
|
25
|
-
whatsappCharactersTotal: {
|
|
26
|
-
id: 'creatives.componentsV2.TemplatePreview.whatsappCharactersTotal',
|
|
27
|
-
defaultMessage: "{charCount} characters",
|
|
28
|
-
},
|
|
29
25
|
optoutCharactersTotal: {
|
|
30
26
|
id: 'app.components.TemplatePreview.optoutCharactersTotal',
|
|
31
27
|
defaultMessage: "Includes optout tag ({optoutUrlLength} characters)",
|
|
32
28
|
},
|
|
33
|
-
whatsappUnsubscribeLength: {
|
|
34
|
-
id: 'app.components.TemplatePreview.whatsappUnsubscribeLength',
|
|
35
|
-
defaultMessage: "Includes 36 characters of (Click {{unsubscribe}} to unsubscribe)",
|
|
36
|
-
},
|
|
37
29
|
whatsappMessageLength: {
|
|
38
30
|
id: 'app.components.TemplatePreview.whatsappMessageLength',
|
|
39
31
|
defaultMessage: "1 Message ({length} characters)",
|
|
@@ -43,24 +43,15 @@ exports[`Test Templates container Should render correct preview component for wh
|
|
|
43
43
|
type="h3"
|
|
44
44
|
>
|
|
45
45
|
<FormattedMessage
|
|
46
|
-
defaultMessage="{
|
|
47
|
-
id="
|
|
46
|
+
defaultMessage="1 Message ({length} characters)"
|
|
47
|
+
id="app.components.TemplatePreview.whatsappMessageLength"
|
|
48
48
|
values={
|
|
49
49
|
Object {
|
|
50
|
-
"
|
|
50
|
+
"length": undefined,
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
/>
|
|
54
54
|
</CapHeading>
|
|
55
|
-
<CapHeading
|
|
56
|
-
type="h6"
|
|
57
|
-
>
|
|
58
|
-
<FormattedMessage
|
|
59
|
-
defaultMessage="Includes 36 characters of (Click {{unsubscribe}} to unsubscribe)"
|
|
60
|
-
id="app.components.TemplatePreview.whatsappUnsubscribeLength"
|
|
61
|
-
values={Object {}}
|
|
62
|
-
/>
|
|
63
|
-
</CapHeading>
|
|
64
55
|
</CapColumn>
|
|
65
56
|
<CapColumn
|
|
66
57
|
span={8}
|
|
@@ -201,12 +201,7 @@ exports[`Test SlideBoxContent container Should render correct component for what
|
|
|
201
201
|
type="label5"
|
|
202
202
|
>
|
|
203
203
|
1234567890
|
|
204
|
-
|
|
205
|
-
</CapLabel>
|
|
206
|
-
<CapLabel
|
|
207
|
-
type="label5"
|
|
208
|
-
>
|
|
209
|
-
Click {{unsubscribe}} to unsubscribe
|
|
204
|
+
Click {{unsubscribe}} to unsubscribe
|
|
210
205
|
</CapLabel>
|
|
211
206
|
</React.Fragment>,
|
|
212
207
|
}
|
|
@@ -526,12 +526,7 @@ exports[`Test Templates container Should render temlates when whatsapp templates
|
|
|
526
526
|
type="label9"
|
|
527
527
|
>
|
|
528
528
|
$'asdasd
|
|
529
|
-
|
|
530
|
-
</CapLabel>
|
|
531
|
-
<CapLabel
|
|
532
|
-
type="label9"
|
|
533
|
-
>
|
|
534
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
529
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
535
530
|
</CapLabel>
|
|
536
531
|
</React.Fragment>
|
|
537
532
|
</React.Fragment>,
|
|
@@ -614,12 +609,7 @@ Click {{1}} to unsubscribe'",
|
|
|
614
609
|
type="label9"
|
|
615
610
|
>
|
|
616
611
|
$'!@#$%^&*_
|
|
617
|
-
|
|
618
|
-
</CapLabel>
|
|
619
|
-
<CapLabel
|
|
620
|
-
type="label9"
|
|
621
|
-
>
|
|
622
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
612
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
623
613
|
</CapLabel>
|
|
624
614
|
</React.Fragment>
|
|
625
615
|
</React.Fragment>,
|
|
@@ -702,12 +692,7 @@ Click {{1}} to unsubscribe'",
|
|
|
702
692
|
type="label9"
|
|
703
693
|
>
|
|
704
694
|
$'!@#$%^&*()_+
|
|
705
|
-
|
|
706
|
-
</CapLabel>
|
|
707
|
-
<CapLabel
|
|
708
|
-
type="label9"
|
|
709
|
-
>
|
|
710
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
695
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
711
696
|
</CapLabel>
|
|
712
697
|
</React.Fragment>
|
|
713
698
|
</React.Fragment>,
|
|
@@ -790,12 +775,7 @@ Click {{1}} to unsubscribe'",
|
|
|
790
775
|
type="label9"
|
|
791
776
|
>
|
|
792
777
|
$'!@#$%^&*()_+
|
|
793
|
-
|
|
794
|
-
</CapLabel>
|
|
795
|
-
<CapLabel
|
|
796
|
-
type="label9"
|
|
797
|
-
>
|
|
798
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
778
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
799
779
|
</CapLabel>
|
|
800
780
|
</React.Fragment>
|
|
801
781
|
</React.Fragment>,
|
|
@@ -878,12 +858,7 @@ Click {{1}} to unsubscribe'",
|
|
|
878
858
|
type="label9"
|
|
879
859
|
>
|
|
880
860
|
$'dfsdfdsf
|
|
881
|
-
|
|
882
|
-
</CapLabel>
|
|
883
|
-
<CapLabel
|
|
884
|
-
type="label9"
|
|
885
|
-
>
|
|
886
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
861
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
887
862
|
</CapLabel>
|
|
888
863
|
</React.Fragment>
|
|
889
864
|
</React.Fragment>,
|
|
@@ -973,12 +948,7 @@ Redeem on {{3}}
|
|
|
973
948
|
Valid only for {{4}}
|
|
974
949
|
Terms and conditions apply
|
|
975
950
|
{{5}}
|
|
976
|
-
|
|
977
|
-
</CapLabel>
|
|
978
|
-
<CapLabel
|
|
979
|
-
type="label9"
|
|
980
|
-
>
|
|
981
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
951
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
982
952
|
</CapLabel>
|
|
983
953
|
</React.Fragment>
|
|
984
954
|
</React.Fragment>,
|
|
@@ -1067,12 +1037,7 @@ Click {{6}} to unsubscribe'",
|
|
|
1067
1037
|
type="label9"
|
|
1068
1038
|
>
|
|
1069
1039
|
$'Hi {{1}}, your reservation at {{2}} is confirmed for {{3}} at {{4}}
|
|
1070
|
-
|
|
1071
|
-
</CapLabel>
|
|
1072
|
-
<CapLabel
|
|
1073
|
-
type="label9"
|
|
1074
|
-
>
|
|
1075
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
1040
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
1076
1041
|
</CapLabel>
|
|
1077
1042
|
</React.Fragment>
|
|
1078
1043
|
</React.Fragment>,
|
|
@@ -1155,12 +1120,7 @@ Click {{5}} to unsubscribe'",
|
|
|
1155
1120
|
type="label9"
|
|
1156
1121
|
>
|
|
1157
1122
|
$'Dear Customer you have been opted out to receive messages from us. To Opt in give a missed call at +918067006166. Don't miss out on our offers & SHOP FOR FREE!
|
|
1158
|
-
|
|
1159
|
-
</CapLabel>
|
|
1160
|
-
<CapLabel
|
|
1161
|
-
type="label9"
|
|
1162
|
-
>
|
|
1163
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
1123
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
1164
1124
|
</CapLabel>
|
|
1165
1125
|
</React.Fragment>
|
|
1166
1126
|
</React.Fragment>,
|
|
@@ -1244,12 +1204,7 @@ Click {{1}} to unsubscribe'",
|
|
|
1244
1204
|
>
|
|
1245
1205
|
$'Dear Customer, your{{1}} points are about to expire. Redeem before {{2}} at nearest Vishal Mega Mart and SHOP FOR FREE!
|
|
1246
1206
|
T&C
|
|
1247
|
-
|
|
1248
|
-
</CapLabel>
|
|
1249
|
-
<CapLabel
|
|
1250
|
-
type="label9"
|
|
1251
|
-
>
|
|
1252
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
1207
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
1253
1208
|
</CapLabel>
|
|
1254
1209
|
</React.Fragment>
|
|
1255
1210
|
</React.Fragment>,
|
|
@@ -1648,12 +1603,7 @@ exports[`Test Templates container Should render temlates when whatsapp templates
|
|
|
1648
1603
|
type="label9"
|
|
1649
1604
|
>
|
|
1650
1605
|
$'asdasd
|
|
1651
|
-
|
|
1652
|
-
</CapLabel>
|
|
1653
|
-
<CapLabel
|
|
1654
|
-
type="label9"
|
|
1655
|
-
>
|
|
1656
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
1606
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
1657
1607
|
</CapLabel>
|
|
1658
1608
|
</React.Fragment>
|
|
1659
1609
|
</React.Fragment>,
|
|
@@ -1736,12 +1686,7 @@ Click {{1}} to unsubscribe'",
|
|
|
1736
1686
|
type="label9"
|
|
1737
1687
|
>
|
|
1738
1688
|
$'!@#$%^&*_
|
|
1739
|
-
|
|
1740
|
-
</CapLabel>
|
|
1741
|
-
<CapLabel
|
|
1742
|
-
type="label9"
|
|
1743
|
-
>
|
|
1744
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
1689
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
1745
1690
|
</CapLabel>
|
|
1746
1691
|
</React.Fragment>
|
|
1747
1692
|
</React.Fragment>,
|
|
@@ -1824,12 +1769,7 @@ Click {{1}} to unsubscribe'",
|
|
|
1824
1769
|
type="label9"
|
|
1825
1770
|
>
|
|
1826
1771
|
$'!@#$%^&*()_+
|
|
1827
|
-
|
|
1828
|
-
</CapLabel>
|
|
1829
|
-
<CapLabel
|
|
1830
|
-
type="label9"
|
|
1831
|
-
>
|
|
1832
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
1772
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
1833
1773
|
</CapLabel>
|
|
1834
1774
|
</React.Fragment>
|
|
1835
1775
|
</React.Fragment>,
|
|
@@ -1912,12 +1852,7 @@ Click {{1}} to unsubscribe'",
|
|
|
1912
1852
|
type="label9"
|
|
1913
1853
|
>
|
|
1914
1854
|
$'!@#$%^&*()_+
|
|
1915
|
-
|
|
1916
|
-
</CapLabel>
|
|
1917
|
-
<CapLabel
|
|
1918
|
-
type="label9"
|
|
1919
|
-
>
|
|
1920
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
1855
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
1921
1856
|
</CapLabel>
|
|
1922
1857
|
</React.Fragment>
|
|
1923
1858
|
</React.Fragment>,
|
|
@@ -2000,12 +1935,7 @@ Click {{1}} to unsubscribe'",
|
|
|
2000
1935
|
type="label9"
|
|
2001
1936
|
>
|
|
2002
1937
|
$'dfsdfdsf
|
|
2003
|
-
|
|
2004
|
-
</CapLabel>
|
|
2005
|
-
<CapLabel
|
|
2006
|
-
type="label9"
|
|
2007
|
-
>
|
|
2008
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
1938
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
2009
1939
|
</CapLabel>
|
|
2010
1940
|
</React.Fragment>
|
|
2011
1941
|
</React.Fragment>,
|
|
@@ -2095,12 +2025,7 @@ Redeem on {{3}}
|
|
|
2095
2025
|
Valid only for {{4}}
|
|
2096
2026
|
Terms and conditions apply
|
|
2097
2027
|
{{5}}
|
|
2098
|
-
|
|
2099
|
-
</CapLabel>
|
|
2100
|
-
<CapLabel
|
|
2101
|
-
type="label9"
|
|
2102
|
-
>
|
|
2103
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
2028
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
2104
2029
|
</CapLabel>
|
|
2105
2030
|
</React.Fragment>
|
|
2106
2031
|
</React.Fragment>,
|
|
@@ -2189,12 +2114,7 @@ Click {{6}} to unsubscribe'",
|
|
|
2189
2114
|
type="label9"
|
|
2190
2115
|
>
|
|
2191
2116
|
$'Hi {{1}}, your reservation at {{2}} is confirmed for {{3}} at {{4}}
|
|
2192
|
-
|
|
2193
|
-
</CapLabel>
|
|
2194
|
-
<CapLabel
|
|
2195
|
-
type="label9"
|
|
2196
|
-
>
|
|
2197
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
2117
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
2198
2118
|
</CapLabel>
|
|
2199
2119
|
</React.Fragment>
|
|
2200
2120
|
</React.Fragment>,
|
|
@@ -2277,12 +2197,7 @@ Click {{5}} to unsubscribe'",
|
|
|
2277
2197
|
type="label9"
|
|
2278
2198
|
>
|
|
2279
2199
|
$'Dear Customer you have been opted out to receive messages from us. To Opt in give a missed call at +918067006166. Don't miss out on our offers & SHOP FOR FREE!
|
|
2280
|
-
|
|
2281
|
-
</CapLabel>
|
|
2282
|
-
<CapLabel
|
|
2283
|
-
type="label9"
|
|
2284
|
-
>
|
|
2285
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
2200
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
2286
2201
|
</CapLabel>
|
|
2287
2202
|
</React.Fragment>
|
|
2288
2203
|
</React.Fragment>,
|
|
@@ -2366,12 +2281,7 @@ Click {{1}} to unsubscribe'",
|
|
|
2366
2281
|
>
|
|
2367
2282
|
$'Dear Customer, your{{1}} points are about to expire. Redeem before {{2}} at nearest Vishal Mega Mart and SHOP FOR FREE!
|
|
2368
2283
|
T&C
|
|
2369
|
-
|
|
2370
|
-
</CapLabel>
|
|
2371
|
-
<CapLabel
|
|
2372
|
-
type="label9"
|
|
2373
|
-
>
|
|
2374
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
2284
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
2375
2285
|
</CapLabel>
|
|
2376
2286
|
</React.Fragment>
|
|
2377
2287
|
</React.Fragment>,
|
|
@@ -2770,12 +2680,7 @@ exports[`Test Templates container Test max templates exceeded 1`] = `
|
|
|
2770
2680
|
type="label9"
|
|
2771
2681
|
>
|
|
2772
2682
|
$'asdasd
|
|
2773
|
-
|
|
2774
|
-
</CapLabel>
|
|
2775
|
-
<CapLabel
|
|
2776
|
-
type="label9"
|
|
2777
|
-
>
|
|
2778
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
2683
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
2779
2684
|
</CapLabel>
|
|
2780
2685
|
</React.Fragment>
|
|
2781
2686
|
</React.Fragment>,
|
|
@@ -3155,12 +3060,7 @@ exports[`Test Templates container Test max templates warning 1`] = `
|
|
|
3155
3060
|
type="label9"
|
|
3156
3061
|
>
|
|
3157
3062
|
$'asdasd
|
|
3158
|
-
|
|
3159
|
-
</CapLabel>
|
|
3160
|
-
<CapLabel
|
|
3161
|
-
type="label9"
|
|
3162
|
-
>
|
|
3163
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
3063
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
3164
3064
|
</CapLabel>
|
|
3165
3065
|
</React.Fragment>
|
|
3166
3066
|
</React.Fragment>,
|
|
@@ -3532,12 +3432,7 @@ exports[`Test Templates container Test removing all whatsapp filterss 1`] = `
|
|
|
3532
3432
|
type="label9"
|
|
3533
3433
|
>
|
|
3534
3434
|
$'!@#$%^&*()_+
|
|
3535
|
-
|
|
3536
|
-
</CapLabel>
|
|
3537
|
-
<CapLabel
|
|
3538
|
-
type="label9"
|
|
3539
|
-
>
|
|
3540
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
3435
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
3541
3436
|
</CapLabel>
|
|
3542
3437
|
</React.Fragment>
|
|
3543
3438
|
</React.Fragment>,
|
|
@@ -3620,12 +3515,7 @@ Click {{1}} to unsubscribe'",
|
|
|
3620
3515
|
type="label9"
|
|
3621
3516
|
>
|
|
3622
3517
|
$'dfsdfdsf
|
|
3623
|
-
|
|
3624
|
-
</CapLabel>
|
|
3625
|
-
<CapLabel
|
|
3626
|
-
type="label9"
|
|
3627
|
-
>
|
|
3628
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
3518
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
3629
3519
|
</CapLabel>
|
|
3630
3520
|
</React.Fragment>
|
|
3631
3521
|
</React.Fragment>,
|
|
@@ -3968,12 +3858,7 @@ exports[`Test Templates container Test removing all whatsapp filterss 2`] = `
|
|
|
3968
3858
|
type="label9"
|
|
3969
3859
|
>
|
|
3970
3860
|
$'asdasd
|
|
3971
|
-
|
|
3972
|
-
</CapLabel>
|
|
3973
|
-
<CapLabel
|
|
3974
|
-
type="label9"
|
|
3975
|
-
>
|
|
3976
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
3861
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
3977
3862
|
</CapLabel>
|
|
3978
3863
|
</React.Fragment>
|
|
3979
3864
|
</React.Fragment>,
|
|
@@ -4056,12 +3941,7 @@ Click {{1}} to unsubscribe'",
|
|
|
4056
3941
|
type="label9"
|
|
4057
3942
|
>
|
|
4058
3943
|
$'!@#$%^&*_
|
|
4059
|
-
|
|
4060
|
-
</CapLabel>
|
|
4061
|
-
<CapLabel
|
|
4062
|
-
type="label9"
|
|
4063
|
-
>
|
|
4064
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
3944
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
4065
3945
|
</CapLabel>
|
|
4066
3946
|
</React.Fragment>
|
|
4067
3947
|
</React.Fragment>,
|
|
@@ -4144,12 +4024,7 @@ Click {{1}} to unsubscribe'",
|
|
|
4144
4024
|
type="label9"
|
|
4145
4025
|
>
|
|
4146
4026
|
$'!@#$%^&*()_+
|
|
4147
|
-
|
|
4148
|
-
</CapLabel>
|
|
4149
|
-
<CapLabel
|
|
4150
|
-
type="label9"
|
|
4151
|
-
>
|
|
4152
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
4027
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
4153
4028
|
</CapLabel>
|
|
4154
4029
|
</React.Fragment>
|
|
4155
4030
|
</React.Fragment>,
|
|
@@ -4232,12 +4107,7 @@ Click {{1}} to unsubscribe'",
|
|
|
4232
4107
|
type="label9"
|
|
4233
4108
|
>
|
|
4234
4109
|
$'!@#$%^&*()_+
|
|
4235
|
-
|
|
4236
|
-
</CapLabel>
|
|
4237
|
-
<CapLabel
|
|
4238
|
-
type="label9"
|
|
4239
|
-
>
|
|
4240
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
4110
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
4241
4111
|
</CapLabel>
|
|
4242
4112
|
</React.Fragment>
|
|
4243
4113
|
</React.Fragment>,
|
|
@@ -4320,12 +4190,7 @@ Click {{1}} to unsubscribe'",
|
|
|
4320
4190
|
type="label9"
|
|
4321
4191
|
>
|
|
4322
4192
|
$'dfsdfdsf
|
|
4323
|
-
|
|
4324
|
-
</CapLabel>
|
|
4325
|
-
<CapLabel
|
|
4326
|
-
type="label9"
|
|
4327
|
-
>
|
|
4328
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
4193
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
4329
4194
|
</CapLabel>
|
|
4330
4195
|
</React.Fragment>
|
|
4331
4196
|
</React.Fragment>,
|
|
@@ -4415,12 +4280,7 @@ Redeem on {{3}}
|
|
|
4415
4280
|
Valid only for {{4}}
|
|
4416
4281
|
Terms and conditions apply
|
|
4417
4282
|
{{5}}
|
|
4418
|
-
|
|
4419
|
-
</CapLabel>
|
|
4420
|
-
<CapLabel
|
|
4421
|
-
type="label9"
|
|
4422
|
-
>
|
|
4423
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
4283
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
4424
4284
|
</CapLabel>
|
|
4425
4285
|
</React.Fragment>
|
|
4426
4286
|
</React.Fragment>,
|
|
@@ -4509,12 +4369,7 @@ Click {{6}} to unsubscribe'",
|
|
|
4509
4369
|
type="label9"
|
|
4510
4370
|
>
|
|
4511
4371
|
$'Hi {{1}}, your reservation at {{2}} is confirmed for {{3}} at {{4}}
|
|
4512
|
-
|
|
4513
|
-
</CapLabel>
|
|
4514
|
-
<CapLabel
|
|
4515
|
-
type="label9"
|
|
4516
|
-
>
|
|
4517
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
4372
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
4518
4373
|
</CapLabel>
|
|
4519
4374
|
</React.Fragment>
|
|
4520
4375
|
</React.Fragment>,
|
|
@@ -4597,12 +4452,7 @@ Click {{5}} to unsubscribe'",
|
|
|
4597
4452
|
type="label9"
|
|
4598
4453
|
>
|
|
4599
4454
|
$'Dear Customer you have been opted out to receive messages from us. To Opt in give a missed call at +918067006166. Don't miss out on our offers & SHOP FOR FREE!
|
|
4600
|
-
|
|
4601
|
-
</CapLabel>
|
|
4602
|
-
<CapLabel
|
|
4603
|
-
type="label9"
|
|
4604
|
-
>
|
|
4605
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
4455
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
4606
4456
|
</CapLabel>
|
|
4607
4457
|
</React.Fragment>
|
|
4608
4458
|
</React.Fragment>,
|
|
@@ -4686,12 +4536,7 @@ Click {{1}} to unsubscribe'",
|
|
|
4686
4536
|
>
|
|
4687
4537
|
$'Dear Customer, your{{1}} points are about to expire. Redeem before {{2}} at nearest Vishal Mega Mart and SHOP FOR FREE!
|
|
4688
4538
|
T&C
|
|
4689
|
-
|
|
4690
|
-
</CapLabel>
|
|
4691
|
-
<CapLabel
|
|
4692
|
-
type="label9"
|
|
4693
|
-
>
|
|
4694
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
4539
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
4695
4540
|
</CapLabel>
|
|
4696
4541
|
</React.Fragment>
|
|
4697
4542
|
</React.Fragment>,
|
|
@@ -5034,12 +4879,7 @@ exports[`Test Templates container Test removing single filter 1`] = `
|
|
|
5034
4879
|
type="label9"
|
|
5035
4880
|
>
|
|
5036
4881
|
$'asdasd
|
|
5037
|
-
|
|
5038
|
-
</CapLabel>
|
|
5039
|
-
<CapLabel
|
|
5040
|
-
type="label9"
|
|
5041
|
-
>
|
|
5042
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
4882
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
5043
4883
|
</CapLabel>
|
|
5044
4884
|
</React.Fragment>
|
|
5045
4885
|
</React.Fragment>,
|
|
@@ -5122,12 +4962,7 @@ Click {{1}} to unsubscribe'",
|
|
|
5122
4962
|
type="label9"
|
|
5123
4963
|
>
|
|
5124
4964
|
$'!@#$%^&*_
|
|
5125
|
-
|
|
5126
|
-
</CapLabel>
|
|
5127
|
-
<CapLabel
|
|
5128
|
-
type="label9"
|
|
5129
|
-
>
|
|
5130
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
4965
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
5131
4966
|
</CapLabel>
|
|
5132
4967
|
</React.Fragment>
|
|
5133
4968
|
</React.Fragment>,
|
|
@@ -5210,12 +5045,7 @@ Click {{1}} to unsubscribe'",
|
|
|
5210
5045
|
type="label9"
|
|
5211
5046
|
>
|
|
5212
5047
|
$'!@#$%^&*()_+
|
|
5213
|
-
|
|
5214
|
-
</CapLabel>
|
|
5215
|
-
<CapLabel
|
|
5216
|
-
type="label9"
|
|
5217
|
-
>
|
|
5218
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
5048
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
5219
5049
|
</CapLabel>
|
|
5220
5050
|
</React.Fragment>
|
|
5221
5051
|
</React.Fragment>,
|
|
@@ -5298,12 +5128,7 @@ Click {{1}} to unsubscribe'",
|
|
|
5298
5128
|
type="label9"
|
|
5299
5129
|
>
|
|
5300
5130
|
$'!@#$%^&*()_+
|
|
5301
|
-
|
|
5302
|
-
</CapLabel>
|
|
5303
|
-
<CapLabel
|
|
5304
|
-
type="label9"
|
|
5305
|
-
>
|
|
5306
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
5131
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
5307
5132
|
</CapLabel>
|
|
5308
5133
|
</React.Fragment>
|
|
5309
5134
|
</React.Fragment>,
|
|
@@ -5386,12 +5211,7 @@ Click {{1}} to unsubscribe'",
|
|
|
5386
5211
|
type="label9"
|
|
5387
5212
|
>
|
|
5388
5213
|
$'dfsdfdsf
|
|
5389
|
-
|
|
5390
|
-
</CapLabel>
|
|
5391
|
-
<CapLabel
|
|
5392
|
-
type="label9"
|
|
5393
|
-
>
|
|
5394
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
5214
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
5395
5215
|
</CapLabel>
|
|
5396
5216
|
</React.Fragment>
|
|
5397
5217
|
</React.Fragment>,
|
|
@@ -5481,12 +5301,7 @@ Redeem on {{3}}
|
|
|
5481
5301
|
Valid only for {{4}}
|
|
5482
5302
|
Terms and conditions apply
|
|
5483
5303
|
{{5}}
|
|
5484
|
-
|
|
5485
|
-
</CapLabel>
|
|
5486
|
-
<CapLabel
|
|
5487
|
-
type="label9"
|
|
5488
|
-
>
|
|
5489
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
5304
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
5490
5305
|
</CapLabel>
|
|
5491
5306
|
</React.Fragment>
|
|
5492
5307
|
</React.Fragment>,
|
|
@@ -5575,12 +5390,7 @@ Click {{6}} to unsubscribe'",
|
|
|
5575
5390
|
type="label9"
|
|
5576
5391
|
>
|
|
5577
5392
|
$'Hi {{1}}, your reservation at {{2}} is confirmed for {{3}} at {{4}}
|
|
5578
|
-
|
|
5579
|
-
</CapLabel>
|
|
5580
|
-
<CapLabel
|
|
5581
|
-
type="label9"
|
|
5582
|
-
>
|
|
5583
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
5393
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
5584
5394
|
</CapLabel>
|
|
5585
5395
|
</React.Fragment>
|
|
5586
5396
|
</React.Fragment>,
|
|
@@ -5663,12 +5473,7 @@ Click {{5}} to unsubscribe'",
|
|
|
5663
5473
|
type="label9"
|
|
5664
5474
|
>
|
|
5665
5475
|
$'Dear Customer you have been opted out to receive messages from us. To Opt in give a missed call at +918067006166. Don't miss out on our offers & SHOP FOR FREE!
|
|
5666
|
-
|
|
5667
|
-
</CapLabel>
|
|
5668
|
-
<CapLabel
|
|
5669
|
-
type="label9"
|
|
5670
|
-
>
|
|
5671
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
5476
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
5672
5477
|
</CapLabel>
|
|
5673
5478
|
</React.Fragment>
|
|
5674
5479
|
</React.Fragment>,
|
|
@@ -5752,12 +5557,7 @@ Click {{1}} to unsubscribe'",
|
|
|
5752
5557
|
>
|
|
5753
5558
|
$'Dear Customer, your{{1}} points are about to expire. Redeem before {{2}} at nearest Vishal Mega Mart and SHOP FOR FREE!
|
|
5754
5559
|
T&C
|
|
5755
|
-
|
|
5756
|
-
</CapLabel>
|
|
5757
|
-
<CapLabel
|
|
5758
|
-
type="label9"
|
|
5759
|
-
>
|
|
5760
|
-
lick {{unsubscribe}} to unsubscribe'
|
|
5560
|
+
Click {{unsubscribe}} to unsubscribe'
|
|
5761
5561
|
</CapLabel>
|
|
5762
5562
|
</React.Fragment>
|
|
5763
5563
|
</React.Fragment>,
|