-
Notifications
You must be signed in to change notification settings - Fork 0
/
email.html
3957 lines (2906 loc) · 171 KB
/
email.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<META name="description" content="Anonymouse">
<META name="keywords" content="Anonymouse, anonymous, anonym, @nonymouse, @nonymous, Anon, AnonFTP, AnonEmail, FTP, email, e-mail, Free, Gratis, Kostenlos, Remailer, calling card, privacy, personal information, fast, easy, surf, surfing, web, www, log, logging, logfile, logfiles, cookie, cookies, cookiekiller, no cookies, reveal, stat, stats, statistic, statistics, mouse, mice, cat, cats">
<META name="author" content="Anonymouse">
<META name="rating" content="General">
<META name="robots" content="ALL">
<META name="revisit-after" content="31 days">
<TITLE>Anonymouse.org</TITLE>
<SCRIPT language="JavaScript">
<!--
function change(pic,url) { document.images[pic].src=url; }
function preload() {
var images = preload.arguments;
document.preloadlist = new Array();
for (var i=0;i<images.length;i++) {
document.preloadlist[i] = new Image();
document.preloadlist[i].src = images[i];
}
}
//-->
</SCRIPT>
</HEAD>
<BODY text="#000000" bgcolor="#FFFFFF" link="#0000FF" vlink="#501880" alink="#FF0000" onLoad="preload('images/buttons/anonwww2.gif','images/buttons/anonemail2.gif','images/buttons/anonnews2.gif')">
<FONT face="Arial, Helvetica, sans-serif">
<CENTER>
<A href="/"><IMG src="images/logo.jpg" lowsrc="images/empty.gif" alt="Anonymouse" height="110" width="436" border="0"></A>
<BR>
<FONT size="+3">AnonEmail</FONT><BR>
<A href="anonemail.html" onMouseOut="change('anonemail','images/buttons/anonemail.gif')" onMouseOver="change('anonemail','images/buttons/anonemail2.gif')"><IMG src="images/buttons/anonemail.gif" name="anonemail" alt="AnonEmail" width="107" height="38" border="0"></A>
<A href="anonwww.html" onMouseOut="change('anonwww','images/buttons/anonwww.gif')" onMouseOver="change('anonwww','images/buttons/anonwww2.gif')"><IMG src="images/buttons/anonwww.gif" name="anonwww" alt="AnonWWW" width="107" height="38" border="0"></A>
<A href="anonnews.html" onMouseOut="change('anonnews','images/buttons/anonnews.gif')" onMouseOver="change('anonnews','images/buttons/anonnews2.gif')"><IMG src="images/buttons/anonnews.gif" name="anonnews" alt="AnonNews" width="107" height="38" border="0"></A>
<BR>
With <FONT color="#FF0000">AnonEmail</FONT> it is possible to send e-mails <FONT color="#C0C000">without revealing</FONT> your e-mail address or<BR>
<FONT color="#0000FF">any information about your identity</FONT>. Therefore you can <FONT color="#FF00FF">communicate more freely</FONT><BR>
and you do not have to worry that it might cause consequences for you.<BR>
<BIG>This service allows you to send e-mails without revealing <U>any</U> personal information.</BIG><BR>
<BIG><STRONG>Protect your <FONT color="#FF0000">privacy</FONT>, protect your <FONT color="#FF00FF">data</FONT>, protect it for <FONT color="#0000FF">free</FONT>.</STRONG></BIG>
<P>
<FORM action="cgi-bin/anon-email.cgi" method="POST">
<TABLE>
<TR>
<TD align="right"><FONT face="Arial, Helvetica, sans-serif"><B>To:</B></FONT></TD>
<TD><FONT face="Arial, Helvetica, sans-serif"><INPUT type="text" name="to" size="39" maxlength="60"></FONT></TD>
</TR>
<TR>
<TD align="right"><FONT face="Arial, Helvetica, sans-serif"><B>Subject:</B></FONT></TD>
<TD><FONT face="Arial, Helvetica, sans-serif"><INPUT type="text" name="subject" size="39" maxlength="60"></FONT></TD>
</TR>
<TR>
<TD align="right" valign="top"><FONT face="Arial, Helvetica, sans-serif"><B>Message:</B></FONT></TD>
<TD><FONT face="Arial, Helvetica, sans-serif"><TEXTAREA name="text" rows="10" cols="60" wrap="off" style="overflow:auto;"></TEXTAREA></FONT></TD>
</TR>
<TR>
<TD></TD>
<TD align="center"><FONT face="Arial, Helvetica, sans-serif"><INPUT type="submit" value="Send Anonymously"></FONT></TD>
</TR></TABLE>
</FORM>
<P>
<center>
<!--WERBUNG-->Adverts<br><script type='text/javascript'> var m3_u = 'http://openx.anonymouse.org/delivery/ajs.php'; var m3_r = Math.floor(Math.random()*99999999999); if (!document.MAX_used) { document.MAX_used = ','; } document.write("<scr"+"ipt type='text/javascript' src='"+m3_u); document.write("?zoneid=2"); document.write('&cb=' + m3_r); if (document.MAX_used != ',') { document.write ("&exclude=" + document.MAX_used); } document.write(document.charset ? '&charset='+document.charset : (document.characterSet ? '&charset='+document.characterSet : '')); document.write("&loc=" + escape(window.location)); if (document.referrer) { document.write("&referer=" + escape(document.referrer)); } if (document.context) { document.write("&context=" + escape(document.context)); } if (document.mmm_fo) { document.write("&mmm_fo=1"); } document.write("'><\/scr"+"ipt>");</script><NOSCRIPT><A HREF="/vip.html" TARGET="_blank"><IMG SRC="/images/ads/vipbanner.gif" WIDTH=468 HEIGHT=60 BORDER=0></A></NOSCRIPT><br><!--/WERBUNG-->
<IMG src="images/hr.gif" width="493" height="19" alt=""><BR>
<FONT size="-1">
<A href="vip.html">Members</A> | <A href="tos.html">Terms of Service</A> | <A href="privacy.html">Privacy Policy</A> | <A href="faq.html">Help / FAQ</A> | <A href="contact.html">Contact Info</A>
</FONT>
<P>
<FONT size="-1">Copyright © 1997-2019 by Anonymouse<BR>All Rights Reserved</FONT><BR>
</CENTER>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-5181998329895443",
enable_page_level_ads: true
});
</script>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Send Anonymous Email</title>
<link href="style.css" rel="stylesheet" type="text/css">
<script type="text/JavaScript">
<!--
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_validateForm() { //v4.0
var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=MM_findObj(args[i]);
if (val) { nm=val.name; if ((val=val.value)!="") {
if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@');
if (p<1 || p==(val.length-1)) errors+='- '+nm+' must contain an e-mail address.\n';
} else if (test!='R') { num = parseFloat(val);
if (isNaN(val)) errors+='- '+nm+' must contain a number.\n';
if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
min=test.substring(8,p); max=test.substring(p+1);
if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n';
} } } else if (test.charAt(0) == 'R') errors += '- '+nm+' is required.\n'; }
} if (errors) alert('The following error(s) occurred:\n'+errors);
document.MM_returnValue = (errors == '');
}
//-->
</script>
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
</head>
<body bgcolor=#ffffff text=#000000 link=#0000cc vlink=#551a8b alink=#ff0000 topmargin=3 marginheight=3>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.8";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<table width="760" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td><div align="center"><strong><font size="+2"><br>
<table><tr><td>
<img src="images/logo.gif" alt="Send Anonymous Mail" width="300" height="50"></font></strong><br></td>
<td><div class="fb-like" data-href="http://www.sendanonymousemail.net" data-width="200" data-layout="standard" data-action="like" data-size="large" data-show-faces="true" data-share="true"></div></script>
<td><g:plusone size="tall"></g:plusone></td>
</td>
</tr></table>
<br>
<center>
<script type="text/javascript"><!--
google_ad_client = "pub-5181998329895443";
//sendanonymousemail
google_ad_slot = "1960730875";
google_ad_width = 728;
google_ad_height = 90;
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</center>
<br>
<table width="760" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="50%" valign="top"><table width="100%" height="106" border="0" cellpadding="5" cellspacing="5">
<tr>
<td width="46%" height="100" valign="top"><strong>Send Anonymous
Email </strong><br>
<br>
Every day over 60,000 free anonymous emails are
sent from our servers, making us the world's largest
and most trusted anonymous email service.<br>
<br />
This service is perfect for the following <br>
<ul>
<LI>catch a cheating spouse husband or wife.
<LI>find out if your friend is are real friend
<LI>give warnings to people
<LI>inform the police about illegal activities
<LI>inform the tax office about tax cheaters
<LI>confess your love to somebody
<LI>play an email joke with your friends
<LI>when your own email service doesn't work
<LI>if your private email is banned by the recipient
<LI>report fraud to your boss or institution
<LI>and many more reasons... </LI>
</ul>
<p><strong><font color="#FF0000">Note:</font></strong> By
sending a fake email or prank email you may be committing
the offence of fraud even you did not intend to. You are
not allowed to use this service for any illegal activites
at any time. <br>
<br>
<strong>SendAnonymousMail is not liable for your emails
you send at any time. Try not to do anything stupid or you might end up needing a <a href="http://www.shouldigetadivorcequiz.com">divorce.</a></strong><br>
<br>
<strong>
Don't do anything illegal.</strong> <strong>If you send death threats, abuse, slander or anything illegal we WILL publish your IP address and block you from this site.</strong> <br>
<br>
Abusers can be reported <a href="mailto:[email protected]">here</a>.<br>
<br>
Please read our <A href="terms.php">terms of use</A>.<br>
<a href="http://www.hearingfrequencytest.com">Test your hearing online</a><br>
<A href="http://www.senditfree.net">Send it free</A><br>
Read our <A href="http://www.senditfree.net">Blog</A><br>
Mobile Phone: <A href="http://www.sendanonymoussms.com">Send Anonymous SMS</A> <br>
Mobile Phone: <A href="http://sendanonymoustext.com/">Send Anonymous Text</A> <br>
Pregnancy: <a href="http://www.earlypregnancytester.com/">Online Pregnancy Test</a><br>
</p>
<td width="54%" valign="top"><form action="send.php" method="post">
<table width="350" height="260" align="center" cellpadding=0 cellspacing=3 bgcolor="#EFEFEF">
<tr valign=top>
<td align=center nowrap><span class="middle"><strong>Send
Anonymous Email </strong><br>
<br>
<br>
Receiver's email:
<input name="email" type="text" maxlength="50" id="email" value="[email protected]" />
</span><br>
<br>
<span class="middle">Sender's email:
<input name="sender" type="text" id="sender" value="[email protected]" />
</span><br>
<br>
<span class="middle">Subject:
<input name="subject" type="text" id="subject" value="Subject" />
</span><br>
<br>
<textarea name="message" cols="40" rows="8">enter message...</textarea>
<br>
<br>
<img src="/images/security.png" /><br>
<br>
<input name="security_code" type="text" id="security_code" value="Security Code" />
<br>
<font size="-1"><br>
<font color="#666666">By pressing "SEND" you accept our terms and conditions<br>
and accept that your email contains no illegal, <br>
abusing, harrassing or likewise content.</font></font><br />
<br>
<input name=submit type=submit id="submit" onClick="MM_validateForm('email','','RisEmail');return document.MM_returnValue" value=" SEND! ">
<br>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- Responsive New -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-5181998329895443"
data-ad-slot="8481165261"
data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script></td>
</tr>
<tr>
<td align=center colspan=3></td>
</tr>
</table>
<div align="center"><br>
<br>
<br>
</div>
</form> </tr>
</table>
<br>
</td>
</tr>
</table>
<br>
<center>
<script type="text/javascript"><!--
google_ad_client = "pub-5181998329895443";
//sendanonymousemail
google_ad_slot = "1960730875";
google_ad_width = 728;
google_ad_height = 90;
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</center>
<br>
<center>
<strong><font color="#990000"></font></strong><br>
<font color="#999999" size="-2">Abuse of the SendAnonymousMail system can be reported to this <a href="mailto:[email protected]">email address</a>.<br>
This system is not for abuse. Abusers IPs can be released here.
</font>
</center>
<br>
<p align="center"><font size=-2>Send Anonymous Mail - © 2005 <SCRIPT TYPE="text/javascript" LANGUAGE="JavaScript">
<!--// obligatory comment... 8-}
var today = new Date();
var year = today.getYear();
year += (year < 1900) ? 1900 : 0
document.write(' - ' + year)
// -->
</SCRIPT></font> - <a name="fb_share" type="button_count" href="http://www.facebook.com/sharer.php">Share</a><script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script></td>
</tr>
</table>
<center>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-93365906-1', 'auto');
ga('send', 'pageview');
</script>
<style>
.center{text-align:center;}.underline{text-decoration:underline;}.red{color:red;}.grey{color:grey;}.green{color:green;}.orange{color:#DF7401;}.table{border:0;}.frameborder{frameborder:0;}h1{font-size:16px !important;}
</style>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="/css/print.css" type="text/css" media="print" />
<script src="https://cdn.ckeditor.com/4.11.3/standard/ckeditor.js" integrity="sha384-7gsl1qH7lJPHyD7iYMHUKSRjPLP6ZQW4GxERC0+cu/44VNzdYAn7Z7jJzKXAV79K" crossorigin="anonymous" type="2ca3ef58844e667e8ffc00b6-text/javascript"></script> <script src="https://www.google.com/recaptcha/api.js" type="2ca3ef58844e667e8ffc00b6-text/javascript"></script>
<script type="2ca3ef58844e667e8ffc00b6-text/javascript">
function onSubmit(token) {
document.getElementById("anonymous").submit();
}
</script>
<link rel="manifest" href="/manifest.json">
<script src="https://cdn.onesignal.com/sdks/OneSignalSDK.js" async type="2ca3ef58844e667e8ffc00b6-text/javascript"></script>
<script type="2ca3ef58844e667e8ffc00b6-text/javascript">
var OneSignal = window.OneSignal || [];
OneSignal.push(["init", {
appId: "dc60c75f-9d80-403f-9b77-bbc9d6d97314",
autoRegister: true,
notifyButton: {
enable: true,
position: 'bottom-left',
}
}]);
</script>
<script type="2ca3ef58844e667e8ffc00b6-text/javascript">
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1369643429794965');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=1369643429794965&ev=PageView&noscript=1"/></noscript>
</head>
<body style="background: #D8D8D8">
<div class="container">
<div class="center"><a href="https://anonymousemail.me/" target="_self"><img src="/img/anonymousemaillogo.png" height="90" width="360" alt="Send anonymous email with attachments | Anonymousemail.me" title="Send anonymous email with attachments | Anonymousemail.me"></a></div>
<noscript><div class="center orange"><strong>JavaScript is off.</strong> Please enable it to view and use correctly this website.</div></noscript>
<form action="send.php" method="POST" id="anonymous" name="anonymous" enctype="multipart/form-data" data-form="validate">
<input type="hidden" name="csrf" value="35c29c299e50881ce3057ec284ee5cf1b592a2c6" />
<table class="table">
<tr><td colspan="4">
<div class="center"><script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" type="2ca3ef58844e667e8ffc00b6-text/javascript"></script>
<ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-7286639420081773" data-ad-slot="1287844531"></ins>
<script type="2ca3ef58844e667e8ffc00b6-text/javascript">
(adsbygoogle = window.adsbygoogle || []).push({});
</script></div><span class="badge badge-danger">Flash Sale</span> <span class="red">For a limited time, for $59 instead of <s>$139.99</s> send unlimited anonymous emails with opening tracking in real time. <a href="premium.php" class="orange">Join Us!</a></span><br />
<span class="badge badge-secondary">Advertisement</span> <span class="grey">Protect your online activity from hackers, and eavesdropping using this <a href="https://anonymousemail.me/vpn">no-logs VPN</a>.</span></td></tr>
<tr>
<td style="width: 33%;"><input class="form-control" name="am-name" type="text" placeholder="Name: - For Premium" disabled /></td>
<td style="width: 33%;"><input class="form-control" name="am-from" type="email" placeholder="From: (Email) - For Premium" disabled /></td>
<td style="width: 33%;"><input class="form-control" name="12a86aa47e8fb4364fa4dc8ca4acf612" type="email" placeholder="To:" required /></td>
<td rowspan="8">
<div class="center"><script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" type="2ca3ef58844e667e8ffc00b6-text/javascript"></script>
<ins class="adsbygoogle" style="display:inline-block;width:300px;height:600px" data-ad-client="ca-pub-7286639420081773" data-ad-slot="8305431338"></ins>
<script type="2ca3ef58844e667e8ffc00b6-text/javascript">
(adsbygoogle = window.adsbygoogle || []).push({});
</script></div></td>
</tr>
<tr><td colspan="3"><input class="form-control" name="am-reply" type="email" placeholder="Reply-to:" /></td></tr>
<tr><td colspan="3"><img src="/img/new.gif" height="11" width="26" style="vertical-align: top;" alt="new"> Email Tracking<small><span class="grey"> -- Know when your email is opened in real-time. <a href="premium.php" class="orange">Unlock</a></span></small><br />
<input class="form-control" name="am-track" type="email" placeholder="Email: To receive notifications, a Gmail address is recommended." disabled /></td></tr>
<tr><td colspan="3"><input class="form-control" name="am-subject" type="text" placeholder="Subject:" /></td></tr>
<tr><td colspan="3"><textarea class="form-control" rows="4" name="am-message" placeholder="Your message here, you can use HTML." required></textarea>
<script type="2ca3ef58844e667e8ffc00b6-text/javascript">
CKEDITOR.replace('am-message',{enterMode : CKEDITOR.ENTER_BR});
</script>
</td></tr>
<tr><td colspan="3">Attachments <span class="grey"><small>-- Max: 3 files - Size limit per file: 2MB. </small></span>
</td></tr>
<tr><td colspan="3">
<div class="center"><script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" type="2ca3ef58844e667e8ffc00b6-text/javascript"></script>
<ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-7286639420081773" data-ad-slot="3081326137"></ins>
<script type="2ca3ef58844e667e8ffc00b6-text/javascript">
(adsbygoogle = window.adsbygoogle || []).push({});
</script></div></td></tr>
<tr><td colspan="3"><button type="submit" class="btn btn-lg btn-danger btn-block g-recaptcha" data-sitekey="6LfyKBwUAAAAAH1XSlayDTv17PohFN-uSkypnoTP" data-callback="onSubmit">Send <strong>email</strong></button>
<small><span class="grey">The free version includes a <strong>signature</strong> in all outgoing emails.</span> <a class="orange" href="premium.php">Unlock</a></small></td></tr>
<tr><td style="display:none;">Leave this field #1 <u>empty</u> : <input type="text" name="1874950554" /></td></tr>
</table>
</form>
<div class="center">
<p>
<h1><strong>Anonymous Email</strong></h1>
<span style="font-size:14px">
<a href="https://anonymousemail.me/" class="red">Home</a> -
<a href="advanced.php" class="red">Advanced</a> -
<a href="premium.php" class="red">Premium</a> -
<a href="tos.php" class="red">Terms</a> -
<a href="/cdn-cgi/l/email-protection#92f3fcfdfcebfffde7e1f7fff3fbfebcfff7d2e2e0fde6fdfcfff3fbfebcf1fdffade1e7f0f8f7f1e6afd1fdfce6f3f1e6" class="red">Contact</a>
</span>
</p>
<p><small>Send anonymous email with attachment for free, you can send unlimited email securely with <strong>anonymousemail.me</strong> and no registration required.</small></p>
<p><a href="https://www.eff.org/join"><img src="/img/eff-banner.png" alt="Join EFF!" border="0"></a></p>
</div>
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous" type="2ca3ef58844e667e8ffc00b6-text/javascript"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous" type="2ca3ef58844e667e8ffc00b6-text/javascript"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous" type="2ca3ef58844e667e8ffc00b6-text/javascript"></script>
<script type="2ca3ef58844e667e8ffc00b6-text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-20460655-12', 'auto');
ga('send', 'pageview');
</script>
<script src="https://ajax.cloudflare.com/cdn-cgi/scripts/a2bd7673/cloudflare-static/rocket-loader.min.js" data-cf-settings="2ca3ef58844e667e8ffc00b6-|49" defer=""></script></body>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-6019751384526832",
enable_page_level_ads: true
});
</script>
<link rel="stylesheet" href="js/css/font-awesome.min.css" type="text/css"/>
<script type="text/javascript" src="js/jquery/jquery-1.12.4.min.js" ></script>
<script type="text/javascript" src="js/moment.js"></script>
<script type="text/javascript" src="js/datetimepicker.js"></script>
<script type="text/javascript" src="/js/generic/functions.js"></script>
<script type="text/javascript" src="/js/tinymce4.3/tinymce.min.js"></script>
<script type="text/javascript">
$(document).ready( function () {
$('#picker').dateTimePicker();
var offset = $('#offset');
offset.val(moment(new Date()).utcOffset());
});
//<![CDATA[
function SetVerticalFocus(id) {
window.location = window.location.href + "#focus_input";
id.focus();
}
tinymce.init({
selector: "textarea",
height: 450,
width: 780,
inline_styles : true,
plugins: [
"advlist autolink autosave link image lists charmap print preview hr anchor pagebreak",
"searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking",
"table contextmenu directionality emoticons template textcolor paste fullpage textcolor colorpicker textpattern"
],
toolbar1: "newdocument fullpage | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | styleselect formatselect fontselect fontsizeselect",
toolbar2: "cut copy paste | searchreplace | bullist numlist | outdent indent blockquote | undo redo | link unlink anchor image media code | insertdatetime preview | forecolor backcolor",
toolbar3: "table | hr removeformat | subscript superscript | charmap emoticons | print fullscreen | ltr rtl | visualchars visualblocks nonbreaking template pagebreak restoredraft",
menubar: true,
toolbar_items_size: 'small',
style_formats: [{
title: 'Bold text',
inline: 'b'
}, {
title: 'Red text',
inline: 'span',
styles: {
color: '#ff0000'
}
}, {
title: 'Red header',
block: 'h1',
styles: {
color: '#ff0000'
}
}, {
title: 'Example 1',
inline: 'span',
classes: 'example1'
}, {
title: 'Example 2',
inline: 'span',
classes: 'example2'
}, {
title: 'Table styles'
}, {
title: 'Table row 1',
selector: 'tr',
classes: 'tablerow1'
}],
templates: [{
title: 'Test template 1',
content: 'Test 1'
}, {
title: 'Test template 2',
content: 'Test 2'
}],
init_instance_callback: function () {
window.setTimeout(function() {
$("#div").show();
}, 1000);
}
});
//]]>
</script>
<link rel='stylesheet' type='text/css' media='all' href='/stylesheet/CSS_G__n__rique.css' />
<link rel='stylesheet' type='text/css' media='handheld' href='/stylesheet/Handheld.css' />
<link rel='stylesheet' type='text/css' media='all' href='/stylesheet/Site.css' />
<!--[if IE]>
<style type="text/css">
#content #page form div.submit div.free input, #content #page form div.submit div.pay input {
text-indent: 0;
color: expression(this.value = '');
}
</style>
<![endif]-->
<link rel="start" title="Send Receive anonymous email, Free anonymous email, Send anonymous email with attachment, anonymous email accounts, private label email,send anonymous emails,sending" href="https://www.5ymail.com/" />
<link rel="next" title="Expert in anonymous email" href="https://www.5ymail.com/en_US/menu.html" />
<!--Start of Zendesk Chat Script-->
<script type="text/javascript">
window.$zopim||(function(d,s){var z=$zopim=function(c){z._.push(c)},$=z.s=
d.createElement(s),e=d.getElementsByTagName(s)[0];z.set=function(o){z.set.
_.push(o)};z._=[];z.set._=[];$.async=!0;$.setAttribute("charset","utf-8");
$.src="https://v2.zopim.com/?5i8DgspCh1HjqvWfYrLPFO42rusBlVdu";z.t=+new Date;$.
type="text/javascript";e.parentNode.insertBefore($,e)})(document,"script");
</script>
<!--End of Zendesk Chat Script-->
</head>
<body onload="load();">
<div id="wrapper">
<hr class="accessibility" />
<div id="header">
<div id="logo">
<a href="https://www.5ymail.com/" title="Send Receive anonymous email, Free anonymous email, Send anonymous email with attachment, anonymous email accounts, private label email,send anonymous emails,sending"><img src="uploads/images/logo.png" alt="Send Receive Manage Anonymous Email, Free Anonymous email, Send anonymous email with attachment, Anonymous emails with attached files, Anonymous chat, Compose anonymous email, Anonymous email solutions, Send an anonymous email, How to send an anonymous email, Anonymous mailing solutions, Anonymous attached file, Anonymous message, Secret and hidden email, anonymous email, I like sending anonymous emails, Anonymous mail with attached files, anonymous mail, Anonymous message, Anonymous mail with attached files, anonymous e mail,anonymous email accounts,private label email,send anonymous emails,sending anonymous email,anonymous mail,send anonymous email,anonymous email address,anonymous emails" /> </a>
</div>
<div class="info">
Send Receive Anonymous Email, Send Receive Anonymous Mail, Anonymous emails with attached files, Anonymous chat, Send an anonymous email, How to send an anonymous email, Anonymous mailing solutions,I like sending anonymous emails,anonymous mail with attached files, anonymous mail
</div>
<div id="login">
<a href="https://www.5ymail.com/en_US/anonymous-email-member/login-anonymous-email.html" title="Login to Anonymous Email"><img src="uploads/images/en/anonymous-email-login.png" alt="Anonymous Email Login" /> </a>
</div>
<div id="icones"><div class="lang">
<a href="http://email-anonyme.5ymail.com"><img src="/uploads/images/css/generic/lang/fr_FR.png" border="0"/></a>
<a href="/"><img src="/uploads/images/css/generic/lang/en_US.png" border="0"/></a>
<a href="http://email-anonimo.5ymail.com"><img src="/uploads/images/css/generic/lang/es_ES.png" border="0"/></a>
<a href="http://email-anonime.5ymail.com"><img src="/uploads/images/css/generic/lang/it_IT.png" border="0"/></a>
<a href="http://anonyme-email.5ymail.com"><img src="/uploads/images/css/generic/lang/de_DE.png" border="0"/></a>
<a href="http://anonym-mail.5ymail.com"><img src="/uploads/images/css/generic/lang/ru_RU.png" border="0"/></a>
<a href="http://cn.5ymail.com"><img border="0" src="/uploads/images/css/generic/lang/zh_CN.png"></a>
<a href="http://nacdanh.5ymail.com/"><img border="0" src="uploads/images/css/generic/lang/vn.png" title="Ti?ng Vi?t" /></a>
</div></div>
<hr class="accessibility" />
</div>
<div id="site">
<div id="left">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- LinkAds160TopLeftMenu -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-6019751384526832"
data-ad-slot="8045802991"
data-ad-format="link"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<br/>
<a name="a_menu"></a>
<h2 class="accessibility">Menu</h2>
<ul class="liens">
<li>
<a href="https://www.5ymail.com/en_US/anonymous-users/users_modif.html" title="Change setting"><dfn>4.1: </dfn>Notification parameters </a>
</li>
<li>
<a href="https://www.5ymail.com/en_US/anonymous-users/modify-my-account.html" title="Change account setting"><dfn>4.2: </dfn>Modify my account </a>
</li>
<li>
<a href="https://www.5ymail.com/en_US/anonymous-users/anonymous-email-sent-messages.html" title="Anonymous Email Sent"><dfn>4.3: </dfn>Sent messages/emails</a>
</li>
<li>
<a href="https://www.5ymail.com/en_US/anonymous-users/anonymous-email-received-messages.html" title="Anonymous Email Received"><dfn>4.4: </dfn>Received messages/emails</a>
</li>
<li>
<a href="https://www.5ymail.com/en_US/anonymous-users/my-credits.html" title="My credit"><dfn>4.5: </dfn>My credits </a>
</li>
<li>
<a href="/"><dfn>4.7: </dfn>Send an anonymous email</a>
</li>
<li class="end">
<a href="https://www.5ymail.com/en_US/anonymous-users/5ymail-com-video-guideline.html" title="Video Guideline - 5ymail.com"><dfn>4.9: </dfn>Video Guideline</a>
</li>
</ul>
<div class="pub">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- Left -->
<ins class="adsbygoogle"
style="display:inline-block;width:160px;height:600px"
data-ad-client="ca-pub-6019751384526832"
data-ad-slot="8299949790"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<br />
<br />
<div class="pub">
<center><a href="en_US/anonymous-users/5ymail-com-video-guideline.html" title="Send anonymous email video" target="_blank"><img alt="send anonymous email, anonymous email, anonymous email for free, free anonymous email, anonymous email with attachment" border="0" src="uploads/images/5ymail-help-video.gif" /></a></center>
</div>
<br />
<div class="pub">
<center>
<a href="skype:chalovina?chat" title="Online Support via Skype"><img alt="anonymous email, send anonymous email, send anonymous email for free, free anonymous email" src="uploads/images/5ymail-live-support.gif" width="160" /></a></center>
</div>
<hr class="accessibility" />
</div>
<div id="content">
<ul class="liensinline">
<li>
<a href="https://www.5ymail.com/en_US/menu/how-does-it-work.html" title="How can I send an anonymous email?"><dfn>2.1: </dfn>How it works ?</a>
</li>
<li>
<a href="https://www.5ymail.com/en_US/menu/Free-or-paid-Anonymous-mails.html" title="Free anonymous email or paid membership?"><dfn>2.2: </dfn>Is Anonymous Email Free or Payment?</a>
</li>
<li>
<a href="https://www.5ymail.com/en_US/menu/payment-information.html" title="5yMail Payment Information"><dfn>2.3: </dfn>Payment Information</a>
</li>
<li>
<a href="https://www.5ymail.com/en_US/menu/protect-email-list.html" title="Protect Email List"><dfn>2.5: </dfn>Protected Email List</a>
</li>
<li>
<a href="https://www.5ymail.com/en_US/menu/http-api-5ymail.html" title="HTTP API"><dfn>2.6: </dfn>HTTP API</a>
</li>
<li>
<a href="https://www.5ymail.com/en_US/menu/service-api-5ymail-com.html" title="API Services"><dfn>2.7: </dfn>API Services </a>
</li>
<li>
<a href="https://www.5ymail.com/en_US/menu/sell-solution-5ymail.html" title="Sell 5YMail solutions"><dfn>2.8: </dfn>Sell our solutions</a>
</li>
<li>
<a href="https://www.5ymail.com/en_US/menu/sitemap.html" title="Site Map of anonymail email"><dfn>2.9: </dfn>Sitemap</a>
</li>
<li class="end">
<a href="https://www.5ymail.com/en_US/menu/contact.html" title="Contact us for anonymous email"><dfn>2.10: </dfn>Contact</a>
</li>
</ul>
<a name="a_content"></a>
<div style="float: left; margin-top: -10px; width: 100%;">
<marquee>
Trusted by 80,000 active users a day, the No.#1 world leader in anonymous email exchange, top payment security applied and most popular domain in anonymous email exchange.
</marquee>
</div>
<br/>
<div style="text-align:center">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- AdsUnitMidTop -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-6019751384526832"
data-ad-slot="9243334597"
data-ad-format="link"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div id="toppage">
<div id="page"><h1 style="font-size: 10px; text-align: right; margin-top: -3px; margin-bottom: -23px">Send, Receive, Manage Anonymous Email, Send Receive Free Anonymous Email with attachment</h1>
<div>
<a name="focus_input"></a>
<div><form id="m4moduleform_1" method="post" action="index.php#focus_input" onsubmit="wait();" enctype="multipart/form-data"><div class="hidden"><input type="hidden" name="mact" value="SBEngine,m4,send,0" /><input type="hidden" name="hl" value="en_US" /><input type="hidden" name="m4returnid" value="15" /></div>
<div class="slider-wrap">
<ul id="onglets">
<li><a><span>Send and Receive anonymous email</span></a></li>
</ul>
<div><fieldset>
<div class="inputFieldDiv1">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- 336 Home-Reponsive -->
<ins class="adsbygoogle responsiveAds"
style="display:inline-block"
data-ad-client="ca-pub-6019751384526832"
data-ad-slot="4823688990"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div class="inputFieldDiv2">
<div style="height: 50px;">
<label>Recipient Email(s) :<span class="required"> *</span></label>
<input type="text" name="m4send_input_emaildest" id="m4send_input_emaildest" value="" size="15" maxlength="255" tabindex=1 />
<img src="uploads/images/question_mark.png" onmouseover="Show('dmail');" onmouseout="Show('dmail');" />
<div id="dmail"><!-- popup -->
<p>Type the recipient email or received email address of the person you want to send anonymous email. It's up to 5 emails with semicolon(;) separation for active account.</p>
</div>
</div>
<div style="height: 50px;">
<label>CC Email :</label>
<input type="text" name="m4send_input_cc" id="m4send_input_cc" value="" size="15" maxlength="255" tabindex=2 disabled />
<img src="uploads/images/question_mark.png" onmouseover="Show('dmailcc');" onmouseout="Show('dmailcc');" />
<div id="dmailcc"><!-- popup -->
<p>Email address will be sent to as CC email address. The CC email address will be available to the recipients. Only one email address is accepted here.<br/>
<strong>This feature is only for active account</strong>
</p>
</div>
</div>
<div style="height: 50px;">
<label>BCC Email :</label>
<input type="text" name="m4send_input_bcc" id="m4send_input_bcc" value="" size="15" maxlength="255" tabindex=2 disabled />
<img src="uploads/images/question_mark.png" onmouseover="Show('dmailbcc');" onmouseout="Show('dmailbcc');" />
<div id="dmailbcc"><!-- popup -->
<p>The copy of email will be sent to this email address as BCC. The BCC email address will be hidden to the recipients. Only one email address is accepted here.<br/>
<strong>This feature is only for active account</strong>
</p>
</div>
</div>
<div style="height: 50px;">
<label>Subject :<span class="required"> *</span></label>
<input type="text" name="m4send_input_lesujet" id="m4send_input_lesujet" value="" size="20" maxlength="255" tabindex=3 />
<img src="uploads/images/question_mark.png" onmouseover="Show('obj');" onmouseout="Show('obj');" />
<div id="obj">
<p>Type the subject of the anonymous email.</p>
</div>
</div>
<div style="height: 50px;">
<label> From Name:<span class="required"> *</span></label>
<input type="text" name="m4send_input_nomexp" id="m4send_input_nomexp" value="" size="80" maxlength="80" tabindex=4 />
<img src="uploads/images/question_mark.png" onmouseover="Show('nname');" onmouseout="Show('nname');" />
<div id="nname">
<p>Type your fake name, this fake name will be appeared as From Name.</p>
</div>
</div>
<div style="height: 50px;">
<label>From Email :</label>
<input type="text" name="m4send_input_emailexp" id="m4send_input_emailexp" value="[email protected]" size="100" maxlength="100" tabindex=5 disabled />
<img src="uploads/images/question_mark.png" onmouseover="Show('EmailFrom');" onmouseout="Show('EmailFrom');" />
<div id="EmailFrom">
<p>Type the fake email address, your anonymous email will be appeared to From Email. Ex: [email protected]...<br/>
<strong>This function is only for active account</strong><br/>
<b>ATTENTION :</b> the quality of this email address is very important. It must belong to an existing domain (the part at the right of the @) and must be as down-to-earth as possible to avoid being treated as spam.</p>
</div>
</div>
<div style="height: 50px;">
<label>ReplyTo Email :</label>
<input type="text" name="m4send_input_reply_email" id="m4send_input_reply_email" value="" size="15" maxlength="255" tabindex=6 disabled />
<img src="uploads/images/question_mark.png" onmouseover="Show('EmailReplyEmail');" onmouseout="Show('EmailReplyEmail');" />
<div id="EmailReplyEmail">
<p>Recipient will reply to this email address, you can input whatever you want to this field. <br/>
<strong>Warning:</strong> In order to receive the reply email from recipient, this email MUST be real email, which you are able to login and view the emails. <br/>
IF YOU DON'T ENTER INTO THIS FIELD, THE REPLY EMAIL WILL GO TO YOUR <a href="en_US/anonymous-users/anonymous-email-received-messages.html" target="_blank"><strong>5YMAIL'S INBOX</strong></a> (BY DEFAULT)<br/>
This feature is only available for active account!</p>
</div>
</div>
<div style="height: 50px;">
<label>ReplyTo Name :</label>
<input type="text" name="m4send_input_reply_name" id="m4send_input_reply_name" value="" size="15" maxlength="255" tabindex=7 disabled />
<img src="uploads/images/question_mark.png" onmouseover="Show('EmailReplyName');" onmouseout="Show('EmailReplyName');" />
<div id="EmailReplyName">
<p>This is the Name of reply to email. When you input ReplyTo email, you should input ReplyTo Name. The recipient will be see something like Mr.Han <[email protected]>. This feature is only available for active account!</p>
</div>
</div>
<div style="height: 50px;">
<label>Your Real Email :</label>
<input type="text" name="m4send_input_vraiemailexp" id="m4send_input_vraiemailexp" value="" size="20" maxlength="100" tabindex=8 />
<img src="uploads/images/question_mark.png" onmouseover="Show('realmail');" onmouseout="Show('realmail');" />
<div id="realmail">
<p>By entering my real email address, You will still be 100% anonymous, but we will send you username and password to your real email so that you can manage your anonymous email. In addtion, your real email is also used to send notifications or copy emails when you got reply emails...!</p>
</div>
</div>
<center><button type="button" value="1" onclick = "ShowAdvancedSetting(this, 'm4', 'advanceSetting')" style="font-size:16px;padding:5px;">Advanced Settings</button>
</center>
</div>