<?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>Wed, 11 Jan 2012 20:25:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</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>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="lightbox[357]"><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: #E56717; font-weight: bold;">Private</span> <span style="color: #E56717; font-weight: bold;">Sub</span> Application_ItemSend(<span style="color: #151B8D; font-weight: bold;">ByVal</span> Item <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Object</span>, cancel <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Boolean</span>)
&nbsp;
<span style="color: #151B8D; font-weight: bold;">Dim</span> strSubject <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">String</span>
strSubject = Item.Subject
<span style="color: #8D38C9; font-weight: bold;">If</span> Len(Trim(strSubject)) = 0 <span style="color: #8D38C9; font-weight: bold;">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: #8D38C9; font-weight: bold;">If</span> MsgBox(Prompt$, vbYesNo + vbQuestion + vbMsgBoxSetForeground, <span style="color: #800000;">&quot;Subject is Empty&quot;</span>) = vbNo <span style="color: #8D38C9; font-weight: bold;">Then</span>
            cancel = <span style="color: #00C2FF; font-weight: bold;">True</span>
    <span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #8D38C9; font-weight: bold;">If</span>
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #8D38C9; font-weight: bold;">If</span>
&nbsp;
<span style="color: #151B8D; font-weight: bold;">Dim</span> lngres <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>
<span style="color: #8D38C9; font-weight: bold;">If</span> (InStr(1, UCase(Item.Body), <span style="color: #800000;">&quot;ATTACH&quot;</span>) &lt;&gt; 0 <span style="color: #8D38C9; font-weight: bold;">Or</span> InStr(1, UCase(Item.Body), <span style="color: #800000;">&quot;PFA&quot;</span>) &lt;&gt; 0) <span style="color: #8D38C9; font-weight: bold;">Then</span>
    <span style="color: #8D38C9; font-weight: bold;">If</span> Item.Attachments.Count = 0 <span style="color: #8D38C9; font-weight: bold;">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: #8D38C9; font-weight: bold;">If</span> lngres = vbNo <span style="color: #8D38C9; font-weight: bold;">Then</span> cancel = <span style="color: #00C2FF; font-weight: bold;">True</span>
    <span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #8D38C9; font-weight: bold;">If</span>
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #8D38C9; font-weight: bold;">If</span>
&nbsp;
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #E56717; font-weight: bold;">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>
<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>1</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>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"><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/"><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>
<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: basic
Page Caching using disk: enhanced (Requested URI is rejected)
Object Caching 668/694 objects using disk: basic

Served from: a4apphack.com @ 2012-02-05 07:34:15 -->
