Posts Tagged ‘Email’
Super Easy Email Validation AS2
I needed a quick and easy way to check for the basics of an email address. Does it contain “@” and “.” symbols. This is by no meals a foolproof method, so don’t use it for anything big, but if you want to just do a quick test then here you go: var email:String = "name@server.com"; if (email.indexOf("@")!=-1 && email.indexOf(".")!=-1) trace("false"); else trace ("true");
I hate desktop email clients
I used to use Mozilla Thunderbird to handle my pop emails accounts and then I started experiencing performance problems when doing almost anything. My email inbox contains a good few thousand items at any given time. I decided to change to Microsoft Outlook 2007 as I had used a previous version in the past and it seemed to lag a hell of a lot less. After installing it I had…
Outlook Tasks
I use Outlook for email and because of that I ended up using the Tasks feature which turns out to be pretty damn useful. It is called the To-Do Bar and if you don’t immediately see it you can open it by clicking on View->To-Do Bar. Select “Normal” and make sure the “Task List” is checked in that list. When a work email comes in that needs attending to, I…