以下方法国内首发,只和骄阳论坛上兄弟分享,请不要到处转载
作为一个IMer,邮箱是少不了的玩具。这里介绍一个大多数人不知道的一分钟拥有100+gmail邮箱的方法:
首先到http://mail.google.com申请一个邮箱,一分钟搞定。这样你就拥有了100+邮箱。
怎么说呢?看下面:
比如你申请的邮箱为netxboy@gmail.com,那么
netxboy+0@gmail.com
netxboy+1@gmail.com
netxboy+2@gmail.com
...
netxboy+100@gmail.com
...
这些都是你的邮箱了。不信?随便用个别的邮箱给netxboy+2@gmail.com发一封信,然后登陆netxboy@gmail.com去看是否能收到邮件。
附带小玩具一个- <html><head>
- <meta http-equiv="content-type" content="text/html; charset=gb2312">
- <title>Unlimited Gmails, program by spasm</title>
- <script type="text/javascript">
- function generate () {
- var e = document.getElementById('email').value.split(/\@/);
- var g = '';
- for(var i=0;i<parseInt(document.getElementById('howmany').value);i++) {
- g+=e[0]+"+"+i+"@"+e[1]+"\n";
- }
- document.getElementById('gmails').value = g;
- }
- </script>
- <style>
- * {padding:0px;margin:0px;}
- html, body { width:100%; height:100%;}
- </style>
- </head><body>
- <form onsubmit="generate();return false;" style="height: 100%; min-height: 100%;">
- <div style="width: 400px; height: 100%; float: left;">
- <input id="email" style="width: 400px;" value="your@gmail.com" type="text"><br>
- <textarea style="width: 400px; height: 100%; min-height: 100%;" id="gmails">Type your gmail address above and click create gmails! oh and you can set how many with that box that says 100</textarea>
- </div>
- <div style="background: rgb(221, 221, 221) none repeat scroll 0% 0%; width: 100px; height: 100%; float: left; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; text-align: center;">
- <input value="100" id="howmany" style="width: 90px;" type="text"><br>
- <input value="create gmails" type="submit">
- </div>
- </form>
- </body></html>
复制代码 保存为gmail.html
[ Last edited by netxboy on 2008-11-16 17:26 ] |