Google Email Uploader uploads emails from desktop to Google Apps

Google Email Uploader is application from Google that allow user to upload emails from desktop email application to Gmail  in Google Apps ONLY. Normal Gmail is not supported. So far it works only Microsoft Outlook, Outlook Express and Thunderbird.

If you use Google Apps, you can take the advantage of this application to keep the copy of your emails on the cloud, with only few steps below.

1. Download and install Google Email Uploader from this link.

2. Login to your Google Apps account. Yes Google Apps account, not your Google account.
uploader1

3. It will read which email mailboxes and folders are available on your desktop. Just choose from which mailboxes you want to upload.

uploader2

4. Usually, user who use desktop email application such as Outlook keep or arrange their email on folder. The concept of ‘Label’ (Gmail feature) is equivalent to folder. Google Email Uploader is suggeting to create Labels based on the folder name, so you’ll have similar email structure and find it easier to find back any email in Google Apps.

uploader3

5. The process of uploading emails will take time, depend on the number of emails you have. Once completed, you should be displayed message like this. Keep in mind that, email will not immediately available on your Google Apps Gmail account.

uploader4

Final word. After installation, it is highly recommended that you read the FAQ page. You can find more information such as hot to distinguish the exported email and the exisiting email on your mailboxes and etc.

Xobni 1.7 leaving beta label with greater perfomance

xobni Xobni 1.7 leaving beta label with greater perfomanceXobni team has releasead Xobni 1.7, a new version of  Xobni, a popular Microsoft Outlook plugin last week. At the same time, the beta label is coming off, to mark another milestone of Xobni.

That was a great news to Xobni user, as this signaled that Xobni has achieved more stability, in term of performance and functionality as well as free from minor bug.

I’ve been Xobni user since 2008, but has stopped using it due to buggy performance. Xobni is great plugin for Outlook, if it is not because of that performance issue, which happen when you have huge mailboz size. Personally, I admire its powerful search feature, which default search in Outlook, is lacking with.

The new version highlight the performance enhancement it has made to Xobni.

  • Outlook now starts 31% faster*
    • Additionally, you now have the choice to make Xobni start immediately with Outlook, or start only when you want to use Xobni
  • Xobni Profiles now load 42% faster*
    • We’ve cached profile data, so Xobni stays out of the way of Outlook when it is doing its thing
  • More performance controls
    • Users can control how often and how much data Xobni indexes
    • Users can control when Xobni is running

* Users with large inboxes will experience more dramatic improvements. We made these improvements for you!

I’m tempted to use it back, and I wish these claims are true. Download Xobni here.

Gmail allow undo send email, only for 5 seconds

In Microsoft Outlook, there is recall feature to recall emails that you sent unintentionally, or contain mistake that you only notice afterward.

Undo Send, the new Gmail lab feature, trying to handle this incident, on slightly different way. Every time you send an email, an ‘Undo’ link will appear on top of the sent email, for 5 seconds before it is disappear. It is said 5 minutes is enough to notice and catch that email, although I feel this is only suite for short emails.

Clicking the ‘Undo’ link will bring that email back to the compose email screen where you can edit back that email.  Remember, it can’t pull back email that already sent.

The next Gmail lab feature that I wish to have is,  ’recall’ feature, just like what Outlook can do, or even better.

gmail undo Gmail allow undo send email, only for 5 seconds

Facebook, LinkedIn, Yahoo Mail goes Xobni

I have Xobni hands-on last year that pretty amazing .  For those that need introduction, Xobni is Outlook plugin that make your Outlooks works betters and filling up what Outlook’s lacking of such as providing faster search, depth contact information, emails stat and etc.

The latest release 1.6.3 bring more features to Xobni, particularly the integration with Facebook, Linked In, Yahoo Mail and Skype.

Facebook and Linked integrationxobni facebook Facebook, LinkedIn, Yahoo Mail goes Xobni

The integration of Facebook and Linked make socialize with your contact easier. Clicking on any email, will automatically checking if the email address is available in Facebook.

If it does, the brief info of the Facebook’s account belong to that email address, will be shown at the right sidebar. And if it is one of your friend, it shows the photos as well.

If no account registered under that email address , it will suggest other people based on the first name and last name.

Search Yahoo Mail from outlookxobni yahoo Facebook, LinkedIn, Yahoo Mail goes Xobni

Although Yahoo Mail doesn’t support IMAP or POP setup for its free email account (except Yahoo Plus), Xobni made  it possible searching any Yahoo emails from Outlook (require indexing)

After all emails were indexed, utilize Xobni search function to search Yahoo emails from Outlook. The search result shown on the Xobni sidebar which Yahoo emails are marked with tiny Yahoo logo on it.

Clicking on the email, will shows further detail. Each emails have links to the full text version, which will be shown on web browser.

More info can be found here

how to prevent sending email from MS outlook without subject in place

A friend of mine forward me this useful tips for MS Outlook user. This works in MS Outlook 2003, but the steps may different on Outlook 2007

Steps: -

1. Open your Microsoft outlook
2. Press Alt+F11. This opens the Visual Basic editor and then Press Ctrl+R which in turn opens Project-Project 1 (left side).
3. On the Left Pane, one can see “Microsoft Outlook Objects” or “Project1″, expand this. Now one can see the “ThisOutLookSession”.
4. Double click on “ThisOutLookSession”. It will open up a code pane.
5. Copy and Paste the following code in the right pane. (Code Pane)  and save it.

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim strSubject As String
strSubject = Item.Subject
If Len(Trim(strSubject)) = 0 Then
Prompt$ = “Subject is Empty. Are you sure you want to send the Mail?”
If MsgBox(Prompt$, vbYesNo + vbQuestion + vbMsgBoxSetForeground, “Check for Subject”) = vbNo Then
Cancel = True
End If
End If
End Sub

Keep in mind, to be able to run this script(message box) everyday, please enable your outlook macros.

To do so, go to Tools > Macro > Security.
Set the Security Level to medium.