<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Dooba.net &#187; Productivity</title>
	<atom:link href="http://dooba.net/tag/productivity/feed/" rel="self" type="application/rss+xml" />
	<link>http://dooba.net</link>
	<description>Tech, Science, Insanity</description>
	<lastBuildDate>Tue, 27 Jul 2010 03:21:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Outlook txt alerts</title>
		<link>http://dooba.net/2009/06/11/outlook-txt-alerts/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=outlook-txt-alerts</link>
		<comments>http://dooba.net/2009/06/11/outlook-txt-alerts/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 20:24:01 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[VB]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Utilties]]></category>

		<guid isPermaLink="false">http://dooba.net/2009/06/outlook-txt-alerts/</guid>
		<description><![CDATA[Like many people I use Outlook at work for mail and calendaring. However Android doesn&#8217;t yet have a free solution for checking mail, and other non-smart phones may not either. I can use the webmail interface, but its not convenient to check that all the time. Also, I have a pager at work for times [...]]]></description>
			<content:encoded><![CDATA[<p style="clear: both">Like many people I use Outlook at work for mail and calendaring. However Android doesn&#8217;t yet have a free solution for checking mail, and other non-smart phones may not either. I can use the webmail interface, but its not convenient to check that all the time. Also, I have a pager at work for times and places that I can&#8217;t have my phone with me, it would be nice to get notifications and email alerts on my pager. Luckily Outlook has some nice macro features to solve this. I setup a macro to send a page with the From and Subject lines from the mail on receipt. This can also be extended to send a txt message to your phone with the same info, or hook the meeting reminders and forward those as well.</p>
<p style="clear: both">Simply go to Tools -> Macro -> Visual Basic Editor and click on &#8220;TheOutlookSession&#8221; in the project pane. Add this code:</p>
<p style="clear: both">
<pre name="code" class="vb">
Sub PageMe(MyMail as MailItem)
    Dim strID as String
    Dim olNS as Outlook.NameSpace
    Dim msg as Outlook.MailItem
    Dim rply as Outlook.MailItem

    strID = MyMail.EntryID
    Set olNS = Application.GetNamespace("MAPI")
    Set msg = olNS.GetItemFromID(strID)

    Set rply = Application.CreateItem(olMailItem)
    rply.Body = "New mail from: " + msg.SenderName + " Subj: " + msg.Subject
    rply.To = "youremail@here.com"
    rply.Send
    Set msg = Nothing
    Set rply = Nothing
    Set olNS = Nothing
End Sub
</pre>
<p style="clear: both">
<p>  <br class="final-break" style="clear: both" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dooba.net/2009/06/11/outlook-txt-alerts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
