-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathemailTools.html
1158 lines (1129 loc) · 110 KB
/
emailTools.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
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
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/vnd.microsoft.icon" href="https://currys-ssl.cdn.dixons.com/grafx/favicon.png" />
<link rel="Shortcut Icon" type="image/x-icon" href="https://currys-ssl.cdn.dixons.com/grafx/favicon.ico" />
<link rel="apple-touch-icon" href="https://currys-ssl.cdn.dixons.com/grafx/apple-touch-icon.png" />
<base target="_blank">
<title></title>
<% if ( chainProfile.partyId !== "") { %>
<%@ include view='dixCoreMasterTemplateCSS' %>
<% } else { %>
<link href="https://currys-ssl.cdn.dixons.com/css/themes/email/AC/CORE/css/CoreMasterTemplateCSS3.css?v3.0" rel="stylesheet" type="text/css" />
<% } %>
<style type="text/css">
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face { font-family: 'gBook'; src: url('https://currys-ssl.cdn.dixons.com/css/themes/email/AC/CORE/font/GothamBook.woff') format('woff'), url('https://currys-ssl.cdn.dixons.com/css/themes/email/AC/CORE/font/GothamBook.ttf') format('truetype'); font-weight: normal; font-style: normal; mso-font-alt: 'Arial'; }
@font-face { font-family: 'gBlack'; src: url('https://currys-ssl.cdn.dixons.com/css/themes/email/AC/CORE/font/GothamBlack.woff') format('woff'), url('https://currys-ssl.cdn.dixons.com/css/themes/email/AC/CORE/font/GothamBlack.ttf') format('truetype'); font-weight: normal; font-style: normal; mso-font-alt: 'Arial Black'; }
@font-face { font-family: 'gUltra'; src: url('https://currys-ssl.cdn.dixons.com/css/themes/email/AC/CORE/font/GothamUltra.woff') format('woff'), url('https://currys-ssl.cdn.dixons.com/css/themes/email/AC/CORE/font/GothamUltra.ttf') format('truetype'); font-weight: normal; font-style: normal; mso-font-alt: 'Arial Black'; }
/* iD */
@font-face { font-family: 'idmHEAD'; src: url('https://currys-ssl.cdn.dixons.com/css/themes/email/iD/assets/header/iDHeadline.woff') format('woff'), url('https://currys-ssl.cdn.dixons.com/css/themes/email/iD/assets/header/iDHeadline.ttf') format('truetype'); font-weight: normal; font-style: normal; mso-font-alt: 'Arial Black'; }
@font-face { font-family: 'idmSUB'; src: url('https://currys-ssl.cdn.dixons.com/css/themes/email/iD/assets/header/iDSubHeadline.woff') format('woff'), url('https://currys-ssl.cdn.dixons.com/css/themes/email/iD/assets/header/iDSubHeadline.ttf') format('truetype'); font-weight: normal; font-style: normal; mso-font-alt: 'Arial Black'; }
@font-face { font-family: 'idmREG'; src: url('https://currys-ssl.cdn.dixons.com/css/themes/email/iD/assets/header/iDRegular.woff') format('woff'), url('https://currys-ssl.cdn.dixons.com/css/themes/email/iD/assets/header/iDRegular.ttf') format('truetype'); font-weight: normal; font-style: normal; mso-font-alt: 'Arial'; }
.grad-T { background: -webkit-linear-gradient(left, #082b69 0%, #691c5b 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -0.04em; display: inline-block; }
}
</style>
<style type="text/css">
body { background-color: #f6f6f6; }
@media only screen and (min-width: 0px) and (max-width: 649px) {
.fw { width: 100% !important; }
.x-90 { width: 90% !important; }
.container, .dw { width: 100% !important; }
.wrapper, .dw3 { width: 94% !important; }
.h, .hideAll { display: none !important; }
.dB, .db { display: block!important; }
.w80 { width: 80%!important; }
.tc { width: 80%!important; height: auto!important; }
}
@media only screen and (min-width: 441px) and (max-width: 649px) {
.h1, .h1 a { font-size: 35px!important; line-height:1.1em!important; }
}
@media only screen and (max-width: 440px) {
.h1, .h1 a { font-size: 30px!important; line-height: 1.1em!important; }
.p { font-size: 14px!important; line-height: 1.6em!important; }
.tc { width: 90%!important; height: auto!important; }
}
</style>
<!--[if (mso)|(mso 16)]>
<style type="text/css">body, table, td, a, span { font-family: Arial, Helvetica, sans-serif!important; }
a {text-decoration: none;}
sup { font-size:80%; line-height:1; vertical-align:top; mso-text-raise: 30%; }
</style>
<![endif]-->
<!--[if gte mso 9]>
<xml><o:OfficeDocumentSettings><o:AllowPNG/><o:PixelsPerInch>96</o:PixelsPerInch></o:OfficeDocumentSettings></xml>
<![endif]-->
</head>
<!-- AC Version 2.9 -->
<body id="body" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" yahoo="fix" style="font-family: Arial,Helvetica,sans-serif;" bgcolor="#f6f6f6">
<script>
<% var CampaignName= 'GoogleHomeHub'; %>
<% var CampaignType= 'TAR'; %>
<% var shortDayOfWeek= formatDate(new Date(), '%A').toUpperCase(); %>
</script>
<!-- rpcampaign: <%= CampaignName %><%= formatDate(new Date(targetData.BroadcastDate), '%4Y%2M%2D') %> -->
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0" style="min-width:650px; table-layout: fixed;">
<tr>
<td width="100%" align="center" valign="top" bgcolor="#f6f6f6" style="min-width:100vm;">
<table role="presentation" width="100%" border="0" cellpadding="0" cellspacing="0" align="center" style="min-width:650px; table-layout: fixed;">
<!-- Top -->
<tr>
<td align="center" valign="top" bgcolor="#feffff" style="padding-top: 5px;">
<table width="650" border="0" cellspacing="0" cellpadding="0" class="dw3" style="border:none;">
<!-- PreHeader -->
<tr>
<td align="center" style="font-family:Arial, Helvetica, sans-serif; font-size:10px; line-height: 12px; color:#333333; padding-bottom:4px;">Turn your home into a thoughtful home with Google Home Hub and Nest Thermostat E.</td>
</tr>
<!-- Brand -->
<tr>
<td>
<table role="presentation" width="650" border="0" align="center" cellpadding="0" cellspacing="0" class="dw">
<tr>
<td align="left" valign="top" style="font-family:Arial, Helvetica, sans-serif; font-size:10px; line-height: 12px; color:#333332;"> Add <a href="mailto:<%= delivery.mailParameters.senderAddress %>" style="text-decoration:underline; color:#333333;"><%= delivery.mailParameters.senderAddress %></a> to your address book </td>
<td align="right" valign="top" style="font-family:Arial, Helvetica, sans-serif; font-size:10px; line-height: 12px; color:#333332;"><a href="<%@ include view='MirrorPageUrl' %>" _label="Mirror Page" _type="mirrorPage" style="text-decoration:underline; color:#333333;">Online version</a></td>
</tr>
</table>
</td>
</tr>
<!-- Logo -->
<tr>
<td align="center" style="padding: 10px 0px 10px 0px;"><a href="##HDR##?<%@ include view='dixDIXtrackingCPCW1' %>~HOM~HOM~HDR~<%@ include view='dixDIXtrackingCPCW2' %>" _label="HDR"><img src="https://currys-ssl.cdn.dixons.com/css/themes/email/Assets/CORE/CPCW_logo_3x.png" alt="##alt##" width="280" height="57" class="w70" style="display:block; margin:0 auto; font-family:gothamBlack, Arial Black, Helvetica, sans-serif; color:#6A2C6B; font-size:24px; line-height:45px;" border="0" /></a></td>
</tr>
</table>
</td>
</tr>
<!-- Top -->
<tr>
<td align="center" valign="top" bgcolor="#feffff" style="padding-top: 5px;">
<table role="presentation" width="650" border="0" cellspacing="0" cellpadding="0" class="dw3" style="border:none;">
<!-- Brand -->
<tr>
<td>
<table role="presentation" width="650" border="0" align="center" cellpadding="0" cellspacing="0" class="dw">
<tr>
<td align="left" valign="top" style="font-family:Arial, Helvetica, sans-serif; font-size:10px; line-height: 12px; color:#333332;"> Add <a href="mailto:specialoffers@store.currys.co.uk" style="text-decoration:underline; color:#333333;">specialoffers@store.currys.co.uk</a> to your address book </td>
<td align="right" valign="top" style="font-family:Arial, Helvetica, sans-serif; font-size:10px; line-height: 12px; color:#333332;"><a href="%%view_email_url%%" alias="Online_Version" style="text-decoration:underline; color:#333333;">Online version</a></td>
</tr>
</table>
</td>
</tr>
<!-- Logo -->
<tr>
<td align="center" style="padding: 10px 0px 10px 0px;"> <a href="https://www.currys.co.uk/gbuk/index.html?srcid=8324&cmpid=em~%%=v(@ChainGroup)=%%~%%=v(@CampaignName)=%%~%%=v(@Prefix)=%%_%%=v(@CampaignType)=%%~wk%%WeekNo%%~%%=v(@EMtype)=%%~%%=v(@BroadcastY)=%%%%= v(@BroadcastM)=%%%%= v(@BroadcastD)=%%~%%=v(@CustomerType)=%%~HOM~HOM~HDR~%%jobid%%&emid=%%NameID%%" alias="HDR"><img src="https://currys-ssl.cdn.dixons.com/css/themes/email/Assets/CORE/CPCW_logo_3x.png" alt="Currys PC World" width="280" height="57" class="w70" style="display:block; margin:0 auto; font-family:gothamBlack, Arial Black, Helvetica, sans-serif; color:#6A2C6B; font-size:24px; line-height:45px;" border="0" /></a></td>
</tr>
</table>
</td>
</tr>
<!-- Navigation -->
<tr>
<td align="center" valign="top" bgcolor="#e9e9e9">
<table role="presentation" width="650" border="0" cellspacing="0" cellpadding="0" class="dw">
<tr>
<td align="center" bgcolor="#e9e9e9" style="padding: 10px 0px 10px 0px;">
<table role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#e9e9e9" class="dw3">
<tr>
<td width="37" height="22" align="left" valign="middle" class="hideT hideM"><a href="##HOM##<%@ include view='dixDIXtrackingCPCW1' %>~HOM~HOM~NAV~<%@ include view='dixDIXtrackingCPCW2' %>" _label="NAV_HOM" style="font-family: Arial, Helvetica, sans-serif; font-size: 11px; line-height: 12px; color:#333333; text-decoration:none; -webkit-text-size-adjust: 90%;">Home</a></td>
<td width="65" height="22" align="center" valign="middle" class="hideborder" style="border-left:#cccccc solid 1px;"><a href="https://www.currys.co.uk/gbuk/household-appliances-35-u.html?<%@ include view='dixDIXtrackingCPCW1' %>~UNI~MDA~NAV~<%@ include view='dixDIXtrackingCPCW2' %>" _label="NAV_MDA" style="font-family: Arial, Helvetica, sans-serif; font-size: 11px; line-height: 12px; color:#333333; text-decoration:none; -webkit-text-size-adjust: 90%;">Kitchen <br />
Appliances</a></td>
<td width="70" height="22" align="center" valign="middle" class="hideM" style="border-left:#cccccc solid 1px;"><a href="https://www.currys.co.uk/gbuk/home-appliances-36-u.html?<%@ include view='dixDIXtrackingCPCW1' %>~UNI~SKA~NAV~<%@ include view='dixDIXtrackingCPCW2' %>" _label="NAV_SKA" style="font-family: Arial, Helvetica, sans-serif; font-size: 11px; line-height: 12px; color:#333333; text-decoration:none; -webkit-text-size-adjust: 90%;">Small <br />
Appliances</a></td>
<td width="80" height="22" align="center" valign="middle" style="border-left:#cccccc solid 1px;"><a href="https://www.currys.co.uk/gbuk/tv-and-home-entertainment-31-u.html?<%@ include view='dixDIXtrackingCPCW1' %>~UNI~TVN~NAV~<%@ include view='dixDIXtrackingCPCW2' %>" _label="NAV_TVN" style="font-family: Arial, Helvetica, sans-serif; font-size: 11px; line-height: 12px; color:#333333; text-decoration:none; -webkit-text-size-adjust: 90%;">TV & <br />
Entertainment</a></td>
<td width="56" height="22" align="center" valign="middle" class="hideT hideM" style="border-left:#cccccc solid 1px;"><a href="https://www.currys.co.uk/gbuk/cameras-and-camcorders-38-u.html?<%@ include view='dixDIXtrackingCPCW1' %>~UNI~IMG~NAV~<%@ include view='dixDIXtrackingCPCW2' %>" _label="NAV_IMG" style="font-family: Arial, Helvetica, sans-serif; font-size: 11px; line-height: 12px; color:#333333; text-decoration:none; -webkit-text-size-adjust: 90%;">Cameras</a></td>
<td width="59" height="22" align="center" valign="middle" class="hideM" style="border-left:#cccccc solid 1px;"><a href="https://www.currys.co.uk/gbuk/audio-32-u.html?<%@ include view='dixDIXtrackingCPCW1' %>~UNI~AUD~NAV~<%@ include view='dixDIXtrackingCPCW2' %>" _label="NAV_AUD" style="font-family: Arial, Helvetica, sans-serif; font-size: 11px; line-height: 12px; color:#333333; text-decoration:none; -webkit-text-size-adjust: 90%;">Audio</a></td>
<td width="62" height="22" align="center" valign="middle" style="border-left:#cccccc solid 1px;"><a href="https://www.currys.co.uk/gbuk/computing/laptops-315-c.html?<%@ include view='dixDIXtrackingCPCW1' %>~CAT~LAP~NAV~<%@ include view='dixDIXtrackingCPCW2' %>" _label="NAV_LAP" style="font-family: Arial, Helvetica, sans-serif; font-size: 11px; line-height: 12px; color:#333333; text-decoration:none; -webkit-text-size-adjust: 90%;">Computing</a></td>
<td width="99" height="22" align="center" valign="middle" class="hideT hideM" style="border-left:#cccccc solid 1px;"><a href="https://www.currys.co.uk/gbuk/computing-accessories-40-u.html?<%@ include view='dixDIXtrackingCPCW1' %>~UNI~ACC~NAV~<%@ include view='dixDIXtrackingCPCW2' %>" _label="NAV_ACC" style="font-family: Arial, Helvetica, sans-serif; font-size: 11px; line-height: 12px; color:#333333; text-decoration:none; -webkit-text-size-adjust: 90%;">PC Accessories</a></td>
<td width="60" height="22" align="center" valign="middle" style="border-left:#cccccc solid 1px;"><a href="https://www.currys.co.uk/gbuk/phones-broadband-and-sat-nav/mobile-phones-and-accessories-362-c.html?<%@ include view='dixDIXtrackingCPCW1' %>~CAT~MOB~NAV~<%@ include view='dixDIXtrackingCPCW2' %>" _label="NAV_MOB" style="font-family: Arial, Helvetica, sans-serif; font-size: 11px; line-height: 12px; color:#333333; text-decoration:none; -webkit-text-size-adjust: 90%;">Mobile Phones</a></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<!-- Movable Ink checks have a different IMG SRC for iD Mobile, not hosted on Currys CDN, Movable is hosting so path is:
src="http://www.movable-ink-5819.com/p/rp/19bd0c4b1978d23b.png?mi_u=<%= iDMobileRecipients.id %>" -->
<tr>
<td bgcolor="#1b1b1b" style="padding:50px 0px 50px 0px;">
<table role="presentation" width="650" border="0" cellpadding="0" cellspacing="0" align="center" class="dw">
<tr>
<td width="650" align="center" valign="top" class="dw"><a href="http://www.movable-ink-5819.com/p/cp/e3c8de70802be78c/c?mi_u=<%= iDMobileRecipients.id %>&url=http%3A%2F%2Fwww.movable-ink-5819.com%2Fp%2Frp%2F0ac112b32a3512ed%2Furl&<%@ include view='dixIDMtracking2018' %>_MainBNR" _label="MainBNR"><img class="dw hideM altHDR" align="center" width="650" src="http://www.movable-ink-5819.com/p/rp/19bd0c4b1978d23b.png?mi_u=<%= iDMobileRecipients.id %>" alt=" Black Friday" style="width:100%; max-width:100%; display:block; border:0px; color:#feffff; font-size:36px; line-height: 40px;" border="0" /><img class="dw hideT altHDR" align="center" width="1" height="1" src="http://www.movable-ink-5819.com/p/rp/0ac112b32a3512ed.png?mi_u=<%= iDMobileRecipients.id %>" alt=" Black Friday" style="display:block; color:#feffff; font-size:36px; line-height:40px; font-weight:bold; text-align:center; text-transform:uppercase;" border="0" /></a></td>
</tr>
</table>
</td>
</tr>
<!-- // -->
<tr>
<td>
<!-- removed bg -->
<table role="presentation" width="642" bgcolor="#e30613" class="fw" border="0" cellpadding="0" cellspacing="0" align="center">
<!-- MI Pixel:
http://email.images.currys.co.uk/p/cp/71a45efd591cbe57/o.gif?mi_u=<%= chainProfile.partyId %>
-->
<tr>
<td style="font-size:0px; line-height:0px;">
<img src="removed this" width="1" height="1" alt="" aria-hidden="true" />
</td>
</tr>
<!-- // MI Pixel -->
<tr>
<td align="center" style="padding:10px 0px 20px 0px;">
<table role="presentation" width="500" border="0" align="center" cellpadding="0" cellspacing="0" class="x-90" dir="ltr">
<!-- $ COPY ¬ set: text, text-align, color -->
<tr>
<td height="30" align="center" class="f28 inlineTxt" style="font-family:gothamBook, Arial Black, Helvetica, sans-serif; font-size: 25px; font-weight: bold; color:#feffff; letter-spacing:-0.04em; padding: 4px 0px 4px 0px;">Correct Movable Ink</td>
</tr>
<tr>
<td align="center" valign="top" class="fw"><a href="http://email.images.currys.co.uk/p/cp/50a6310a7aae4f22/c?mi_u=<%= chainProfile.partyId %>&url=http%3A%2F%2Femail.images.currys.co.uk%2Fp%2Frp%2F937160705275a6ab%2Furl&<%@ include view='dixDIXtrackingCPCW1' %>~SEG~OTH~MI~<%@ include view='dixDIXtrackingCPCW2' %>" _label="MI_OTH"><img class="fw" width="500" src="http://email.images.currys.co.uk/p/rp/937160705275a6ab.png?mi_u=<%= chainProfile.partyId %>" alt="Ends - September 30, 2019 at 11:59PM BST" style="width:100%; max-width:100%; display:block; border:0px; color: #feffff; text-transform: uppercase; font-size: 20px; line-height: 24px;" border="0" /></a></td>
</tr>
<!-- Tests -->
<tr>
<td height="30" align="center" class="f28 inlineTxt" style="font-family:gothamBook, Arial Black, Helvetica, sans-serif; font-size: 25px; font-weight: bold; color:#feffff; letter-spacing:-0.04em; padding: 20px 0px 20px 0px;">Incorrect Movable Ink: Has: Furl<%</td>
</tr>
<tr>
<td align="center" valign="top" class="fw"><a href="http://email.images.currys.co.uk/p/cp/50a6310a7aae4f22/c?mi_u=<%= chainProfile.partyId %>&url=http%3A%2F%2Femail.images.currys.co.uk%2Fp%2Frp%2F937160705275a6ab%2Furl<%@ include view='dixDIXtrackingCPCW1' %>~SEG~OTH~MI~<%@ include view='dixDIXtrackingCPCW2' %>" _label="MI_OTH"><img class="fw" width="500" src="http://email.images.currys.co.uk/p/rp/937160705275a6ab.png?mi_u=<%= chainProfile.partyId %>" alt="Ends - September 30, 2019 at 11:59PM BST" style="width:100%; max-width:100%; display:block; border:0px; color: #feffff; text-transform: uppercase; font-size: 20px; line-height: 24px;" border="0" /></a></td>
</tr>
<tr>
<td height="30" align="center" class="f28 inlineTxt" style="font-family:gothamBook, Arial Black, Helvetica, sans-serif; font-size: 25px; font-weight: bold; color:#feffff; letter-spacing:-0.04em; padding: 20px 0px 20px 0px;">Incorrect Movable Ink: Has: Furl?</td>
</tr>
<tr>
<td align="center" valign="top" class="fw"><a href="http://email.images.currys.co.uk/p/cp/50a6310a7aae4f22/c?mi_u=<%= chainProfile.partyId %>&url=http%3A%2F%2Femail.images.currys.co.uk%2Fp%2Frp%2F937160705275a6ab%2Furl?<%@ include view='dixDIXtrackingCPCW1' %>~SEG~OTH~MI~<%@ include view='dixDIXtrackingCPCW2' %>" _label="MI_OTH"><img class="fw" width="500" src="http://email.images.currys.co.uk/p/rp/937160705275a6ab.png?mi_u=<%= chainProfile.partyId %>" alt="Ends - September 30, 2019 at 11:59PM BST" style="width:100%; max-width:100%; display:block; border:0px; color: #feffff; text-transform: uppercase; font-size: 20px; line-height: 24px;" border="0" /></a></td>
</tr>
<tr>
<td height="30" align="center" class="f28 inlineTxt" style="font-family:gothamBook, Arial Black, Helvetica, sans-serif; font-size: 25px; font-weight: bold; color:#feffff; letter-spacing:-0.04em; padding: 20px 0px 20px 0px;">Incorrect Movable Ink: Has: Furl&? | Furl?&</td>
</tr>
<tr>
<td align="center" valign="top" class="fw"><a href="http://email.images.currys.co.uk/p/cp/50a6310a7aae4f22/c?mi_u=<%= chainProfile.partyId %>&url=http%3A%2F%2Femail.images.currys.co.uk%2Fp%2Frp%2F937160705275a6ab%2Furl&?<%@ include view='dixDIXtrackingCPCW1' %>~SEG~OTH~MI~<%@ include view='dixDIXtrackingCPCW2' %>" _label="MI_OTH"><img class="fw" width="500" src="http://email.images.currys.co.uk/p/rp/937160705275a6ab.png?mi_u=<%= chainProfile.partyId %>" alt="Ends - September 30, 2019 at 11:59PM BST" style="width:100%; max-width:100%; display:block; border:0px; color: #feffff; text-transform: uppercase; font-size: 20px; line-height: 24px;" border="0" /></a></td>
</tr>
<tr>
<td align="center" valign="top" class="fw"><a href="http://email.images.currys.co.uk/p/cp/50a6310a7aae4f22/c?mi_u=<%= chainProfile.partyId %>&url=http%3A%2F%2Femail.images.currys.co.uk%2Fp%2Frp%2F937160705275a6ab%2Furl?&<%@ include view='dixDIXtrackingCPCW1' %>~SEG~OTH~MI~<%@ include view='dixDIXtrackingCPCW2' %>" _label="MI_OTH"><img class="fw" width="500" src="http://email.images.currys.co.uk/p/rp/937160705275a6ab.png?mi_u=<%= chainProfile.partyId %>" alt="Ends - September 30, 2019 at 11:59PM BST" style="width:100%; max-width:100%; display:block; border:0px; color: #feffff; text-transform: uppercase; font-size: 20px; line-height: 24px;" border="0" /></a></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<!-- $ 1BNR1 ¬ single image -->
<tr>
<td align="center" style="padding-bottom:50px;">
<table role="presentation" width="650" class="dw" border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td valign="top"><a class="dw" href="##1BNR1##?<%@ include view='dixDIXtrackingCPCW1' %>~PageType~Category~1BNR1~<%@ include view='dixDIXtrackingCPCW2' %>" _label="1BNR1_Category"><img class="dw" align="left" width="650" height="120" src="https://via.placeholder.com/650x120/00b0e8/feffff.png?text=1BNR1" alt="##alt##" style="display:block;" border="0" /></a></td>
</tr>
<tr>
<td style="padding: 100px 0px 50px 0px;" class="S-2NOM">
<table role="presentation" width="650" class="container" border="0" cellpadding="0" cellspacing="0" align="center">
<tbody>
<tr>
<th dir="rtl-" align="center" width="650" class="fw dB">
<table bgcolor="#f1f1f1" role="presentation" width="650" class="wrapper fw---" border="0" cellspacing="0" cellpadding="0">
<tr>
<th bgcolor="#f1f1f1" width="325" valign="top" class="fw dB" style="font-weight:normal;">
<table role="presentation" bgcolor="#f1f1f1" width="100%" align="center" class="fw" border="0" cellspacing="0" cellpadding="0">
<tr>
<!-- $$ IMAGE -->
<th class="fw dB" style="font-weight:normal;">
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0" class="fw" dir="ltr">
<tr>
<td><a href="#link?<%@ include view='dixDIXtrackingCPCW1' %>~PageType~Category~Block~<%@ include view='dixDIXtrackingCPCW2' %>" _label="Block_Category"><img align="left" width="325" src="https://currys-ssl.cdn.dixons.com/css/themes/email/_Rolling/PPA/Soundbars/B1/_JVC_2COL.jpg" alt="" border="0" class="fw hA" style="width:100%; max-width:100%; display:block; border:0px;" /></a></td>
</tr>
</table>
</th>
</tr>
</table>
</th>
<th bgcolor="#f1f1f1" width="325" valign="top" class="fw dB" style="font-weight:normal;">
<table role="presentation" bgcolor="#f1f1f1" width="100%" align="center" class="fw" border="0" cellspacing="0" cellpadding="0">
<tr>
<!-- $$ TEXT -->
<th width="325" class="fw dB" style="font-weight:normal; padding:20px 0px 0px 0px;">
<table role="presentation" width="90%" border="0" align="center" cellpadding="0" cellspacing="0" class="x-90" dir="ltr">
<!-- $ SAVING [have been added] set: color, text-transform -->
<tr>
<td>
<table role="presentation" width="100%" class="saving" border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="center" valign="top"><a href="#link?<%@ include view='dixDIXtrackingCPCW1' %>~PageType~Category~Block~<%@ include view='dixDIXtrackingCPCW2' %>" _label="Block_Category" style="font-family:gBlack, Arial Black, Helvetica, sans-serif; font-size:44px; line-height:44px; font-weight:bold; color:#e40421; text-decoration:none;" class="h2 grad-T">20% OFF</a></td>
</tr>
<tr>
<td align="center" valign="top"><a href="#link?<%@ include view='dixDIXtrackingCPCW1' %>~PageType~Category~Block~<%@ include view='dixDIXtrackingCPCW2' %>" _label="Block_Category" style="font-family:gBlack, Arial Black, Helvetica, sans-serif; font-size:22px; line-height:24px; font-weight:bold; color:#e40421; text-decoration:none;" class="h4 grad-T">on selected <br />
SAMSUNG sounbars</a></td>
</tr>
</table>
</td>
</tr>
<!-- $ VOUCHER CODE [TEXT + DYNAMIC] -->
<tr>
<td style="padding:20px 0px 10px 0px;">
<table role="presentation" width="100%" class="voucher" border="0" cellpadding="0" cellspacing="0" align="center">
<!-- VOUCHER CODE TEXT set: text, color -->
<tr>
<td height="33" align="center" valign="middle" class="voucher-text" style="font-family:gBook, Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; font-weight:bold; color:#646466;">Enter your unique code at checkout:</td>
</tr>
<!-- VOUCHER CODE DYNAMIC set: text, color, text-transform -->
<tr>
<td height="33" align="center" valign="bottom" class="h5" style="font-family:gBook, Arial Black, Helvetica, sans-serif; font-size:16px; line-height:20px; font-weight:bold; color:#231F20; text-transform:uppercase;">
<span style="border-top:1px solid #dcdcdc; display:inline-block; padding-top:6px;">123456789012345</span>
</td>
</tr>
</table>
</td>
</tr>
<!-- $ CTA set: bgcolor, background-color, color, lenght, link, tracking -->
<tr>
<td style="padding:10px 0px 20px 0px;">
<table role="presentation" width="220" class="x-80---" border="0" cellpadding="0" cellspacing="0" align="center" style="box-shadow:0px 10px 12px -12px rgba(0, 0, 0, 0.8);">
<tr>
<td height="44" valign="middle" align="center" bgcolor="#1d428a" class="noBG hA" style="border-radius:3px;"><a href="#link?<%@ include view='dixDIXtrackingCPCW1' %>~PageType~Category~Block~<%@ include view='dixDIXtrackingCPCW2' %>" _label="Block_Category" style="background-color:#1d428a; border-radius:3px; color:#feffff; display:block; font-family:gBook, Arial, Helvetica, sans-serif; font-size:16px; font-weight:bold; line-height:44px; text-align:center; text-decoration:none; -webkit-text-size-adjust:inherit;">Shop now</a></td>
</tr>
</table>
</td>
</tr>
</table>
</th>
</tr>
</table>
</th>
</tr>
</table>
</th>
</tr>
</tbody>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="30" align="center" class="f28 inlineTxt" style="font-family:gothamBook, Arial Black, Helvetica, sans-serif; font-size: 25px; font-weight: bold; color:#0c347b; letter-spacing:-0.04em; padding: 4px 0px 4px 0px;">font-family:gothamBook, Arial Black</td>
</tr>
<tr>
<td height="30" align="center" class="f28 inlineTxt" style="font-family:gothamBlack, Arial Black, Helvetica, sans-serif; font-size: 25px; font-weight: bold; color:#0c347b; letter-spacing:-0.04em; padding: 4px 0px 4px 0px;">font-family:gothamBlack, Arial Black</td>
</tr>
<tr>
<td height="30" align="center" class="f28 inlineTxt" style="font-family:gUltra, Arial Black, Helvetica, sans-serif; font-size:30px; line-height:90%; font-weight:bold; color:#0d428a; text-decoration:none; text-transform: uppercase; padding: 4px 0px 4px 0px;"><span class="grad-txt">font-family:gUltra, Arial Black, Helvetica, sans-serif</span></td>
</tr>
<tr>
<td height="45" align="center" valign="middle" class="nomTitle"><a href="https://www.currys.co.uk/gbuk/smart-tech/smart-tech/smart-watches-and-fitness/smart-watches/apple-watch-series-4-space-grey-black-sports-loop-40-mm-10185450-pdt.html?<%@ include view='dixDIXtrackingCPCW1' %>~PageType~Category~2NOM1~<%@ include view='dixDIXtrackingCPCW2' %>" _label="2NOM1_Category" style="font-family:gothamBook, Arial Black, Helvetica, sans-serif; font-size: 25px; font-weight: bold; color:#0c347b; letter-spacing:-0.04em; text-decoration: none;" class="grad-T">Hisense 55" U7A Smart 4K Ultra HD HDR TVs</a></td>
</tr>
<!-- iD fonts -->
<tr>
<td height="30" align="center" class="inlineTxt" style="font-family:idmHEAD, Arial Black, Helvetica, sans-serif; font-size:22px; font-weight:bold; color:#10A45E; letter-spacing:-0.01em; padding:50px 0px 4px 0px;">iD: idmHEAD, Arial Black, Helvetica, sans-serif</td>
</tr>
<tr>
<td align="center" valign="middle" style="font-family:idmREG, Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#1C1C1C; padding:15px 0px 15px 0px;">iD: idmREG, Arial, Helvetica, sans-serif</td>
</tr>
<tr>
<td align="center" valign="middle" style="font-family:idmSUB, Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#1C1C1C; padding:15px 0px 15px 0px;">iD: idmSUB, Arial, Helvetica, sans-serif</td>
</tr>
<!-- Spam Words -->
<tr>
<td align="center" style="padding: 20px 0px 30px 0px;">
<table role="presentation" width="400" border="0" align="center" cellpadding="0" cellspacing="0" class="dw3">
<tr>
<td style="font-family:idmREG, Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#1C1C1C;">
1. $$$ <br />
2. 100% free <br />
3. Act Now <br />
4. Affordable <br />
5. Amazing stuff <br />
6. Double your income <br />
7. Earn $ <br />
8. Earn extra cash <br />
9. Eliminate debt <br />
10. Free <br />
11. Free gift <br />
12. Limited time offer <br />
13. Make $ <br />
14. !!! <br />
15. 100% free <br />
16. Act now! <br />
17. ALL CAPITALS <br />
18. Discount <br />
19. Double your income <br />
20. E.x.t.r.a. Punctuation <br />
21. FREE <br />
22. Guarantee <br />
23. Join millions <br />
24. Lose weight <br />
25. All natural <br />
26. Bargain <br />
27. Best price <br />
28. Lowest price <br />
29. T e x t w i t h g a p s <br />
30. No purchase necessary <br />
31. click <br />
</td>
</tr>
</table>
</td>
</tr>
<!-- 1BNR1 -->
<tr>
<td align="center" style="padding: 20px 0px 30px 0px;">
<table role="presentation" width="650" border="0" align="center" cellpadding="0" cellspacing="0" class="dw3">
<tbody>
<!-- Inner -->
<tr>
<td height="30" align="center" class="f28 inlineTxt" style="font-family: Arial, Helvetica, sans-serif; font-size: 25px; line-height: 30px; font-weight: bold; color:#636363; letter-spacing:-0.04em; padding: 4px 0px 20px 0px;"><em>Adobe Campaign ESP IMG Time: “?”</em> <%= cC %></td>
</tr>
<!-- Inner -->
<tr>
<td align="center" class="h1-" style="padding-bottom: 10px; font-family:Arial, Helvetica, sans-serif; font-weight:bold; font-size:25px; font-weight:bold; line-height:28px; color:#111111; letter-spacing:-0.02em; -webkit-text-size-adjust:inherit;"> <span style="color: #DB0104">No Query:</span> test1.jpg</td>
</tr>
<tr>
<td valign="top" align="center"><img class="dw grad-txt" width="650" height="181" src="https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk45/BuiltInCOO/test1.jpg" alt=" Has Grad class" style="display: block; color: #1b447e; font-size: 50px; line-height: 100%; text-align: center; text-transform: uppercase;" border="0" /></td>
</tr>
<tr>
<td align="center" class="h1-" style="padding: 20px 0px 10px 0px; font-family:Arial, Helvetica, sans-serif; font-weight:bold; font-size:25px; font-weight:bold; line-height:28px; color:#111111; letter-spacing:-0.02em; -webkit-text-size-adjust:inherit;"><span style="color: #00AA03">Has Query:</span> test1.jpg?<%= cC %></td>
</tr>
<tr>
<td valign="top" align="center" style="padding-bottom: 50px;"><img class="dw" width="650" height="181" src="https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk45/BuiltInCOO/test1.jpg?<%= cC %>" alt=" No Grad text class" style="display: block; color: #1b447e; font-size: 50px; line-height: 100%; text-align: center; text-transform: uppercase;" border="0" /></td>
</tr>
<tr>
<!-- TH -->
<th align="center" width="650" bgcolor="#f5f5f5" class="dw db" style="border-top: 1px solid #cccccc; border-bottom: 1px solid #cccccc;">
<table role="presentation" width="100%" class="dw3" border="0" cellspacing="0" cellpadding="0">
<tr>
<th width="10" height="10" class="dw db"> </th>
<th width="280" class="dw db" style="font-weight:normal;">
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center"><a href="https://www.idmobile.co.uk/upgrades?utm_source=<%= TrackingSource %>&utm_medium=<%= TrackingMedium %>&utm_campaign=<%= TrackingCampaign %>&utm_content=MainBNR" _label="MainBNR_OTH"><img align="center" width="280" height="213" src="https://currys-ssl.cdn.dixons.com/css/themes/email/iD/2018-2019/retention/props/up_retbnr03.png" border="0" class="cta" alt=" Upgrade and save" style="display:block;" /></a></td>
</tr>
</table>
</th>
<th width="10" height="10" class="dw db"> </th>
<th width="340" class="dw db" style="font-weight:normal;">
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="hAuto" align="center" valign="middle" style="padding: 20px 0px 20px 0px;"><a href="https://www.idmobile.co.uk/upgradesutm_source=<%= TrackingSource %>&utm_medium=<%= TrackingMedium %>&utm_campaign=<%= TrackingCampaign %>&utm_content=MainBNR" _label="MainBNR_OTH" style="font-family: gtwBold, Arial Black, Helvetica, sans-serif; font-size: 32px; line-height:34px; color:#6ab978; text-decoration: none;">Save up to £30 off any phone.</a></td>
</tr>
</table>
</th>
<th width="10" height="10" class="dw db"> </th>
</tr>
</table>
</th>
<!-- // TH -->
</tr>
</tbody>
</table>
</td>
</tr>
<!-- External Image call like KickDynamics -->
<tr>
<td style="padding:20px 0px 0px 0px;">
<table role="presentation" width="650" border="0" cellpadding="0" cellspacing="0" align="center" class="dw">
<tr>
<td width="650" align="center" valign="top" class="dw"><a href="#Dummy" _label="MainBNR_OTH"><img class="dw altHDR" align="left" width="650" height="168" src="https://imgplaceholder.com/650x240/00b0e8/feffff?text=mainBNR1&font-size=50" alt="External Image call" style="display:block; color:#feffff; font-size:36px; line-height:40px; font-weight:bold; text-align:center; background:#000001; text-transform:uppercase;" border="0" /></a></td>
</tr>
</table>
</td>
</tr>
<!-- 2BNR (1-2) -->
<tr>
<td align="center" style="padding-bottom: 50px;">
<table role="presentation" width="650" cellpadding="0" cellspacing="0" border="0" align="center" class="dw3">
<tr>
<td height="30" align="center" class="f28 inlineTxt" style="font-family:gothamBlack, Arial black, Helvetica, sans-serif; font-size: 25px; font-weight: bold; color:#0c347b; letter-spacing:-0.04em; padding: 4px 0px 4px 0px;">Table Aligned Method</td>
</tr>
<tr>
<td align="left" valign="top" style="padding:10px 0px 0px 0px;">
<!-- Banner 1 -->
<table role="presentation" width="310" align="left" border="0" cellspacing="0" cellpadding="0" class="dw">
<tr>
<td align="left" valign="top">
<table role="presentation" align="left" width="310" border="0" cellpadding="0" cellspacing="0" class="dw">
<tr>
<td valign="top" align="left" style="line-height:1%; mso-line-height-rule:exactly;"><a href="##2BNR1##<%@ include view='dixDIXtrackingCPCW1' %>~PageType~Category~2BNR1~<%@ include view='dixDIXtrackingCPCW2' %>" _label="2BNR1_Category"><img align="left" width="310" height="196" src="https://imgplaceholder.com/880x560/00b0e8/feffff?text=2NOM1&font-size=80" alt="##alt##" border="0" class="dw" style="display:block;" /></a></td>
</tr>
<tr>
<td align="center" valign="middle" style="padding:2px 0px 0px 0px;"><a href="##2BNR1##?<%@ include view='dixDIXtrackingCPCW1' %>~PageType~Category~2BNR1~<%@ include view='dixDIXtrackingCPCW2' %>" _label="2BNR1_Category" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; color:#0c347b; text-decoration: underline;">Find out more</a></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- // banner 1 -->
<!-- Banner 2 -->
<table role="presentation" width="334" align="left" border="0" cellspacing="0" cellpadding="0" class="dw">
<tr>
<td align="right" class="tP30">
<table role="presentation" align="right" width="310" border="0" cellpadding="0" cellspacing="0" class="dw">
<tr>
<td valign="top" align="left" style="line-height:1%; mso-line-height-rule:exactly;"><a href="##2BNR2##?<%@ include view='dixDIXtrackingCPCW1' %>~PageType~Category~2BNR2~<%@ include view='dixDIXtrackingCPCW2' %>" _label="2BNR2_Category"><img align="left" width="310" height="196" src="https://imgplaceholder.com/880x560/00b0e8/feffff?text=2NOM2&font-size=80" alt="##alt##" border="0" class="dw" style="display:block;" /></a></td>
</tr>
<tr>
<td align="center" valign="middle" style="padding:2px 0px 0px 0px;"><a href="##2BNR2##?<%@ include view='dixDIXtrackingCPCW1' %>~PageType~Category~2BNR2~<%@ include view='dixDIXtrackingCPCW2' %>" _label="2BNR2_Category" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; color:#0c347b; text-decoration: underline;">Find out more</a></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- // banner 2 -->
</td>
</tr>
</table>
</td>
</tr>
<!-- 2NOM (1-2) BG test -->
<tr>
<td align="center" style="padding: 50px 0px 50px 0px;">
<table role="presentation" width="650" border="0" align="center" cellpadding="0" cellspacing="0" class="dw3">
<tbody>
<tr>
<td align="center" class="f28 inlineTxt" style="font-family:gothamBlack, Arial black, Helvetica, sans-serif; font-size: 25px; line-height:25px; font-weight: bold; color:#636363; letter-spacing:-0.04em; padding-bottom:10px;">See the action in the clarity it deserves</td>
</tr>
<tr>
<td align="center" valign="middle" style="font-family:Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color:#666665; padding:10px 0px 20px 0px;">Built‑in Sports Mode and Ultra Motion technology are perfect for watching sport, even with high-speed action the picture will stay crystal clear.</td>
</tr>
<tr>
<th align="center" width="650" class="dw db">
<table role="presentation" width="650" class="dw" border="0" cellspacing="0" cellpadding="0">
<tr>
<th width="310" class="dw db" style="font-weight:normal;">
<table role="presentation" width="100%" align="center" class="dw" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="hAuto" background="https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk05/HisenseTV/V6/bg_anim_loop_fifatv_V1b.gif" bgcolor="#feffff" width="310" height="196" valign="top" style="background-image:url(https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk05/HisenseTV/V6/bg_anim_loop_fifatv_V1b.gif);background-size:100%; background-size:cover; background-size:contain; background-position: top left; background-repeat:no-repeat; background:url(https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk05/HisenseTV/V6/bg_anim_loop_fifatv_V1b.gif) 0 0 / cover #feffff;">
<!--[if gte mso 9]>
<v:rect xmlns:v="urn:schemas-microsoft-com:vml" fill="true" stroke="false" style="width:310px;height:196px;">
<v:fill type="frame" src="https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk05/HisenseTV/V6/bg_anim_loop_fifatv_V1b.gif" color="#feffff" />
<v:textbox inset="0,0,0,0">
<![endif]-->
<div>
<table role="presentation" width="310" class="dw" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<th width="310" class="hAuto dw" style="font-weight:normal;" dir="ltr">
<table role="presentation" width="310" border="0" align="center" cellpadding="0" cellspacing="0" class="dw">
<tr>
<td align="center" valign="top"><a href="##2NOM1##?<%@ include view='dixDIXtrackingCPCW1' %>~PageType~Category~2NOM1~<%@ include view='dixDIXtrackingCPCW2' %>#srcid=11026" _label="2NOM1_Category"><img align="center" width="310" height="196" src="https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk05/HisenseTV/V6/NOM1.png" alt=" TV alt 1" style="display:block;" class="dw" border="0" /></a></td>
</tr>
</table>
</th>
</tr>
</tbody>
</table>
</div>
<!--[if gte mso 9]>
</v:textbox>
</v:rect>
<![endif]-->
</td>
</tr>
<tr>
<td align="center" valign="middle" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color:#666666; padding-top:10px;">1 in 20 chance to get your money back¹</td>
</tr>
<tr>
<td height="45" align="center" valign="middle" class="nomTitle"><a href="https://www.currys.co.uk/gbuk/smart-tech/smart-tech/smart-watches-and-fitness/smart-watches/apple-watch-series-4-space-grey-black-sports-loop-40-mm-10185450-pdt.html ?<%@ include view='dixDIXtrackingCPCW1' %>~PageType~Category~2NOM1~<%@ include view='dixDIXtrackingCPCW2' %>" _label="2NOM1_Category" style="font-family:Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; font-weight: bold; color:#0c347b; text-decoration: none;">Hisense 55" U7A Smart 4K Ultra HD HDR TVs</a></td>
</tr>
<tr>
<td align="center" valign="middle">
<table role="presentation" width="94%" border="0" align="center" cellpadding="0" cellspacing="0" class="dw3">
<tr>
<td height="33" style="border-top: solid 1px #dedede; border-bottom: solid 1px #dedede;">
<table role="presentation" width="100%" border="0" align="center" cellpadding="0" cellspacing="0" class="dw">
<tr>
<td align="center" valign="bottom" width="48%" style="font-family:Arial, Helvetica, sans-serif; font-size: 18px; line-height: 20px; color:#666666;">Only <a href="##2NOM1##?<%@ include view='dixDIXtrackingCPCW1' %>~PageType~Category~2NOM1~<%@ include view='dixDIXtrackingCPCW2' %>" _label="2NOM1_Category" style="font-family:Arial, Helvetica, sans-serif; font-size: 18px; line-height:20px; font-weight: bold; color:#cb003a; text-decoration: underline;">£599.00</a></td>
<td align="center" valign="bottom" width="48%" style="font-family:Arial, Helvetica, sans-serif; font-size: 18px; line-height: 20px; color:#666666;">Save £200.00</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center" valign="middle" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color:#666666; padding-top: 10px;">Was £799.00</td>
</tr>
<tr>
<td height="40" align="center" valign="middle"><a href="https://www.currys.co.uk/gbuk/yourplan-1347-commercial.html?<%@ include view='dixDIXtrackingCPCW1' %>~COM~SER~2NOM1~<%@ include view='dixDIXtrackingCPCW2' %>#store" _label="2NOM1_SER" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color:#0c347b; text-decoration:none;">Flexible credit available</a></td>
</tr>
<tr>
<td align="center">
<table role="presentation" width="210" class="cta" border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td height="44" valign="middle" align="center" bgcolor="#569622" class="hAuto"><a href=" https://www.currys.co.uk/gbuk/smart-tech/smart-tech/smart-watches-and-fitness/smart-watches/apple-watch-series-4-space-grey-black-sports-loop-40-mm-10185450-pdt.html?<%@ include view='dixDIXtrackingCPCW1' %>~PageType~Category~2NOM1~<%@ include view='dixDIXtrackingCPCW2' %>" _label="2NOM1_Category" style="background-color:#569622; border-radius:3px; color:#feffff; display:block; font-family:gothamBook, Arial, Helvetica, sans-serif; font-size:16px; font-weight:bold; line-height:44px; text-align:center; text-decoration:none; -webkit-text-size-adjust:inherit;">Buy or reserve ></a></td>
</tr>
</table>
</td>
</tr>
</table>
</th>
<th width="30" height="30" class="db bP20" align="center"> </th>
<th width="310" class="dw db" style="font-weight:normal;">
<table role="presentation" width="100%" align="center" class="dw" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="hAuto" background="https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk05/HisenseTV/V6/bg_anim_loop_fifatv_V1b.gif" bgcolor="#feffff" width="310" height="196" valign="top" style="background-image:url(https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk05/HisenseTV/V6/bg_anim_loop_fifatv_V1b.gif);background-size:100%; background-size:cover; background-size:contain; background-position: top left; background-repeat:no-repeat; background:url(https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk05/HisenseTV/V6/bg_anim_loop_fifatv_V1b.gif) 0 0 / cover #feffff;">
<!--[if gte mso 9]>
<v:rect xmlns:v="urn:schemas-microsoft-com:vml" fill="true" stroke="false" style="width:310px;height:196px;">
<v:fill type="frame" src="https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk05/HisenseTV/V6/bg_anim_loop_fifatv_V1b.gif" color="#feffff" />
<v:textbox inset="0,0,0,0">
<![endif]-->
<div>
<table role="presentation" width="310" class="dw" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<th width="310" class="hAuto dw" style="font-weight:normal;" dir="ltr">
<table role="presentation" width="310" border="0" align="center" cellpadding="0" cellspacing="0" class="dw">
<tr>
<td align="center" valign="top"><a href="##2NOM2##?<%@ include view='dixDIXtrackingCPCW1' %>~PageType~Category~2NOM2~<%@ include view='dixDIXtrackingCPCW2' %>?intcmpid=" _label="2NOM2_Category"><img align="center" width="310" height="196" src="https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk05/HisenseTV/V6/NOM2.png" alt=" TV alt 2" style="display:block;" class="dw" border="0" /></a></td>
</tr>
</table>
</th>
</tr>
</tbody>
</table>
</div>
<!--[if gte mso 9]>
</v:textbox>
</v:rect>
<![endif]-->
</td>
</tr>
<tr>
<td align="center" valign="middle" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color:#666666; padding-top:10px;">1 in 20 chance to get your money back¹</td>
</tr>
<tr>
<td height="45" align="center" valign="middle" class="nomTitle"><a href="##2NOM2##?<%@ include view='dixDIXtrackingCPCW1' %>~PageType~Category~2NOM2~<%@ include view='dixDIXtrackingCPCW2' %>" _label="2NOM2_Category" style="font-family:Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; font-weight: bold; color:#0c347b; text-decoration: none;">Hisense 65" Smart 4K Ultra HD TVs</a></td>
</tr>
<tr>
<td align="center" valign="middle">
<table role="presentation" width="94%" border="0" align="center" cellpadding="0" cellspacing="0" class="dw3">
<tr>
<td height="33" style="border-top: solid 1px #dedede; border-bottom: solid 1px #dedede;">
<table role="presentation" width="100%" border="0" align="center" cellpadding="0" cellspacing="0" class="dw">
<tr>
<td align="center" valign="bottom" width="48%" style="font-family:Arial, Helvetica, sans-serif; font-size: 18px; line-height: 20px; color:#666666;">Only <a href="##2NOM2##?<%@ include view='dixDIXtrackingCPCW1' %>~PageType~Category~2NOM2~<%@ include view='dixDIXtrackingCPCW2' %>" _label="2NOM2_Category" style="font-family:Arial, Helvetica, sans-serif; font-size: 18px; line-height:20px; font-weight: bold; color:#cb003a; text-decoration: underline;">£699.00</a></td>
<td align="center" valign="bottom" width="48%" style="font-family:Arial, Helvetica, sans-serif; font-size: 18px; line-height: 20px; color:#666666;">Save £100.00</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center" valign="middle" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color:#666666; padding-top: 10px;">Was £799.00</td>
</tr>
<tr>
<td height="40" align="center" valign="middle"><a href="https://www.currys.co.uk/gbuk/yourplan-1347-commercial.html?<%@ include view='dixDIXtrackingCPCW1' %>~COM~SER~2NOM2~<%@ include view='dixDIXtrackingCPCW2' %>#store" _label="2NOM2_SER" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color:#0c347b; text-decoration:none;">Flexible credit available</a></td>
</tr>
<tr>
<td align="center">
<table role="presentation" width="210" class="cta" border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td height="44" valign="middle" align="center" bgcolor="#569622" class="hAuto"><a href="http://t.e.currys.co.uk?<%@ include view='dixDIXtrackingCPCW1' %>~PageType~Category~2NOM2~<%@ include view='dixDIXtrackingCPCW2' %>" _label="2NOM2_Category" style="background-color:#569622; border-radius:3px; color:#feffff; display:block; font-family:gothamBook, Arial, Helvetica, sans-serif; font-size:16px; font-weight:bold; line-height:44px; text-align:center; text-decoration:none; -webkit-text-size-adjust:inherit;">Buy or reserve ></a></td>
</tr>
</table>
</td>
</tr>
</table>
</th>
</tr>
</table>
</th>
</tr>
<tr>
<td align="center" valign="middle" style="font-family:Arial, Helvetica, sans-serif; font-size: 11px; line-height: 14px; color:#666665; padding:20px 0px 0px 0px;">¹ GB 16+. Excludes NI. Ends midnight 26.06.18. Purchase of 55" + TV from Currys PC World required. Register at <a href="https://www.currys.co.uk/FreeTV?<%@ include view='dixDIXtrackingCPCW1' %>~COM~TsCs~2NOM~<%@ include view='dixDIXtrackingCPCW2' %>" _label="2NOM_TsCs" style="font-family:Arial, Helvetica, sans-serif; font-size: 11px; line-height: 16px; color:#666665; text-decoration:none;">currys.co.uk/FreeTV</a> from 32-42 days after purchase for chance to win refund of TV purchase cost (max. value £24,999). For full terms see <a href="https://www.currys.co.uk/gbuk/free-tv-708-commercial.html?<%@ include view='dixDIXtrackingCPCW1' %>~COM~TsCs~2NOM~<%@ include view='dixDIXtrackingCPCW2' %>" _label="2NOM_TsCs" style="font-family:Arial, Helvetica, sans-serif; font-size: 11px; line-height: 16px; color:#666665; text-decoration:none;">website</a>.</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- mBnr -->
<tr>
<td align="center" style="padding-top:30px; padding-bottom: 50px;">
<table role="presentation" width="600" border="0" align="center" cellpadding="0" cellspacing="0" class="dw3">
<tbody>
<tr>
<!-- safe bg -->
<th width="600" bgcolor="#feffff" align="center" class="dw db">
<table role="presentation" width="600" class="dw" border="0" cellspacing="0" cellpadding="0">
<tr>
<th width="600" class="dw db" style="font-weight:normal; display:block;">
<table role="presentation" width="600" border="0" cellspacing="0" cellpadding="0" class="dw">
<tr>
<td><a href="https://www.currys.co.uk/gbuk/search-keywords/xx_xx_32095_xx_xx/249770%257c249761/xx-criteria.html?<%@ include view='dixDIXtrackingCPCW1' %>~SEG~SMA~MainBNR~<%@ include view='dixDIXtrackingCPCW2' %>" _label="MainBNR_SMA">
<img align="left" width="600" height="365" src="https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk26/GoogleHomeHub/v1/mBNR2.jpg" alt=" Hey Google" border="0" class="hideAll" style="display:block;" />
<!--[if !mso]><!-- -->
<img align="left" width="1" height="1" src="https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk26/GoogleHomeHub/v1/mBNR-m3.jpg" alt=" Hey Google" border="0" class="dw" style="display:block;" />
<!--<![endif]-->
</a></td>
</tr>
</table>
</th>
</tr>
<!-- Intro -->
<tr>
<th width="600" bgcolor="#feffff" class="dw db" style="font-weight:normal; display:block; padding-top: 20px;">
<table role="presentation" width="80%" border="0" align="center" cellpadding="0" cellspacing="0" class="tc-">
<tr>
<td align="left" class="f27 inlineTxt" style="padding-bottom: 15px;"><a href="https://www.currys.co.uk/gbuk/search-keywords/xx_xx_32095_xx_xx/249770%257c249761/xx-criteria.html?<%@ include view='dixDIXtrackingCPCW1' %>~SEG~SMA~IntroTXT1~<%@ include view='dixDIXtrackingCPCW2' %>" _label="IntroTXT1_SMA" style="font-family:gothamBook, Arial, Helvetica, sans-serif; font-weight:bold; font-size:28px; line-height:32px; color:#6e2c6b; letter-spacing:-0.02em; text-decoration:none; -webkit-text-size-adjust:inherit;">Introducing <span>Google Home Hub.</span> <br class="hideAll" /><span>Help at a glance.</span></a></td>
</tr>
<tr>
<td align="left" valign="middle" style="font-family:Arial, Helvetica, sans-serif; font-size: 15px; line-height:20px; font-weight: normal; color:#575756; font-weight:normal; text-transform:none; text-decoration: none;" class="p">With the Google Assistant built in, use your voice to view your latest events and reminders, control compatible smart devices, and get answers from Google and YouTube. <br /><br />Get your hands on a Google Home Hub today from <a href="https://www.currys.co.uk/gbuk/index.html?<%@ include view='dixDIXtrackingCPCW1' %>~HOM~HOM~IntroTXT2~<%@ include view='dixDIXtrackingCPCW2' %>" _label="IntroTXT2_HOM" style="font-family:Arial, Helvetica, sans-serif; font-size: 15px; line-height:26px; font-weight: normal; color:#575756; text-transform:none; text-decoration: underline;">Currys PC World</a> and get 6 months of YouTube Premium for free.¹</td>
</tr>
<tr>
<td align="center" style="padding: 30px 0px 0px 0px;">
<table role="presentation" width="100%" class="dw" border="0" cellspacing="0" cellpadding="0">
<tr>
<th width="200" class="dw db tP10 bP20" align="center" style="font-weight:normal; padding: 15px 0px 15px 0px;">
<table role="presentation" width="200" class="cta w80" border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td height="44" valign="middle" align="center" bgcolor="#0d428a" class="hAuto"><a href="##IntroBTN##?<%@ include view='dixDIXtrackingCPCW1' %>~PRO~SMA~IntroBTN~<%@ include view='dixDIXtrackingCPCW2' %>" _label="IntroBTN_SMA" style="background-color:#0d428a; border-radius:3px; color:#feffff; display:block; font-family:gothamBook, Arial, Helvetica, sans-serif; font-size:16px; font-weight:bold; line-height:44px; text-align:center; text-decoration:none; -webkit-text-size-adjust:inherit;">Shop now ></a></td>
</tr>
</table>
</th>
<th width="280" class="dw db" align="center" style="font-weight:normal;">
<table role="presentation" width="280" align="center" border="0" cellspacing="0" cellpadding="0" class="dw">
<tr>
<td width="150" align="center" valign="middle" class="hideAll"> </td>
<td height="44" align="center" valign="middle" class="hAuto"><a href="https://www.currys.co.uk/gbuk/smart-tech/smart-tech/smart-home/voice-control-assistants/google-home-hub-chalk-10186047-pdt.html?<%@ include view='dixDIXtrackingCPCW1' %>~PRO~SMA~IntroBTN~<%@ include view='dixDIXtrackingCPCW2' %>" _label="IntroBTN_SMA" style="color:#575756; display:block; font-family:gothamBook, Arial, Helvetica, sans-serif; font-size:16px; font-weight:bold; line-height:44px; text-align:center; text-decoration:none; -webkit-text-size-adjust:inherit;">Only <span style="color:#0d428a;">£139.00</span></a></td>
</tr>
</table>
</th>
</tr>
</table>
</td>
</tr>
</table>
</th>
</tr>
<!-- BabyWrapper -->
<tr>
<td align="center" bgcolor="#0d428a">
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- Feature 1 -->
<tr>
<th width="600" class="dw db" style="font-weight:normal; display:block;">
<table role="presentation" width="600" border="0" cellspacing="0" cellpadding="0" class="dw">
<tr>
<td><a href="https://www.currys.co.uk/gbuk/search-keywords/xx_xx_32095_xx_xx/249770%257c249761/xx-criteria.html?<%@ include view='dixDIXtrackingCPCW1' %>~SEG~SMA~1BNR1~<%@ include view='dixDIXtrackingCPCW2' %>" _label="1BNR1_SMA"><img align="left" width="600" height="372" src="https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk26/GoogleHomeHub/v1/f1b.jpg" alt=" " border="0" class="dw" style="display:block;" /></a></td>
</tr>
</table>
</th>
</tr>
<!-- Feature 1 txt -->
<tr>
<th width="600" class="dw db" style="font-weight:normal; display:block; padding-top: 20px; padding-bottom: 20px;">
<table role="presentation" width="80%" border="0" align="center" cellpadding="0" cellspacing="0" class="tc-">
<tr>
<td align="left" class="h1-" style="padding-bottom: 15px; family:gothamBook, Arial, Helvetica, sans-serif; font-weight:bold; font-size:23px; line-height:25px; color:#feffff; letter-spacing:-0.02em; text-transform:uppercase; -webkit-text-size-adjust:inherit;">Personalise your daily routines</td>
</tr>
<tr>
<td align="left" valign="middle" style="font-family:Arial, Helvetica, sans-serif; font-size: 15px; line-height:20px; font-weight: normal; color:#feffff; font-weight:normal; text-transform:none; text-decoration: none;" class="p">With Voice Match, just say “Hey Google, good morning” to see your personalised events, commute, reminders or “Hey Google, good night” to set an alarm, turn off the lights, and much more.</td>
</tr>
</table>
</th>
</tr>
<!-- Feature 2 -->
<tr>
<th width="600" class="dw db" style="font-weight:normal; display:block;">
<table role="presentation" width="600" border="0" cellspacing="0" cellpadding="0" class="dw">
<tr>
<td><a href="##1BNR2##?<%@ include view='dixDIXtrackingCPCW1' %>~SEG~SMA~1BNR2~<%@ include view='dixDIXtrackingCPCW2' %>" _label="1BNR2_SMA"><img align="left" width="600" height="320" src="https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk26/GoogleHomeHub/v1/f2a.jpg" alt=" Show me my calendar" border="0" class="dw" style="display:block;" /></a></td>
</tr>
</table>
</th>
</tr>
</table>
</td>
</tr>
<!-- 1NOM1 -->
<tr>
<th dir="rtl" width="600" bgcolor="#feffff" class="dw db" style="font-weight:normal; display:block; padding-top:20px;">
<table role="presentation" width="600" border="0" cellspacing="0" cellpadding="0" class="dw">
<tr>
<th dir="ltr" width="300" class="dw db tP30 bP10" style="font-weight:normal;"><a href="https://www.currys.co.uk/gbuk/search-keywords/xx_xx_32095_xx_xx/249770%257c249761/xx-criteria.html?<%@ include view='dixDIXtrackingCPCW1' %>~SEG~SMA~1BNR3~<%@ include view='dixDIXtrackingCPCW2' %>" _label="1BNR3_SMA"><img width="300" height="210" src="https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk26/GoogleHomeHub/v1/f3b.jpg" alt=" " border="0" class="dw" style="display:block;" /></a></th>
<th dir="ltr" width="300" class="dw db" style="font-weight:normal;">
<table role="presentation" width="80%" class="dw3 center" border="0" cellpadding="0" cellspacing="0" align="center" dir="ltr">
<tr>
<td align="right" valign="bottom" class="nomTitle hAuto center"><a href="https://www.currys.co.uk/gbuk/search-keywords/xx_xx_32095_xx_xx/249770%257c249761/xx-criteria.html?<%@ include view='dixDIXtrackingCPCW1' %>~SEG~SMA~1BNR3~<%@ include view='dixDIXtrackingCPCW2' %>" _label="1BNR3_SMA" style="font-family:gothamBook, Arial, Helvetica, sans-serif; font-weight:bold; font-size:22px; line-height:24px; color:#0d428a; letter-spacing:-0.02em; text-decoration:none; -webkit-text-size-adjust:inherit;">Control your connected home in one view</a></td>
</tr>
</table>
</th>
</tr>
</table>
</th>
</tr>
<!-- 1NOM2 -->
<tr>
<th dir="rtl-" width="600" bgcolor="#feffff" class="dw db" style="font-weight:normal; display:block;">
<table role="presentation" width="600" border="0" cellspacing="0" cellpadding="0" class="dw">
<tr>
<th dir="ltr" width="300" class="dw db tP30 bP10" style="font-weight:normal;"><a href="https://www.currys.co.uk/gbuk/search-keywords/xx_xx_32095_xx_xx/249770%257c249761/xx-criteria.html?<%@ include view='dixDIXtrackingCPCW1' %>~SEG~SMA~1BNR4~<%@ include view='dixDIXtrackingCPCW2' %>" _label="1BNR4_SMA"><img width="300" height="210" src="https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk26/GoogleHomeHub/v1/f4a.jpg" alt=" Show me my photos from Cornwall" border="0" class="dw" style="display:block;" /></a></th>
<th dir="ltr" width="300" class="dw db" style="font-weight:normal;">
<table role="presentation" width="80%" class="dw3 center" border="0" cellpadding="0" cellspacing="0" align="center" dir="ltr">
<tr>
<td align="left" valign="bottom" class="nomTitle hAuto center bP30"><a href="##1BNR4##?<%@ include view='dixDIXtrackingCPCW1' %>~SEG~SMA~1BNR4~<%@ include view='dixDIXtrackingCPCW2' %>" _label="1BNR4_SMA" style="font-family:gothamBook, Arial, Helvetica, sans-serif; font-weight:bold; font-size:22px; line-height:24px; color:#0d428a; letter-spacing:-0.02em; text-decoration:none; -webkit-text-size-adjust:inherit;">Relive the moment with Google Photos</a></td>
</tr>
</table>
</th>
</tr>
</table>
</th>
</tr>
<!-- 1NOM3 -->
<tr>
<th dir="rtl" width="600" bgcolor="#feffff" class="dw db" style="font-weight:normal; display:block; padding:30px 0px 30px 0px;">
<table role="presentation" width="600" border="0" cellspacing="0" cellpadding="0" class="dw">
<tr>
<th dir="ltr" width="300" class="dw db" style="font-weight:normal;"><a href="https://www.currys.co.uk/gbuk/smart-tech/smart-tech/smart-home/voice-control-assistants/google-home-hub-chalk-10186047-pdt.html?<%@ include view='dixDIXtrackingCPCW1' %>~PRO~SMA~1BNR5~<%@ include view='dixDIXtrackingCPCW2' %>" _label="1BNR5_SMA"><img width="300" height="180" src="https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk26/GoogleHomeHub/v1/f5.jpg" alt=" " border="0" class="dw" style="display:block;" /></a></th>
<th dir="ltr" width="300" class="dw db" style="font-weight:normal;">
<table role="presentation" width="200" class="cta w80" border="0" cellpadding="0" cellspacing="0" align="center" dir="ltr">
<tr>
<td height="44" align="center" valign="middle" class="hAuto"><a href="https://www.currys.co.uk/gbuk/smart-tech/smart-tech/smart-home/voice-control-assistants/google-home-hub-chalk-10186047-pdt.html?<%@ include view='dixDIXtrackingCPCW1' %>~PRO~SMA~1BNR5~<%@ include view='dixDIXtrackingCPCW2' %>" _label="1BNR5_SMA" style="color:#575756; display:block; font-family:gothamBook, Arial, Helvetica, sans-serif; font-size:16px; font-weight:bold; line-height:44px; text-align:center; text-decoration:none; -webkit-text-size-adjust:inherit;">Google Home Hub</a></td>
</tr>
<tr>
<td height="44" align="center" valign="middle" class="hAuto bP10"><a href="https://www.currys.co.uk/gbuk/smart-tech/smart-tech/smart-home/voice-control-assistants/google-home-hub-chalk-10186047-pdt.html?<%@ include view='dixDIXtrackingCPCW1' %>~PRO~SMA~1BNR5~<%@ include view='dixDIXtrackingCPCW2' %>" _label="1BNR5_SMA" style="color:#575756; display:block; font-family:gothamBook, Arial, Helvetica, sans-serif; font-size:16px; font-weight:bold; line-height:44px; text-align:center; text-decoration:none; -webkit-text-size-adjust:inherit;">Only <span style="color:#0d428a;">£139.00</span></a></td>
</tr>
<tr>
<td height="44" valign="middle" align="center" bgcolor="#0d428a" class="hAuto"> <a href="https://www.currys.co.uk/gbuk/smart-tech/smart-tech/smart-home/voice-control-assistants/google-home-hub-chalk-10186047-pdt.html?<%@ include view='dixDIXtrackingCPCW1' %>~PRO~SMA~1BNR5~<%@ include view='dixDIXtrackingCPCW2' %>" _label="1BNR5_SMA" style="background-color:#0d428a; border-radius:3px; color:#feffff; display:block; font-family:gothamBook, Arial, Helvetica, sans-serif; font-size:16px; font-weight:bold; line-height:44px; text-align:center; text-decoration:none; -webkit-text-size-adjust:inherit;">Shop now ></a> </td>
</tr>
</table>
</th>
</tr>
</table>
</th>
</tr>
</table>
</th>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- Nest -->
<tr>
<td align="center" style="padding-bottom: 50px;">
<table role="presentation" width="600" border="0" align="center" cellpadding="0" cellspacing="0" class="dw3">
<tbody>
<tr>
<th width="600" class="dw db" style="font-weight:normal; display:block;">
<table role="presentation" width="80%" border="0" align="center" cellpadding="0" cellspacing="0" class="tc-">
<tr>
<td align="left" class="h1-" style="padding-bottom: 15px; font-family:gothamBook, Arial, Helvetica, sans-serif; font-weight:bold; font-size:25px; font-weight:bold; line-height:28px; color:#494948; letter-spacing:-0.02em; -webkit-text-size-adjust:inherit;">Keep your home comfortable <span style="display:inline-block;">with Nest</span></td>
</tr>
<tr>
<td align="left" valign="middle" style="font-family:Arial, Helvetica, sans-serif; font-size: 15px; line-height:20px; font-weight: normal; color:#575756; font-weight:normal; text-transform:none; text-decoration: none;" class="p">The new Nest Thermostat E comes with proven energy-saving features. It’s all set with a simple schedule that’s easy to adjust. You can control it from anywhere with the Nest app or your Google Home Hub when you’re at home. And it’s easy to install yourself.</td>
</tr>
</table>
</th>
</tr>
<tr>
<th dir="rtl-" width="600" class="dw db" style="font-weight:normal; display:block; padding-top:30px;">
<table role="presentation" width="600" border="0" cellspacing="0" cellpadding="0" class="dw">
<tr>
<th dir="ltr" width="300" class="dw db" style="font-weight:normal;"><a href="https://www.currys.co.uk/gbuk/smart-tech/smart-tech/smart-home/smart-heating/nest-thermostat-e-10186639-pdt.html?<%@ include view='dixDIXtrackingCPCW1' %>~PRO~SMA~1BNR6~<%@ include view='dixDIXtrackingCPCW2' %>" _label="1BNR6_SMA"><img width="300" height="180" src="https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk26/GoogleHomeHub/v1/nestb_opt.png" alt=" " border="0" class="dw" style="display:block;" /></a></th>
<th dir="ltr" width="300" class="dw db" style="font-weight:normal;">
<table role="presentation" width="200" class="cta w80" border="0" cellpadding="0" cellspacing="0" align="center" dir="ltr">
<tr>
<td height="44" align="center" valign="middle" class="hAuto"><a href="https://www.currys.co.uk/gbuk/smart-tech/smart-tech/smart-home/smart-heating/nest-thermostat-e-10186639-pdt.html?<%@ include view='dixDIXtrackingCPCW1' %>~PRO~SMA~1BNR6~<%@ include view='dixDIXtrackingCPCW2' %>" _label="1BNR6_SMA" style="color:#575756; display:block; font-family:gothamBook, Arial, Helvetica, sans-serif; font-size:16px; font-weight:bold; line-height:44px; text-align:center; text-decoration:none; -webkit-text-size-adjust:inherit;">Nest Thermostat E</a></td>
</tr>
<tr>
<td height="44" align="center" valign="middle" class="hAuto bP10"><a href="https://www.currys.co.uk/gbuk/smart-tech/smart-tech/smart-home/smart-heating/nest-thermostat-e-10186639-pdt.html?<%@ include view='dixDIXtrackingCPCW1' %>~PRO~SMA~1BNR6~<%@ include view='dixDIXtrackingCPCW2' %>" _label="1BNR6_SMA" style="color:#575756; display:block; font-family:gothamBook, Arial, Helvetica, sans-serif; font-size:16px; font-weight:bold; line-height:44px; text-align:center; text-decoration:none; -webkit-text-size-adjust:inherit;">Only <span style="color:#0d428a;">£199.99</span></a></td>
</tr>
<tr>
<td height="44" valign="middle" align="center" bgcolor="#0d428a" class="hAuto"><a href="https://www.currys.co.uk/gbuk/smart-tech/smart-tech/smart-home/smart-heating/nest-thermostat-e-10186639-pdt.html?<%@ include view='dixDIXtrackingCPCW1' %>~PRO~SMA~1BNR6~<%@ include view='dixDIXtrackingCPCW2' %>" _label="1BNR6_SMA" style="background-color:#0d428a; border-radius:3px; color:#feffff; display:block; font-family:gothamBook, Arial, Helvetica, sans-serif; font-size:16px; font-weight:bold; line-height:44px; text-align:center; text-decoration:none; -webkit-text-size-adjust:inherit;">Shop now ></a></td>
</tr>
</table>
</th>
</tr>
</table>
</th>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- HFWYALF -->
<tr>
<td align="center" bgcolor="#feffff" style="padding: 20px 0px 50px 0px;">
<table role="presentation" class="dw3 hyfwylf" width="650" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td align="center" class="h1-" style="padding-bottom: 15px; font-family:gothamBook, Arial, Helvetica, sans-serif; font-weight:bold; font-size:25px; font-weight:bold; line-height:28px; color:#636363; letter-spacing:-0.02em; -webkit-text-size-adjust:inherit;">Haven’t found what you’re looking for?</td>
</tr>
<tr>
<td align="center" valign="middle" style="font-family:Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color:#666665; padding:10px 0px 10px 0px;">We’re dedicated to helping you find everything you need...</td>
</tr>
<tr>
<!-- TH -->
<th align="center" width="650" class="dw db">
<table role="presentation" width="650" class="dw" border="0" cellspacing="0" cellpadding="0">
<tr>
<th width="320" class="dw db">
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<th valign="top" style="font-weight:normal;">
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><a href="https://www.currys.co.uk/gbuk/household-appliances/laundry-332-c.html?<%@ include view='dixDIXtrackingCPCW1' %>~SEG~WMA~CAT1~<%@ include view='dixDIXtrackingCPCW2' %>" _label="CAT1_WMA"><img src="https://currys-ssl.cdn.dixons.com/css/themes/email/Assets/footer/mda.jpg" width="100" height="111" border="0" class="aw" alt="Shop" style="display:block;"/></a></td>
</tr>
<tr>
<td align="center" valign="top" style="padding-top: 5px;"><a href="https://www.currys.co.uk/gbuk/household-appliances/laundry-332-c.html?<%@ include view='dixDIXtrackingCPCW1' %>~SEG~WMA~CAT1~<%@ include view='dixDIXtrackingCPCW2' %>" _label="CAT1_WMA" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color:#636363; text-decoration: underline;">Laundry</a></td>
</tr>
</table>
</th>
<th width="10" height="10" valign="top"> </th>
<th valign="top" style="font-weight:normal;">
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><a href="https://www.currys.co.uk/gbuk/home-appliances/floorcare-337-c.html?<%@ include view='dixDIXtrackingCPCW1' %>~CAT~FLO~CAT2~<%@ include view='dixDIXtrackingCPCW2' %>" _label="CAT2_FLO"><img src="https://currys-ssl.cdn.dixons.com/css/themes/email/Assets/footer/flo.jpg" width="100" height="111" border="0" class="aw" alt="Shop" style="display:block;"/></a></td>
</tr>
<tr>
<td align="center" valign="top" style="padding-top: 5px;"><a href="https://www.currys.co.uk/gbuk/home-appliances/floorcare-337-c.html?<%@ include view='dixDIXtrackingCPCW1' %>~CAT~FLO~CAT2~<%@ include view='dixDIXtrackingCPCW2' %>" _label="CAT2_FLO" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color:#636363; text-decoration: underline;">Floorcare</a></td>
</tr>
</table>
</th>
<th width="10" height="10" valign="top"> </th>
<th align="top" style="font-weight:normal;">
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><a href="https://www.currys.co.uk/gbuk/tv-and-home-entertainment/televisions/televisions/301_3002_30002_xx_xx/xx-criteria.html?<%@ include view='dixDIXtrackingCPCW1' %>~SEG~TVN~CAT3~<%@ include view='dixDIXtrackingCPCW2' %>" _label="CAT3_TVN"><img src="https://currys-ssl.cdn.dixons.com/css/themes/email/Assets/footer/tvn.jpg" width="100" height="111" border="0" class="aw" alt="Shop" style="display:block;"/></a></td>
</tr>
<tr>
<td align="center" valign="top" style="padding-top: 5px;"><a href="https://www.currys.co.uk/gbuk/tv-and-home-entertainment/televisions/televisions/301_3002_30002_xx_xx/xx-criteria.html?<%@ include view='dixDIXtrackingCPCW1' %>~SEG~TVN~CAT3~<%@ include view='dixDIXtrackingCPCW2' %>" _label="CAT3_TVN" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color:#636363; text-decoration: underline;">Televisions</a></td>
</tr>
</table>
</th>
</tr>
</table>
</th>
<th width="330" class="dw db tP20">
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<th width="10" height="10" class="hideAll" valign="top"> </th>
<th valign="top" style="font-weight:normal;">
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><a href="https://www.currys.co.uk/gbuk/audio-32-u.html?<%@ include view='dixDIXtrackingCPCW1' %>~UNI~AUD~CAT4~<%@ include view='dixDIXtrackingCPCW2' %>" _label="CAT4_AUD"><img src="https://currys-ssl.cdn.dixons.com/css/themes/email/Assets/footer/aud.jpg" width="100" height="111" border="0" class="aw" alt="Shop" style="display:block;"/></a></td>
</tr>
<tr>
<td align="center" valign="top" style="padding-top: 5px;"><a href="https://www.currys.co.uk/gbuk/audio-32-u.html?<%@ include view='dixDIXtrackingCPCW1' %>~UNI~AUD~CAT4~<%@ include view='dixDIXtrackingCPCW2' %>" _label="CAT4_AUD" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color:#636363; text-decoration: underline;">Audio</a></td>
</tr>
</table>
</th>
<th width="10" height="10" valign="top"> </th>
<th valign="top" style="font-weight:normal;">
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><a href="https://www.currys.co.uk/gbuk/computing/laptops/laptops/315_3226_30328_xx_xx/xx-criteria.html?<%@ include view='dixDIXtrackingCPCW1' %>~SEG~LAP~CAT5~<%@ include view='dixDIXtrackingCPCW2' %>" _label="CAT5_LAP"><img src="https://currys-ssl.cdn.dixons.com/css/themes/email/Assets/footer/lap.jpg" width="100" height="111" border="0" class="aw" alt="Shop" style="display:block;"/></a></td>
</tr>
<tr>
<td align="center" valign="top" style="padding-top: 5px;"><a href="https://www.currys.co.uk/gbuk/computing/laptops/laptops/315_3226_30328_xx_xx/xx-criteria.html?<%@ include view='dixDIXtrackingCPCW1' %>~SEG~LAP~CAT5~<%@ include view='dixDIXtrackingCPCW2' %>" _label="CAT5_LAP" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color:#636363; text-decoration: underline;">Laptops</a></td>
</tr>
</table>
</th>
<th width="10" height="10" valign="top"> </th>
<th valign="top" style="font-weight:normal;">
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><a href="https://www.currys.co.uk/gbuk/gift-vouchers-1030-theme.html?<%@ include view='dixDIXtrackingCPCW1' %>~CON~SER~CAT6~<%@ include view='dixDIXtrackingCPCW2' %>" _label="CAT6_SER"><img src="https://currys-ssl.cdn.dixons.com/css/themes/email/Assets/footer/giftcard.jpg" width="100" height="111" border="0" class="aw" alt="Shop" style="display:block;"/></a></td>
</tr>
<tr>
<td align="center" valign="top" style="padding-top: 5px;"><a href="https://www.currys.co.uk/gbuk/gift-vouchers-1030-theme.html?<%@ include view='dixDIXtrackingCPCW1' %>~CON~SER~CAT6~<%@ include view='dixDIXtrackingCPCW2' %>" _label="CAT6_SER" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color:#636363; text-decoration: underline;">Giftcards</a></td>
</tr>
</table>
</th>
</tr>
</table>
</th>
</tr>
</table>
</th>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- [$]V1.2 WHYGIR -->
<tr>
<td align="center" style="padding-bottom: 50px;">
<table role="presentation" class="dw" width="650" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<th align="center" width="650" class="dw db">
<table role="presentation" width="650" align="center" class="dw3" border="0" cellspacing="0" cellpadding="0">
<tr>
<th width="200" valign="top" class="dw db" style="font-weight:normal;">
<table width="200" border="0" align="center" cellpadding="0" cellspacing="0" class="dw t-w70" role="presentation">
<tr>
<th width="200" valign="top" class="t-w30 t-dIB m-dB dw" style="font-weight:normal; display:inline-block;">
<table role="presentation" width="100%" align="center" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="100" align="center" valign="top"> <a href="https://www.currys.co.uk/gbuk/delivery-1021-theme.html?<%@ include view='dixDIXtrackingCPCW1' %>~COM~SER~DEL~<%@ include view='dixDIXtrackingCPCW2' %>" _label="DEL_SER"><img src="https://currys-ssl.cdn.dixons.com/css/themes/email/AC/CORE/ico/RTB/ico_freedelivery.png" alt=" " width="64" height="64" align="center" style="display:block; color:#0D428A; font-family:gothamBlack, Arial Black, Helvetica, sans-serif; font-size:20px; line-height:44px; margin:0 auto; text-align:center;" border="0" /></a> </td>
</tr>
</table>
</th>
<!--[if (gte mso 9)|(IE)]>
</tr>
<tr align="center">
<![endif]-->
<th width="200" valign="top" class="t-w70 t-dIB m-dB dw" style="font-weight:normal; display:inline-block;">
<table width="100%" border="0" align="left" cellpadding="0" cellspacing="0" role="presentation">
<tr>
<td height="40" align="center" valign="middle" class="hAuto clearBr t-l"> <a href="https://www.currys.co.uk/gbuk/delivery-1021-theme.html?<%@ include view='dixDIXtrackingCPCW1' %>~COM~SER~DEL~<%@ include view='dixDIXtrackingCPCW2' %>" _label="DEL_SER" style="font-family:gothamBook, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; font-weight: bold; color:#6A2C6B; text-decoration: none;" class="t-l grad-txt">Free delivery on all orders</a></td>
</tr>
<tr>
<td height="30" align="center" valign="middle" class="hAuto t-l" style="font-family:Arial, Helvetica, sans-serif; font-size: 10px; line-height: 10px; color:#757575;">Subject to availability.</td>
</tr>
<tr>
<td align="center" valign="middle" class="t-l" style="padding-top:10px;"> <a href="https://www.currys.co.uk/gbuk/delivery-1021-theme.html?<%@ include view='dixDIXtrackingCPCW1' %>~COM~SER~DEL~<%@ include view='dixDIXtrackingCPCW2' %>" _label="DEL_SER" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; color:#636363; text-decoration: underline;" class="t-l">Find out more</a> </td>
</tr>