<?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:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>a4apphack &#187; Email</title>
	<atom:link href="http://a4apphack.com/index.php/category/internet/email/feed" rel="self" type="application/rss+xml" />
	<link>http://a4apphack.com</link>
	<description>Get more out of the Apps!</description>
	<lastBuildDate>Tue, 31 Aug 2010 21:39:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<image>
<link>http://a4apphack.com</link>
<url>http://a4apphack.com/blog/wp-content/themes/primus/favicon.ico</url>
<title>a4apphack</title>
</image>
		<item>
		<title>Alert For Missing Subject And Attachment in Outlook</title>
		<link>http://a4apphack.com/programming/alert-missing-subject-and-attachment-outlook</link>
		<comments>http://a4apphack.com/programming/alert-missing-subject-and-attachment-outlook#comments</comments>
		<pubDate>Mon, 12 Jan 2009 06:22:40 +0000</pubDate>
		<dc:creator>rajivvishwa</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[lifesaver]]></category>
		<category><![CDATA[macro]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[outlook]]></category>

		<guid isPermaLink="false">http://a4apphack.com/blog/?p=357</guid>
		<description><![CDATA[Subject line in a mail is a key for identifying and digging the required mails from the mail archives. So we have to be careful not to miss it at any chance but unfortunately we do miss by accident. Another possible mistake we do is to miss the attachments mentioned in the mail. A script [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://a4apphack.com/blog/wp-content/plugins/simple-post-thumbnails/timthumb.php?src=/blog/wp-content/thumbnails/357.jpg&amp;w=150&amp;h=100&amp;zc=1&amp;ft=png' alt='post thumbnail' /></p>
<p>Subject line in a mail is a key for identifying and digging the required mails from the mail archives. So we have to be careful not to miss it at any chance but unfortunately we do miss by accident. Another possible mistake we do is to miss the attachments mentioned in the mail.</p>
<p><a title="Outlook Missing Subject Alert" href="http://img.a4apphack.com/outlookalert-screnshot.jpg" rel="shadowbox[post-357];player=img;"><img class="alignnone size-full wp-image-361" title="Outlook Subject Alert Screenshot" src="http://img.a4apphack.com/outlookalert-screnshot.jpg" alt="Outlook Subject Alert Screenshot" width="350" height="154" /></a></p>
<p><span id="more-357"></span></p>
<p>A script is added to our outlook client which automatically pops up the alert as shown below.</p>
<p>The following script can be embedded in Outlook so that we get an alert whenever we miss the subject or the attachments</p>
<h3>Code</h3>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #000080;">Private</span> <span style="color: #000080;">Sub</span> Application_ItemSend(<span style="color: #000080;">ByVal</span> Item <span style="color: #000080;">As</span> <span style="color: #000080;">Object</span>, cancel <span style="color: #000080;">As</span> <span style="color: #000080;">Boolean</span>)
&nbsp;
<span style="color: #000080;">Dim</span> strSubject <span style="color: #000080;">As</span> <span style="color: #000080;">String</span>
strSubject = Item.Subject
<span style="color: #000080;">If</span> Len(Trim(strSubject)) = 0 <span style="color: #000080;">Then</span>
    Prompt$ = <span style="color: #800000;">&quot;Subject is Empty. Are you sure you want to send the Mail?&quot;</span>
    <span style="color: #000080;">If</span> MsgBox(Prompt$, vbYesNo + vbQuestion + vbMsgBoxSetForeground, <span style="color: #800000;">&quot;Subject is Empty&quot;</span>) = vbNo <span style="color: #000080;">Then</span>
            cancel = <span style="color: #000080;">True</span>
    <span style="color: #000080;">End</span> <span style="color: #000080;">If</span>
<span style="color: #000080;">End</span> <span style="color: #000080;">If</span>
&nbsp;
<span style="color: #000080;">Dim</span> lngres <span style="color: #000080;">As</span> <span style="color: #000080;">Long</span>
<span style="color: #000080;">If</span> (InStr(1, UCase(Item.Body), <span style="color: #800000;">&quot;ATTACH&quot;</span>) &lt;&gt; 0 <span style="color: #000080;">Or</span> InStr(1, UCase(Item.Body), <span style="color: #800000;">&quot;PFA&quot;</span>) &lt;&gt; 0) <span style="color: #000080;">Then</span>
    <span style="color: #000080;">If</span> Item.Attachments.Count = 0 <span style="color: #000080;">Then</span>
        lngres = MsgBox(<span style="color: #800000;">&quot;Attachment reference detected, but no files attached. Send anyway?&quot;</span>, _
        vbYesNo + vbDefaultButton2 + vbQuestion, <span style="color: #800000;">&quot;No files Attached&quot;</span>)
&nbsp;
        <span style="color: #000080;">If</span> lngres = vbNo <span style="color: #000080;">Then</span> cancel = <span style="color: #000080;">True</span>
    <span style="color: #000080;">End</span> <span style="color: #000080;">If</span>
<span style="color: #000080;">End</span> <span style="color: #000080;">If</span>
&nbsp;
<span style="color: #000080;">End</span> <span style="color: #000080;">Sub</span></pre></div></div>

<h3>Installation</h3>
<ol>
<li>Open Outlook and Alt-F11 to open Visual Basic Editor</li>
<li>Copy this code to ThisOutlookSession</li>
</ol>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Alert+For+Missing+Subject+And+Attachment+in+Outlook+-+http://bit.ly/bFfsmN&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://a4apphack.com/programming/alert-missing-subject-and-attachment-outlook&amp;title=Alert+For+Missing+Subject+And+Attachment+in+Outlook" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://a4apphack.com/programming/alert-missing-subject-and-attachment-outlook&amp;title=Alert+For+Missing+Subject+And+Attachment+in+Outlook" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://a4apphack.com/programming/alert-missing-subject-and-attachment-outlook&amp;t=Alert+For+Missing+Subject+And+Attachment+in+Outlook" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://a4apphack.com/programming/alert-missing-subject-and-attachment-outlook&amp;title=Alert+For+Missing+Subject+And+Attachment+in+Outlook&amp;summary=Subject%20line%20in%20a%20mail%20is%20a%20key%20for%20identifying%20and%20digging%20the%20required%20mails%20from%20the%20mail%20archives.%20So%20we%20have%20to%20be%20careful%20not%20to%20miss%20it%20at%20any%20chance%20but%20unfortunately%20we%20do%20miss%20by%20accident.%20Another%20possible%20mistake%20we%20do%20is%20to%20miss%20the%20attachments%20mentioned%20in%20the%20mail.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AA%20script%20&amp;source=a4apphack" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Alert+For+Missing+Subject+And+Attachment+in+Outlook&amp;du=http://a4apphack.com/programming/alert-missing-subject-and-attachment-outlook&amp;cn=Subject%20line%20in%20a%20mail%20is%20a%20key%20for%20identifying%20and%20digging%20the%20required%20mails%20from%20the%20mail%20archives.%20So%20we%20have%20to%20be%20careful%20not%20to%20miss%20it%20at%20any%20chance%20but%20unfortunately%20we%20do%20miss%20by%20accident.%20Another%20possible%20mistake%20we%20do%20is%20to%20miss%20the%20attachments%20mentioned%20in%20the%20mail.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AA%20script%20" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://a4apphack.com/programming/alert-missing-subject-and-attachment-outlook&amp;title=Alert+For+Missing+Subject+And+Attachment+in+Outlook" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://a4apphack.com/programming/alert-missing-subject-and-attachment-outlook&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://a4apphack.com/programming/alert-missing-subject-and-attachment-outlook&amp;title=Alert+For+Missing+Subject+And+Attachment+in+Outlook" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://a4apphack.com/programming/alert-missing-subject-and-attachment-outlook" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<img src="http://a4apphack.com/blog/?ak_action=api_record_view&id=357&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://a4apphack.com/programming/alert-missing-subject-and-attachment-outlook/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WebToMail &#8211; Access Web Pages Via Wmail</title>
		<link>http://a4apphack.com/internet/webtomail-access-websites-via-email</link>
		<comments>http://a4apphack.com/internet/webtomail-access-websites-via-email#comments</comments>
		<pubDate>Sat, 03 Jan 2009 07:51:56 +0000</pubDate>
		<dc:creator>rajivvishwa</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">http://a4apphack.com/blog/?p=230</guid>
		<description><![CDATA[Get snapshots of the internet pages you cannot access to, by just sending an email. If you don&#8217;t have access to internet but can use your corporate email; these service serves its best. This might also be helpful for those who want to take a peek at the sites blocked by their network admins. Send [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://a4apphack.com/blog/wp-content/plugins/simple-post-thumbnails/timthumb.php?src=/blog/wp-content/thumbnails/230.png&amp;w=150&amp;h=100&amp;zc=1&amp;ft=png' alt='post thumbnail' /></p>
<p>Get snapshots of the internet pages you cannot access to, by just sending an email. If you don&#8217;t have access to internet but can use your corporate email; these service serves its best. This might also be helpful for those who want to take a peek at the sites blocked by their network admins.</p>
<p><span id="more-230"></span></p>
<p><a href="http://www.webinmail.com/webinmail/index.html" title="Rediff_webinmail"><img class="alignnone size-full wp-image-231" title="Rediff_webinmail" src="http://img.a4apphack.com/webtomail-webinmail.png" alt="Rediff_webinmail" width="161" height="30" /></a></p>
<p>Send the &#8216;URL&#8217; of the requested page in the subject and mail to &#8216;browse@webmail.com&#8217;. This service sends the requested webpage offline through email,not just that, it can even  send us the google search results page for the search queried for. It also sends you the results of the google image searches as well. Just change the subject of the mail from &#8216;url&#8217; to &#8216;google:query&#8217;, &#8216;googleimg:query&#8217; &amp; &#8216;rediff:query&#8217; and send it to &#8216;browse@webinmail.com&#8217;</p>
<p><a href="http://www.web2mail.com/" title="webtomail"><img class="alignnone size-full wp-image-232" title="webtomail" src="http://img.a4apphack.com/webtomail-webtomail.jpg" alt="webtomail" width="160" /></a></p>
<p>This is a simpler version of the previous mentioned service. Send a mail to  &#8216;www@web2mail.com&#8217; with subject as requested url.</p>
<h3>Cheat Sheet</h3>
<p>Subject- &lt;URL&gt;<br />
 To- www@web2mail.com</p>
<p>Subject- &lt;URL&gt;<br />
 To- browse@webinmail.com</p>
<p>Subject- google:query<br />
 To- browse@webinmail.com</p>
<p>Subject- googleimg:query<br />
 To- browse@webinmail.com</p>
<p>Subject- rediff:query<br />
 To- browse@webinmail.com</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=WebToMail+-+Access+Web+Pages+Via+Wmail+-+http://bit.ly/9Xr9p3&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://a4apphack.com/internet/webtomail-access-websites-via-email&amp;title=WebToMail+-+Access+Web+Pages+Via+Wmail" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://a4apphack.com/internet/webtomail-access-websites-via-email&amp;title=WebToMail+-+Access+Web+Pages+Via+Wmail" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://a4apphack.com/internet/webtomail-access-websites-via-email&amp;t=WebToMail+-+Access+Web+Pages+Via+Wmail" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://a4apphack.com/internet/webtomail-access-websites-via-email&amp;title=WebToMail+-+Access+Web+Pages+Via+Wmail&amp;summary=Get%20snapshots%20of%20the%20internet%20pages%20you%20cannot%20access%20to%2C%20by%20just%20sending%20an%20email.%20If%20you%20don%27t%20have%20access%20to%20internet%20but%20can%20use%20your%20corporate%20email%3B%20these%20service%20serves%20its%20best.%20This%20might%20also%20be%20helpful%20for%20those%20who%20want%20to%20take%20a%20peek%20at%20the%20sites%20blocked%20by%20their%20network%20admins.%0D%0A%0D%0A%0D%0A%0D%0A&amp;source=a4apphack" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=WebToMail+-+Access+Web+Pages+Via+Wmail&amp;du=http://a4apphack.com/internet/webtomail-access-websites-via-email&amp;cn=Get%20snapshots%20of%20the%20internet%20pages%20you%20cannot%20access%20to%2C%20by%20just%20sending%20an%20email.%20If%20you%20don%27t%20have%20access%20to%20internet%20but%20can%20use%20your%20corporate%20email%3B%20these%20service%20serves%20its%20best.%20This%20might%20also%20be%20helpful%20for%20those%20who%20want%20to%20take%20a%20peek%20at%20the%20sites%20blocked%20by%20their%20network%20admins.%0D%0A%0D%0A%0D%0A%0D%0A" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://a4apphack.com/internet/webtomail-access-websites-via-email&amp;title=WebToMail+-+Access+Web+Pages+Via+Wmail" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://a4apphack.com/internet/webtomail-access-websites-via-email&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://a4apphack.com/internet/webtomail-access-websites-via-email&amp;title=WebToMail+-+Access+Web+Pages+Via+Wmail" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://a4apphack.com/internet/webtomail-access-websites-via-email" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<img src="http://a4apphack.com/blog/?ak_action=api_record_view&id=230&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://a4apphack.com/internet/webtomail-access-websites-via-email/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (request URI is rejected)

Served from: a4apphack.com @ 2010-09-08 01:20:54 -->