-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathemailToolsRefreshJS.html
More file actions
939 lines (926 loc) · 88.5 KB
/
emailToolsRefreshJS.html
File metadata and controls
939 lines (926 loc) · 88.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
<!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/CoreMasterTemplateCSS.css" rel="stylesheet" type="text/css" />
<% } %>
<style type="text/css">
body { background-color: #f6f6f6; }
@media only screen and (min-width: 0px) and (max-width: 649px) {
.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>
<!-- 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 style="padding-top: 25px;">
<table role="presentation" width="650" border="0" cellpadding="0" cellspacing="0" align="center" class="dw">
<tr>
<td valign="top" align="center"><a href="##MainBNR##?<%@ include view='dixDIXtrackingCPCW1' %>~PageType~Category~MainBNR~<%@ include view='dixDIXtrackingCPCW2' %>" _label="MainBNR_<%= Branch %>_Category"><img class="dw" width="650" height="181" src="https://currys-ssl.cdn.dixons.com/css/themes/email/2018-2019/wk41/AppleTradeIn/test/test1.jpg" alt=" " style="display: block; color: #1b447e; font-size: 18px; line-height: 20px; text-align: center; text-transform: uppercase;" border="0" /></a></td>
</tr>
</table>
</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="http://img.kickdyn.com/11029/jyqX9epjfu1KT4S4d2i3/imgancnt.png" 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://placeholdit.imgix.net/~text?txtsize=110&bg=00b0e8&txtclr=feffff&txt=880x560&w=880&h=560" 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://placeholdit.imgix.net/~text?txtsize=110&bg=00b0e8&txtclr=feffff&txt=880x560&w=880&h=560" 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>
<!-- WHYGIR -->
<tr>
<td align="center" bgcolor="#feffff" style="padding-bottom: 50px;">
<table role="presentation" class="dw3" 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;">We help you get it right</td>
</tr>
<tr>
<td align="center" valign="top" style="font-family:Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color:#666666; padding: 10px 0px 10px 0px;">We have 1000s of products online, expert colleagues in-store, support over the phone and set-up and installation from Team Knowhow. Choose delivery direct to you, reserve to collect from a store of your choice or pay and collect in store.</td>
</tr>
<tr>
<th align="center" width="650" class="dw db">
<table role="presentation" width="650" align="center" class="aw" border="0" cellspacing="0" cellpadding="0">
<tr>
<th width="200" valign="top" class="dw db" style="font-weight:normal;">
<table role="presentation" width="100%" align="center" class="dw" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="top" align="left"><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 width="200" height="74" src="https://currys-ssl.cdn.dixons.com/css/themes/email/Assets/fooICO/FD.jpg" alt=" Delivery" border="0" class="marginAuto" style="display:block; color:#0D428A; font-family:gothamBlack, Arial Black, Helvetica, sans-serif; font-size:20px; line-height:44px;" /></a></td>
</tr>
<tr>
<td height="55" align="center" valign="middle" class="hAuto clearBr"><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: 14px; line-height: 16px; font-weight: bold; color:#636363; text-decoration: none;">Free Delivery on 1000s of products<sup style="font-weight:normal;">†</sup></a></td>
</tr>
<tr>
<td align="center" valign="middle" style="padding:20px 0px 20px 0px;"><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;">Find out more</a></td>
</tr>
<tr>
<td height="55" align="center" valign="middle" class="hAuto" style="font-family:Arial, Helvetica, sans-serif; font-size: 11px; line-height: 13px; color:#666666;"><sup>†</sup>Subject to availability.</td>
</tr>
</table>
</th>
<th width="25" height="30" class="db" align="center"> </th>
<th valign="top" class="dw db" style="font-weight:normal;">
<table role="presentation" width="100%" align="center" class="dw" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="top" align="center"><a href="https://www.currys.co.uk/gbuk/s/find-a-store.html?<%@ include view='dixDIXtrackingCPCW1' %>~STO~SER~STORE~<%@ include view='dixDIXtrackingCPCW2' %>" _label="STORE_SER"><img width="200" height="74" src="https://currys-ssl.cdn.dixons.com/css/themes/email/Assets/fooICO/OLS.jpg" alt=" Store" border="0" class="marginAuto" style="display:block; color:#0D428A; font-family:gothamBlack, Arial Black, Helvetica, sans-serif; font-size:20px; line-height:44px;" /></a></td>
</tr>
<tr>
<td height="55" align="center" valign="middle" class="hAuto"><a href="https://www.currys.co.uk/gbuk/s/find-a-store.html?<%@ include view='dixDIXtrackingCPCW1' %>~STO~SER~STORE~<%@ include view='dixDIXtrackingCPCW2' %>" _label="STORE_SER" style="font-family:Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; font-weight: bold; color:#636363; text-decoration: none;">Free collection from over 800 stores including Carphone Warehouse</a></td>
</tr>
<tr class="hideAll-">
<td align="center" valign="middle" style="padding:20px 0px 0px 0px;" class="bT20"><a href="https://www.currys.co.uk/gbuk/s/find-a-store.html?<%@ include view='dixDIXtrackingCPCW1' %>~STO~SER~STORE~<%@ include view='dixDIXtrackingCPCW2' %>" _label="STORE_SER" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; color:#636363; text-decoration: underline;">Find your nearest store</a></td>
</tr>
</table>
</th>
<th width="25" height="30" class="db" align="center"> </th>
<th valign="top" class="dw db" style="font-weight:normal;">
<table role="presentation" width="100%" align="center" class="dw" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="top" align="left"><a href="https://www.currys.co.uk/gbuk/yourplan-1347-commercial.html?<%@ include view='dixDIXtrackingCPCW1' %>~COM~SER~YP~<%@ include view='dixDIXtrackingCPCW2' %>#store" _label="YP_SER"><img width="200" height="74" src="https://currys-ssl.cdn.dixons.com/css/themes/email/Assets/fooICO/YP.jpg" alt=" Your Plan" border="0" class="marginAuto" style="display:block; color:#0D428A; font-family:gothamBlack, Arial Black, Helvetica, sans-serif; font-size:20px; line-height:44px;" /></a></td>
</tr>
<tr>
<td height="55" align="center" valign="middle" class="hAuto"><a href="https://www.currys.co.uk/gbuk/yourplan-1347-commercial.html?<%@ include view='dixDIXtrackingCPCW1' %>~COM~SER~YP~<%@ include view='dixDIXtrackingCPCW2' %>#store" _label="YP_SER" style="font-family:Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; font-weight: bold; color:#636363; text-decoration: none;">Flexible credit available on all purchases from £99</a></td>
</tr>
<tr>
<td align="center" valign="middle" style="padding:20px 0px 0px 0px;"><a href="https://www.currys.co.uk/gbuk/yourplan-1347-commercial.html?<%@ include view='dixDIXtrackingCPCW1' %>~COM~SER~YP~<%@ include view='dixDIXtrackingCPCW2' %>#store" _label="YP_SER" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; color:#636363; text-decoration: underline;">Find out more</a></td>
</tr>
</table>
</th>
</tr>
</table>
</th>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- Socials -->
<tr>
<td align="center" bgcolor="#feffff" style="padding: 0px 0px 50px 0px;">
<table role="presentation" class="dw hyfwylf" width="648" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<th width="324" class="dw db">
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<th width="33%" valign="bottom" style="font-weight:normal;">
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><a href="http://www.facebook.com/curryspcworld" _label="Social1"><img src="https://currys-ssl.cdn.dixons.com/css/themes/email/Assets/social_facebook.gif" width="108" height="43" border="0" alt="Visit our" class="aw" style="display:block;"/></a></td>
</tr>
<tr>
<td align="center" valign="top" style="padding-top: 5px;"><a href="http://www.facebook.com/curryspcworld" _label="Social1" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color:#636363; text-decoration: underline;">Facebook</a></td>
</tr>
</table>
</th>
<th width="33%" valign="bottom" style="font-weight:normal;">
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><a href="http://www.twitter.com/curryspcworld" _label="Social2"><img src="https://currys-ssl.cdn.dixons.com/css/themes/email/Assets/social_twitter.gif" width="108" height="43" border="0" alt="Visit our" class="aw" style="display:block;"/></a></td>
</tr>
<tr>
<td align="center" valign="top" style="padding-top: 5px;"><a href="http://www.twitter.com/curryspcworld" _label="Social2" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color:#636363; text-decoration: underline;">Twitter</a></td>
</tr>
</table>
</th>
<th width="33%" valign="bottom" style="font-weight:normal;">
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><a href="http://www.pinterest.com/curryspcworld/" _label="Social3"><img src="https://currys-ssl.cdn.dixons.com/css/themes/email/Assets/social_pinterest.gif" width="108" height="43" border="0" alt="Visit our" class="aw" style="display:block;"/></a></td>
</tr>
<tr>
<td align="center" valign="top" style="padding-top: 5px;"><a href="http://www.pinterest.com/curryspcworld/" _label="Social3" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color:#636363; text-decoration: underline;">Pinterest</a></td>
</tr>
</table>
</th>
</tr>
</table>
</th>
<th width="324" class="dw db tP20">
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<th width="33%" valign="bottom" style="font-weight:normal;">
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><a href="http://www.youtube.com/curryspcworld" _label="Social4"><img src="https://currys-ssl.cdn.dixons.com/css/themes/email/Assets/social_youtube_i.gif" width="108" height="43" border="0" alt="Visit our" class="aw" style="display:block;"/></a></td>
</tr>
<tr>
<td align="center" valign="top" style="padding-top: 5px;"><a href="http://www.youtube.com/curryspcworld" _label="Social4" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color:#636363; text-decoration: underline;">YouTube</a></td>
</tr>
</table>
</th>
<th width="33%" valign="bottom" style="font-weight:normal;">
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="middle"><a href="http://techtalk.currys.co.uk/" _label="Social5"><img src="https://currys-ssl.cdn.dixons.com/css/themes/email/Assets/social_techtalk.gif" width="100" height="39" border="0" alt="Our blog" class="aw" style="display:block; margin:0 auto;"/></a></td>
</tr>
<tr>
<td align="center" valign="top" style="padding-top: 5px;"><a href="http://techtalk.currys.co.uk/" _label="Social5" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color:#636363; text-decoration: underline;">TechTalk</a></td>
</tr>
</table>
</th>
<th width="33%" valign="bottom" style="font-weight:normal;">
<table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="middle"><a href="https://www.teamknowhow.com/" _label="Social6"><img src="https://currys-ssl.cdn.dixons.com/css/themes/email/Assets/social_teamknowhow.gif" width="100" height="39" border="0" alt="Our expert service partner" class="aw" style="display:block; margin:0 auto;"/></a></td>
</tr>
<tr>
<td align="center" valign="top" style="padding-top: 5px;"><a href="https://www.teamknowhow.com/" _label="Social6" style="font-family:Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14px; color:#636363; text-decoration: underline;">Team Knowhow</a></td>
</tr>
</table>
</th>
</tr>
</table>
</th>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- Footer GDPR PCWB -->
<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;">PCWB Footer - AC Personalisation Inject</td>
</tr>
<tr>
<td align="center">
<table role="presentation" class="dw" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td style="padding: 0px 0px 30px 0px;" align="center">
<table role="presentation" width="650" cellpadding="0" cellspacing="0" border="0" align="center" class="dw3">
<tr>
<td align="left" valign="top" style="font-family:Arial, Helvetica, sans-serif; font-size:11px; line-height: 13px; color:#333332;"><strong>Terms and conditions</strong>
<br /><br />
1. Does not apply to ink products or third party sellers. Major UK electrical retailers include <span class="ios3">Amazon.co.uk, AO.com</span>, Argos, Asda, John Lewis and Tesco. Full list of major retailers applicable to this Price Promise available at <a href="https://www.pcworldbusiness.co.uk/customer-services/price-promise.jtp?<%@ include view='dixDIXtrackingPCWB' %>&utm_content=TsCsPP" _label="TsCsPP" style="color: #333332; text-decoration: underline;">pcworldbusiness.co.uk</a>. We’ll match our competitor’s store or website UK price, including voucher offers. The competitor’s product must be brand new, identical to ours, and offered on the same terms. We and the competitor must have stock ready for delivery. We must be able to verify the competitor’s price and stock position. We’ll match the price of a product, not delivery charges or other services. Voucher offers and codes redeemable in the issuing retailer will be matched with equivalent savings discounted at time of purchase, limited to one per transaction. Excludes custom quotes and gift vouchers/cards. Cannot be used with any other offer.
<br /><br />
<%@ include view='dixCoreFooterPCWB' %></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<!-- $|Footer -->
<tr>
<td align="center" valign="top" bgcolor="#f2f2f2" style="padding:30px 0px 30px 0px;">
<table role="presentation" width="630" cellpadding="0" cellspacing="0" border="0" align="center" class="dw3" bgcolor="#f2f2f2">
<tr>
<td align="left" valign="top" style="font-family:Arial, Helvetica, sans-serif; font-size:11px; line-height: 13px; color:#333332;"><strong>Important Your Plan information</strong><br />
<br />
DSG Retail Limited acts as a credit broker and not as a lender. Credit is provided by Creation Consumer Finance Ltd. Both DSG Retail Limited and Creation Consumer Finance Ltd are authorised and regulated by the Financial Conduct Authority.<br />
‡ Credit subject to status.<br />
<br />
</td>
</tr>
<tr>
<td height="39" align="left" valign="top" style="font-family:Arial, Helvetica, sans-serif; font-size:11px; line-height: 13px; color:#333332;"><strong>Terms and conditions</strong><br />
<br />
<!-- PricePromise Footer Inject -->
<%@ include view='dixCoreFooterCurrysPricePromise' %>
<!-- GDPR Footer Inject -->
<%@ include view='dixCoreFooterCurrys' %></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<% if ( chainProfile.partyId == "") { %>
<!-- Email Tools - Local only -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" language="javascript">
document.addEventListener("DOMContentLoaded", function() {
var versionUpdate = (new Date()).getTime();
var emailTools = document.createElement("script");
var injects = document.createElement("script");
var css = document.createElement("link");
emailTools.type = "text/javascript";
emailTools.src = "scripts/core.js?v=" + versionUpdate;
injects.type = "text/javascript";
injects.src = "scripts/PB_injects.js?v=" + versionUpdate;
css.type = "text/css;"
css.rel = "stylesheet"
css.href = "css/core.css?v=" + versionUpdate;
document.body.appendChild(css);
document.body.appendChild(emailTools);
document.body.appendChild(injects);
});
</script>
<% } %>
</body>
</html>