Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

inbox

Styling Mail Chimp Form
Thursday, 03 November 2011 02:04
// trying to style mail chimp form


//














Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/5MjpxYUNEuM/13829

 
Gmail's Favicon Now Shows You How Many People You're Ignoring [Gmail]
Tuesday, 25 January 2011 16:57
If you have Chrome 6+ or Firefox 2+, you can enable this Gmail labs feature that changes the favicon into a favicon that also displays how many unread emails you have. Priority Inbox users will have the unread count taken from that folder, instead of your Inbox. If you're like me, and have 5726 Priority Inbox items and 71805 regular inbox items, you'll never see an icon different from that there one above. Might as well not bother. [Gmail Blogspot via Techcrunch] More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/biQhSKOtuo8/gmails-favicon-now-shows-you-how-many-people-youre-ignoring

 
Outlook - messages to archive
Tuesday, 04 January 2011 04:39
Deleted Items = mapi.GetDefaultFolder(3)
Outbox = mapi.GetDefaultFolder(4)
Sent Mail = mapi.GetDefaultFolder(5)
Inbox = mapi.GetDefaultFolder(6)
Calendar = mapi.GetDefaultFolder(9)
Contacts = mapi.GetDefaultFolder(10)
Journal = mapi.GetDefaultFolder(11)
Notes = mapi.GetDefaultFolder(12)
Tasks = mapi.GetDefaultFolder(13)
Drafts = mapi.GetDefaultFolder(16)
All Public Folders = mapi.GetDefaultFolder(18)
Conflicts = mapi.GetDefaultFolder(19)
SyncIssues = mapi.GetDefaultFolder(20)
Local Failures = mapi.GetDefaultFolder(21)
Server Failures = mapi.GetDefaultFolder(22)
Junk = mapi.GetDefaultFolder(23)


#move all 2010 messages from inbox to personal folders "Old Inbox 2010"

require 'win32ole'
outlook = WIN32OLE.new('Outlook.Application')
mapi = outlook.GetNameSpace('MAPI')
#inbox
inbox = mapi.GetDefaultFolder(6)

#personal folders
personal_folders = mapi.Folders.Item('Personal_folder')

#subfolder old inbox 2010 under personal folders
old_inbox = personal_folders.Folders.Item('Old Inbox 2011')

#all items that are older than 1.1.2011 move to archive
inbox.Items.Count.downto(1) do |i|
message = inbox.Items(i)
if message.CreationTime < "2011/01/01 00:00:00"
message.Move(old_inbox)
end
end

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/Vu6MwrgCqok/12803

 
Sign up for the Gizmodo Newsletter, Win an iPad [Gizmodo Daily]
Tuesday, 19 October 2010 12:50
We're giving away a 16GB Wi-Fi iPad to one lucky newsletter subscriber! Don't subscribe? Enter your email address below to get one great story a day in your inbox. Don't worry, we hate spam as much as you do. More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/xptuuWviXao/sign-up-for-the-gizmodo-newsletter-win-an-ipad

 


Taxonomy by Zaragoza Online