<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Mamado Inside &#187; outlook</title>
	<atom:link href="http://mamado.wordpress.com/category/outlook/feed/" rel="self" type="application/rss+xml" />
	<link>http://mamado.wordpress.com</link>
	<description>My thoughts and other stuff</description>
	<lastBuildDate>Tue, 27 Mar 2007 14:26:32 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='mamado.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/3b1ab6ed9e21a31b8e47c147082b601a?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Mamado Inside &#187; outlook</title>
		<link>http://mamado.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mamado.wordpress.com/osd.xml" title="Mamado Inside" />
		<item>
		<title>Outlook2003 : warning for emails without subject</title>
		<link>http://mamado.wordpress.com/2007/03/15/outlook2003-warning-for-emails-without-subject/</link>
		<comments>http://mamado.wordpress.com/2007/03/15/outlook2003-warning-for-emails-without-subject/#comments</comments>
		<pubDate>Thu, 15 Mar 2007 09:33:43 +0000</pubDate>
		<dc:creator>mhussein</dc:creator>
				<category><![CDATA[outlook]]></category>
		<category><![CDATA[productivity]]></category>

		<guid isPermaLink="false">http://mamado.wordpress.com/2007/03/15/outlook2003-warning-for-emails-without-subject/</guid>
		<description><![CDATA[How many times have you sent an email without a subject? yes You! A quick search in my emails tells me that I have been guilty of doing this 6 times this year alone  
If you are like me (and you use Outlook like me) you will definitely benefit from my friend&#8217;s latest post.
He [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mamado.wordpress.com&blog=24948&post=7&subd=mamado&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>How many times have you sent an email without a subject? yes You! A quick search in my emails tells me that I have been guilty of doing this <strong>6</strong> times this year alone <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>If you are like me (and you use Outlook like me) you will definitely benefit from my <a href="http://blog.simpleio.net">friend</a>&#8217;s latest <a href="http://blog.simpleio.net/2007/03/14/warning-for-mails-without-subject/">post</a>.</p>
<p>He has been plagued by the same problem for ages <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  but unlike me he decided to do something about, he did his research and found that Outlook MVP Sue Mosher had already <a href="http://searchexchange.techtarget.com/tip/0,289483,sid43_gci1208873,00.html">wrote</a> code to fix this issue.</p>
<p>The solution is a simple macro that you put in Outlook to warn you and stop the sending process if there is no subject.</p>
<p>I tried it and it worked perfectly, I had a problem when I copied the code from <a href="http://blog.simpleio.net">Abdelhalim</a>&#8217;s post because of the double quotes, so I recopied the code here and fixed this issue, if you get errors when you paste this code in VB, delete all double quotes and rewrite them.</p>
<blockquote><p>Private Sub Application_ItemSend _<br />
(ByVal Item As Object, Cancel As Boolean)<br />
Dim strMessage As String<br />
Dim lngRes As Long<br />
If Item.Subject = &#8220;&#8221; Then<br />
Cancel = True<br />
strMessage = &#8220;Please fill in the subject before sending.&#8221;<br />
MsgBox strMessage, _<br />
vbExclamation + vbSystemModal, “Missing Subject&#8221;<br />
Item.Display<br />
End If<br />
End Sub</p></blockquote>
<p>Check the complete instructions and warning on the original post.</p>
<p>[<a href="http://searchexchange.techtarget.com/tip/0,289483,sid43_gci1208873,00.html">link</a>] [<a href="http://blog.simpleio.net/2007/03/14/warning-for-mails-without-subject/">via</a>]<br />
<a href="http://del.icio.us/post?url=http://mamado.wordpress.com/2007/03/15/outlook2003-warning-for-emails-without-subject/;title=Outlook2003%20:%20warning%20for%20emails%20without%20subject"><img src="http://sunburntkamel.files.wordpress.com/2006/11/delicious.gif" alt="add to del.icio.us" /></a><a href="http://digg.com/submit?phase=2&amp;url=http://mamado.wordpress.com/2007/03/15/outlook2003-warning-for-emails-without-subject/"><img src="http://sunburntkamel.files.wordpress.com/2006/11/digg.gif" alt="Digg it" /></a><a href="http://reddit.com/submit?url=http://mamado.wordpress.com/2007/03/15/outlook2003-warning-for-emails-without-subject/;title=Outlook2003%20:%20warning%20for%20emails%20without%20subject"><img src="http://sunburntkamel.files.wordpress.com/2006/11/reddit.gif" /></a><a href="http://www.stumbleupon.com/submit?url=http://mamado.wordpress.com/2007/03/15/outlook2003-warning-for-emails-without-subject/&amp;title=Outlook2003%20:%20warning%20for%20emails%20without%20subject"><img src="http://sunburntkamel.files.wordpress.com/2006/11/stumbleit.gif" alt="Stumble It!" /></a><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=http://mamado.wordpress.com/2007/03/15/outlook2003-warning-for-emails-without-subject/;Title=Outlook2003%20:%20warning%20for%20emails%20without%20subject"><img src="http://sunburntkamel.files.wordpress.com/2006/11/blinklist.gif" alt="Add to Blinkslist" /></a><a href="http://www.furl.net/storeIt.jsp?u=http://mamado.wordpress.com/2007/03/15/outlook2003-warning-for-emails-without-subject/;t=Outlook2003%20:%20warning%20for%20emails%20without%20subject"><img src="http://sunburntkamel.files.wordpress.com/2006/11/furl.gif" alt="add to furl" /></a><a href="http://ma.gnolia.com/bookmarklet/add?url=http://mamado.wordpress.com/2007/03/15/outlook2003-warning-for-emails-without-subject/;title=Outlook2003%20:%20warning%20for%20emails%20without%20subject"><img src="http://sunburntkamel.files.wordpress.com/2006/11/magnolia.gif" alt="add to ma.gnolia" /></a><a href="http://www.simpy.com/simpy/LinkAdd.do?url=http://mamado.wordpress.com/2007/03/15/outlook2003-warning-for-emails-without-subject/;title=Outlook2003%20:%20warning%20for%20emails%20without%20subject"><img src="http://sunburntkamel.files.wordpress.com/2006/11/simpy.png" alt="add to simpy" /></a><a href="http://www.newsvine.com/_tools/seed&amp;save?url=http://mamado.wordpress.com/2007/03/15/outlook2003-warning-for-emails-without-subject/;title=Outlook2003%20:%20warning%20for%20emails%20without%20subject"><img src="http://sunburntkamel.files.wordpress.com/2006/11/newsvine.gif" alt="seed the vine" /></a><a href="http://tailrank.com/share/?text=&amp;link_href=http://mamado.wordpress.com/2007/03/15/outlook2003-warning-for-emails-without-subject/&amp;title=Outlook2003%20:%20warning%20for%20emails%20without%20subject" title="TailRank"><img src="http://sunburntkamel.files.wordpress.com/2006/11/tailrank.gif" alt="TailRank" /></a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mamado.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mamado.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mamado.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mamado.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mamado.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mamado.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mamado.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mamado.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mamado.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mamado.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mamado.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mamado.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mamado.wordpress.com&blog=24948&post=7&subd=mamado&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mamado.wordpress.com/2007/03/15/outlook2003-warning-for-emails-without-subject/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c230bd4bac59f266c1c2f6ea4ca49b22?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mamado</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/delicious.gif" medium="image">
			<media:title type="html">add to del.icio.us</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/digg.gif" medium="image">
			<media:title type="html">Digg it</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/reddit.gif" medium="image" />

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/stumbleit.gif" medium="image">
			<media:title type="html">Stumble It!</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/blinklist.gif" medium="image">
			<media:title type="html">Add to Blinkslist</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/furl.gif" medium="image">
			<media:title type="html">add to furl</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/magnolia.gif" medium="image">
			<media:title type="html">add to ma.gnolia</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/simpy.png" medium="image">
			<media:title type="html">add to simpy</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/newsvine.gif" medium="image">
			<media:title type="html">seed the vine</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/tailrank.gif" medium="image">
			<media:title type="html">TailRank</media:title>
		</media:content>
	</item>
	</channel>
</rss>