<?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>Webupon &#187; E-mail</title>
	<atom:link href="http://webupon.com/category/e-mail/feed/" rel="self" type="application/rss+xml" />
	<link>http://webupon.com</link>
	<description></description>
	<lastBuildDate>Sun, 22 Nov 2009 09:14:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using The PHP Mail Function to Send HTML Emails on Your Website</title>
		<link>http://webupon.com/e-mail/using-the-php-mail-function-to-send-html-emails-on-your-website/</link>
		<comments>http://webupon.com/e-mail/using-the-php-mail-function-to-send-html-emails-on-your-website/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 09:18:44 +0000</pubDate>
		<dc:creator><a target="_blank" href="http://www.triond.com/users/Christopher+East">Christopher East</a></dc:creator>
				<category><![CDATA[E-mail]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[html emails using php]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php mail]]></category>
		<category><![CDATA[PHP Mail function]]></category>

		<guid isPermaLink="false">http://webupon.com/e-mail/using-the-php-mail-function-to-send-html-emails-on-your-website/</guid>
		<description><![CDATA[A short article giving details and a tutorial on how to send emails to your fans, clients, or whoever using the PHP mail function and a HTML email.]]></description>
			<content:encoded><![CDATA[<p>Everyone who builds websites using PHP knows how to use the Mail function, in fact it is used by a lot of employers as a test of a potential employees ability to code in the language. In this article, I will provide you with a tutorial and examples of how to send HTML emails using the PHP Mail function. This is quite a simple function, and should take you no more than a few minutes to master, however like most developers, I don&#8217;t try to reinvent the wheel. Once you have built something once, you tend not to bother re-typing the same code unless you really have to.</p>
<h3>1. Variables</h3>
<p>The variables that you will need. In order to send an email using the PHP mail function, you will need to set various variables, which will form things like the email address the email has come from, the email address it is to be sent to, and the subject. In addition to this, you will need to set something called headers, which we will use to tell the mail function that we are sending an email function.</p>
<ul>
<li>$headers&nbsp; &#8211; This variable is explained further below.</li>
<li>$email_to = &#8220;email@email.com&#8221;;</li>
<li>$email_from = &#8220;FROM: noreply@christophereast.me.uk&#8221;;</li>
<li>$subject = &#8220;test email&#8221;;</li>
<li>$message = &#8220;Test emailTesting&#8221;;</li>
</ul>
<h3>2. Setting the Headers</h3>
<p>Headers are the part of the email that tell it who it is from, and that the email is coded in HTML. Remember when you are sending an email in HTML, the message in the email must be coded in correct HTML4 otherwise errors may be displayed in some browsers. In-line CSS is recommended over separate CSS as it is then sent along with the email and doesn&#8217;t rely on other files to function. The following 2 sections of the header tell the mail function that you are sending an email with HTML content.</p>
<ul>
<li>$headers =&nbsp;&#8217;MIME-Version: 1.0&#8242; . &#8220;rn&#8221;;</li>
<li>$headers .= &#8216;Content-type: text/html; charset=iso-8859-1&#8242; . &#8220;rn&#8221;;</li>
</ul>
<p>There are two things to remember when doing the above two lines of code. The first is that you need to include a full stop (.) before the equals sign on the second line, as this will append to the first line. The second is that instead of normal quotation marks, you only use a single quotation mark. This is because of the way PHP interprets code when it comes to the mail function.</p>
<h3>3. Additional Headers</h3>
<p>You can set some additional headers, which makes things a little bit easier to see in an email. These should be fairly self explainatory.</p>
<ul>
<li>$headers .= &#8216;To: Mary , Kelly &#8216; . &#8220;rn&#8221;;</li>
<li>$headers .= &#8216;From: Birthday Reminder &#8216; . &#8220;rn&#8221;;</li>
<li>$headers .= &#8216;Cc: birthdayarchive@example.com&#8217; . &#8220;rn&#8221;;</li>
<li>$headers .= &#8216;Bcc: birthdaycheck@example.com&#8217; . &#8220;rn&#8221;;</li>
</ul>
<p>The header section makes it easier for email clients to understand your emails, and make it easier for your emails to be checked for spam etc&#8230;</p>
<h3>4. Putting It All Together</h3>
<p>Once you&#8217;ve got it all, it&#8217;s time to put it all together. This final section allows you to actually get the emails sent, and provides you with the code you need to make it all work!</p>
<ul>
<li>mail($to, $subject, $message, $headers);</li>
</ul>
<p>It really is as simple as that. So now you&#8217;ve got all the building blocks to a HTML email, you can go out and add it to your next website with no fuss whatsoever!</p>
]]></content:encoded>
			<wfw:commentRss>http://webupon.com/e-mail/using-the-php-mail-function-to-send-html-emails-on-your-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why I Love Hotmail</title>
		<link>http://webupon.com/e-mail/why-i-love-hotmail/</link>
		<comments>http://webupon.com/e-mail/why-i-love-hotmail/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 12:05:22 +0000</pubDate>
		<dc:creator><a target="_blank" href="http://www.triond.com/users/Greyian+Storm">Greyian Storm</a></dc:creator>
				<category><![CDATA[E-mail]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[windows live messenger]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://webupon.com/e-mail/why-i-love-hotmail/</guid>
		<description><![CDATA[My review of Hotmail, Microsoft's email service.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not Microsoft&#8217;s biggest fan. I may use a PC with Windows XP on it (along with MS Office), but that is not because I am an MS fan. It is because I haven&#8217;t yet had a chance to look at any other operating systems (such as Linux or picking up a Mac). That having been said, I absolutely love Hotmail. It is, far and away, the best email service I have ever used. There are 3 main reasons why I love Hotmail: It is integrated with Windows Live Messenger, it gives me more than enough storage and, finally, I can use my non-Hotmail email accounts through my Hotmail account.</p>
<h3>Windows Live Messenger Integration</h3>
<p>Hotmail&#8217;s integration with Windows Live Messenger is probably the main reason I use Hotmail. I spend a lot of time each day on Windows Live Messenger. It&#8217;s how I communicate with pretty much everybody. I can leave it on while I&#8217;m doing other things. Because of Windows Live, I get a notification every time I get an email. If I&#8217;m gaming, I can pause, check my mail and then get back to what I was doing. It&#8217;s an extremely efficient use of my time.</p>
<h3>Storage</h3>
<p>I have been known to get quite a lot of spam in my inbox. It isn&#8217;t actual &#8220;spam&#8221; as most people would define it, but more those automated emails you get when someone sends you a message on Facebook or Bebo, or when you get an email from a website you&#8217;ve registered to. Quite often I can find out what I need to know from just the subject line, so I don&#8217;t actually open the email. As such, I now have almost 5000 unread messages. Despite this, thanks to Hotmail, I am nowhere near reaching my storage limit.</p>
<h3>Non-Hotmail Accounts on Hotmail</h3>
<p>The email account that I use most now is not a Hotmail account. It is an email account linked to my website. As such, it can be a major pain checking my emails. I used to have to login to my website, then my email account, then finally get to check my emails. No longer though! Now I get a notification from Windows Live when I receive an email in my main account, because I&#8217;ve linked it to Hotmail. It saves time for me. Not only do I only now check my mail when I actually have mail, but it is also much quicker too.</p>
]]></content:encoded>
			<wfw:commentRss>http://webupon.com/e-mail/why-i-love-hotmail/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Time Savers in Outlook</title>
		<link>http://webupon.com/e-mail/time-savers-in-outlook/</link>
		<comments>http://webupon.com/e-mail/time-savers-in-outlook/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 09:56:03 +0000</pubDate>
		<dc:creator><a target="_blank" href="http://www.triond.com/users/Annalisa+Mara">Annalisa Mara</a></dc:creator>
				<category><![CDATA[E-mail]]></category>
		<category><![CDATA[efficiency]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Outlook]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[organise]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[time savers]]></category>

		<guid isPermaLink="false">http://webupon.com/e-mail/time-savers-in-outlook/</guid>
		<description><![CDATA[Four time savers using Microsoft Outlook that can help organise your day.]]></description>
			<content:encoded><![CDATA[<p>Outlook is a powerful program but most of us only really use the email and maybe the calendar.</p>
<p><a href="http://en.wikipedia.org/wiki/Image:Outlook_2007.png" target="_blank"><img src="http://images.stanzapub.com/readers/2009/08/13/outlook2007_1.png" alt="" border="0" /></a></p>
<p>Image via <a href="http://en.wikipedia.org/wiki/Image:Outlook_2007.png" target="_blank"><u>Wikipedia</u></a></p>
<p>So what else can it offer us?</p>
<p><strong>Drag and Drop</strong></p>
<p>You can drag and drop emails into your calendar and task area. That allows you to make a time to work on that email without having to retype it. You can even ask others to help you by sending a calendar request or adding them to the task.</p>
<p><strong>Journal</strong></p>
<p>Ever spent ages trying to chase something but couldn&#8217;t find it? The Journal tracks all your emails, documents and calls made to a particular person or group.&nbsp;It helps log how long you spent working on a particular document as well, great for time based billing.</p>
<p><strong>Notes</strong></p>
<p>Need to write down something quickly but not lose it. Notes is your friend here. In fact, it is so useful, Microsoft even create a whole new program to help keep you organised for projects &#8211; Onenote.</p>
<p><strong>Tasks</strong></p>
<p>Track the jobs you need to do and share them with others that can help and monitor their progress. Simply hit the task button (or View Tasks) then create a new task. Set a date to finish by, a priority and even a reminder. Then you can start working through your day, doing the most urgent things first and marking them off as you finish. A great motivator. Remember though, don&#8217;t make one task too big, break it down into smaller tasks and it is easier to manage.</p>
]]></content:encoded>
			<wfw:commentRss>http://webupon.com/e-mail/time-savers-in-outlook/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Netiquette III</title>
		<link>http://webupon.com/e-mail/netiquette-iii/</link>
		<comments>http://webupon.com/e-mail/netiquette-iii/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 13:01:34 +0000</pubDate>
		<dc:creator><a target="_blank" href="http://www.triond.com/users/A.+Fool">A. Fool</a></dc:creator>
				<category><![CDATA[E-mail]]></category>
		<category><![CDATA[attachments]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[etiquette]]></category>
		<category><![CDATA[netiquette]]></category>
		<category><![CDATA[word processing]]></category>

		<guid isPermaLink="false">http://webupon.com/e-mail/netiquette-iii/</guid>
		<description><![CDATA[Sending attachments in languages they can be read.]]></description>
			<content:encoded><![CDATA[<p>NETIQUETTE &#8211; III</p>
<p>You have just finished an important document. You are about to email it as an attachment.</p>
<p><strong>Stop.</strong></p>
<p>What word processing program have you used? And how has the document been saved?</p>
<p>Although most useful w/p progs offer options as to what form the document should be saved, most have, as their default, an esoteric version which can only be read if the person to whom you are writing has the same program.</p>
<p>On occasion you may be told to send the document in pdf or rtf or even txt.&nbsp; This is because the recipient is accustomed to receiving items in unreadable formats and has implemented protocols.</p>
<p>On other occasions you will not be given a format so might simply send your document in the default.</p>
<p>If you are lucky you will receive an email informing you that your document can not be read. If you are not, your work goes into the great cyber cess pool.</p>
<p>Let me be coarse; you have spent a week working on this project. You have saved it as docx because that is the default in your w/p program.</p>
<p>The recipient, which uses other w/p programs can not open the document. As there are a number of other candidates who have saved their work in .rtf, the recipient opens those.</p>
<p>Your work is discarded as if it were written in Sanskrit.</p>
<p>Philosophically, understand that those who develop proprietary software do so to &#8216;force&#8217; everyone to buy their<br />software.</p>
<p>As the wiser use open source software or the &#8216;universal&#8217; languages so that no matter what Operating System or Word Processing program is used, the document can be seen, those who use proprietary progs will find themselves unread.</p>
<p>Your wisest move is that if you are not instructed as to what &#8216;language&#8217; to use, opt for Rich Text Format; rtf or<br />Text, txt.</p>
<p>This insures that your project can be read.</p>
<p>Attachments are always tricky.&nbsp; Many clever fonts or graphics might not appear as you created them.</p>
<p>Most people are concerned about picking up malware via email and so have implemented many protocols.&nbsp; Often, a large document with graphics might be seen as threat and will not automatically open.</p>
<p>As the person who might be receiving the email is computer stupid, s/he will not have a clue as to how to open that document so shrug and skip.</p>
<p>One can&#8217;t really fault this; as most malware is downloaded on business machines by a computer stupid clerk who really believes s/he &#8216;won&#8217; that prize.</p>
<p>Wise IT managers implement a great number of protocols for protection. Hence your magnificent presentation stays as an unopened attachment to an email.</p>
<p>Your best move is to do your project as simply as possible. If you know html and wish to have a fabulous presentation, create a website and send the URL.</p>
<p>If the important aspect of your presentation are numbers and words, and you need it to be read; save in .rtf.</p>
<p>Always remember, when it comes to Cyberculture the burden of lucidity is always on the sender/creator.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://webupon.com/e-mail/netiquette-iii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E-Mails or Letters</title>
		<link>http://webupon.com/e-mail/e-mails-or-letters/</link>
		<comments>http://webupon.com/e-mail/e-mails-or-letters/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 11:56:46 +0000</pubDate>
		<dc:creator><a target="_blank" href="http://www.triond.com/users/NabeelNadeem">NabeelNadeem</a></dc:creator>
				<category><![CDATA[E-mail]]></category>
		<category><![CDATA[e-mails]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[letters]]></category>

		<guid isPermaLink="false">http://webupon.com/e-mail/e-mails-or-letters/</guid>
		<description><![CDATA[Emotional or emoticonal?]]></description>
			<content:encoded><![CDATA[<p>In a world where instant gratification is the order of the day, letter writing may seem like a habit of the Stone Age. Yet, despite the technological simplicities and conveniences of e-mail, nothing can quite equal the pleasure one derives on receiving a handwritten letter from a loved one.</p>
<p>It may not be filled with emoticons or colorful graphics and groups of acronyms. Instead, a handwritten letter exudes a sentimentality that is clearly lacking even with the fastest modes of communication. Among the fortunate few who continue to experience this emotional and intrinsic pleasure in today&#8217;s technological driven era is Ms. S, who, for as long as she can remember, has been writing to and receiving letters from her oldest school friend in Chennai, India, on a regular basis.</p>
<p>&#8220;She is 33 years old and quite tech savvy. She also has access to the Internet. Yet, my friend and I prefer to write to each other,&#8221; she says. &#8220;I am very close to her and have been writing to her ever since I came to the United Arab Emirates.&#8221;</p>
<p>The letters are often four to five pages long; sometimes it could be just a page, but at least once a week, she sits down to write her thoughts to her.</p>
<p>&#8220;I look upon letter writing as a kind of conversation &#8211; it is like telling a story through letters, sharing pieces of your life in a personalized style,&#8221; says Ms. S. &#8220;Recently, when my friend had twins, I got to know of this glad tiding immediately. But when my friend&#8217;s letter arrived, it brought in more joy as through her words, I could &lsquo;see&#8217; what the babies were doing, how they were playing, sleeping, what they enjoyed doing the most and so on.&#8221;</p>
<p>Writing a letter by hand takes time and effort, she agrees. &#8220;It&#8217;s not as quick as typing and requires more discipline and concentration as I have to put down my thoughts properly and also remember to write neatly and legibly,&#8221; she says. &#8220;My handwriting is not very easy to read and may seem like alien messages from Venus, but my friend&#8217;s is almost like printed calligraphy.&#8221;</p>
<p>What she likes best about the letters, says Ms. S, is that &#8220;when I hold the letter in my hands, I like the feeling that I am holding the same paper that she held. Despite the physical distance between us, it is almost like touching the person you love very much. My friend wears a distinctive perfume and when I open her letters, I can almost smell that scent. And there are times when she puts in some rose petals too, for an extra special touch.&#8221;</p>
<p>Ms. S converses with her mother and other family members mostly by e-mail &#8220;because that is their mode of choice,&#8221; he says. &#8220;The real &lsquo;love affair&#8217; is not between my husband and me; rather it is between my friend and me!&#8221;</p>
<p>However, when a message needs to be conveyed immediately, she agrees that it is e-mail that she depends on to get in touch with her. &#8220;But that lacks the personal touch, for you instantly get into business mode with e-mail,&#8221; she says. &#8220;There was another friend of mine from my school days whom I stayed in touch even when I was getting married. But after she moved to the USA, our correspondence was chiefly by e-mail and gradually, we lost touch with each other.&#8221;</p>
<p>Ms. S that had they continued with handwritten letters, perhaps they might have still maintained their friendship to this day. The best thing about a handwritten letter, she says, &#8220;is that each one of them is very special. Unlike e-mails, they do not get deleted and can be enjoyed again and again, even years after you have received them.</p>
<p>&#8220;I&#8217;ve got all the letters that my friend has written to me and years later, I know I can show them to my children&#8217;s children and they too would be able to &lsquo;touch&#8217; her through these treasured letters, &#8220;she says.</p>
]]></content:encoded>
			<wfw:commentRss>http://webupon.com/e-mail/e-mails-or-letters/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Making the Most of Gmail</title>
		<link>http://webupon.com/e-mail/making-the-most-of-gmail/</link>
		<comments>http://webupon.com/e-mail/making-the-most-of-gmail/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 09:27:56 +0000</pubDate>
		<dc:creator><a target="_blank" href="http://www.triond.com/users/Ashley+K.">Ashley K.</a></dc:creator>
				<category><![CDATA[E-mail]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Google mail]]></category>
		<category><![CDATA[Gspace]]></category>
		<category><![CDATA[user styles]]></category>

		<guid isPermaLink="false">http://webupon.com/e-mail/making-the-most-of-gmail/</guid>
		<description><![CDATA[If you're tired of the default Gmail interface or you need more storage space, check out these addons for the Firefox browser which can drastically change the way you use your Gmail.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gmail.com" target="_blank">Gmail</a> has revolutionized the way the world looks at email. Before it introduced the then huge limit of 1GB for email, leading email providers were being skimpy with 100mbs of space being the average. It&#8217;s no wonder so many flocked to the email service Google provided.  In a long standing pattern with Google and its products, Gmail is highly customizable, and many people have written programs that help utilitize this diversity.</p>
<p>One thing that plagues many people about Gmail is the interface. Many people don&#8217;t care for the default interface and try to find ways to improve it, such as through Firefox addons. One of the best ways to spruce up your Gmail experience is by visiting the website, <a href="http://www.userstyles.org" target="_blank">Userstyles.org</a>. Upon installing the <a href="http://www.firefox.com" target="_blank">Firefox</a> addon, Stylish, you can then use the styles that are contained on the website.</p>
<p>Globex Designs has created a brand new Gmail interface that can be used with the Stylish Firefox addon. So what does the style look like? Check it out!</p>
<p>This is a huge improvement over the default interface.</p>
<p><img src="http://images.stanzapub.com/readers/webupon/2008/06/22/190167_1.jpg" alt="" /></p>
<p>Another thing that makes Gmail so popular is the sheer amount of space it offers, with the amount being upped daily. So why not take advantage of this space? With GSpace, you can. GSpace is another firefox extension which uploads files to your Gmail account for safekeeping. Any file extension that gmail allows and is within the upload limit can be stored within. This makes online file storage virtually obsolete except for larger files. GSpace organizes the emails by the file name, and you can optionally label the emails for quick referencing. It&#8217;s like having an online file cabinet that goes anywhere, for free.</p>
]]></content:encoded>
			<wfw:commentRss>http://webupon.com/e-mail/making-the-most-of-gmail/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Seven E-mail Etiquettes That Can Change Your Life</title>
		<link>http://webupon.com/e-mail/seven-e-mail-etiquettes-that-can-change-your-life/</link>
		<comments>http://webupon.com/e-mail/seven-e-mail-etiquettes-that-can-change-your-life/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 11:03:37 +0000</pubDate>
		<dc:creator><a target="_blank" href="http://www.triond.com/users/balisunset">balisunset</a></dc:creator>
				<category><![CDATA[E-mail]]></category>
		<category><![CDATA[e-mail etiquette]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email etiquette]]></category>

		<guid isPermaLink="false">http://webupon.com/e-mail/seven-e-mail-etiquettes-that-can-change-your-life/</guid>
		<description><![CDATA[We often do not realize that we have bad manner in dealing with email, that can hamper our success in career and social life.]]></description>
			<content:encoded><![CDATA[<p>E-mail has created a new frontier in communication. It&#8217;s faster and cheaper than sending paper-and-stamp letters, and the sheer ease of sending of e-mail encourages a certain informality. It&#8217;s now possible to dash off a note to pretty much anyone we choose-from the president of the company to your long-lost cousin. This opens up exciting new territory, but it&#8217;s wise to learn a few rules of the road before rushing in.</p>
<ol>
<li>
<h3>Don&#8217;t shout</h3>
<p>Typing with ALL CAPS in e-mail is the electronic equivalent of shouting and is considered bad manners. </li>
<li>
<h3>Be brief</h3>
<p>Keep your e-mail as brief as possible. Your message will be clear-and more welcome-if you say what you mean in the fewest possible words. Lengthy messages that flow through screen after screen are less likely to be read by busy people. </li>
<li>
<h3>Write clear headlines</h3>
<p>The subject line of an e-mail form is intended to let the recipient know at a glance what the e-mail is about. Subject lines such as &ldquo;a question&rdquo; or &ldquo;hi&rdquo; are unhelpful and can be downright annoying to those who prefer to sort and prioritize e-mails before opening them. A descriptive subject line is a big help to the reader. </li>
<li>
<h3>Cool off</h3>
<p>Never give in to the temptation to fire off an angry or sarcastic message. A tap of the &ldquo;send&rdquo; button makes this easy to do, but making amends afterward may be more difficult. Use your &ldquo;save draft&rdquo; file to hold messages until you are calm enough to reread before sending. </li>
<li>
<h3>Forward selectively</h3>
<p>A joke that&#8217;s new and hilarious to you might not be to someone who&#8217;s already seen it or to someone who&#8217;s so busy that extra e-mail is a nuisance. Don&#8217;t get in the habit of routinely forwarding jokes and various other e-mails to everyone on your address list; send them only to those you&#8217;re certain will appreciate receiving them. </li>
<li>
<h3>Reply sparingly</h3>
<p>Not every e-mail requires a reply and some need only a word or two. If you want to let the sender know you received something, a brief &ldquo;Got it, thanks&rdquo; is perfectly fine. </li>
<li>
<h3>Use good judgment</h3>
<p>If you&#8217;re writing messages at work, be careful. Company e-mail can be retrieved and read and should not be considered private. </li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://webupon.com/e-mail/seven-e-mail-etiquettes-that-can-change-your-life/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Four  Weird and Wacky Uses for Gmail</title>
		<link>http://webupon.com/e-mail/four-weird-and-wacky-uses-for-gmail/</link>
		<comments>http://webupon.com/e-mail/four-weird-and-wacky-uses-for-gmail/#comments</comments>
		<pubDate>Mon, 26 May 2008 08:30:13 +0000</pubDate>
		<dc:creator><a target="_blank" href="http://www.triond.com/users/Mary+Sue+Pleasant">Mary Sue Pleasant</a></dc:creator>
				<category><![CDATA[E-mail]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Google mail]]></category>
		<category><![CDATA[web based email]]></category>

		<guid isPermaLink="false">http://webupon.com/e-mail/four-weird-and-wacky-uses-for-gmail/</guid>
		<description><![CDATA[Tired of using Gmail the same old way? Here are some news to incorporate more of Google's web-based email program into your life.]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s how you can incorporate <a href="http://www.gmail.com" target="_blank">Gmail</a> more into your life and get some more functionality out of Google&#8217;s humble web-based email program, Gmail!</p>
<ol>
<li>
<h3>Personal Diary</h3>
<p> Dear diary&#8230; you can set up filters and a new Gmail account so you can keep a record of your day-to-day activites. Create a new account and set up a filter so emails coming to that email address will be labelled &#8220;Diary&#8221; or &#8220;Journal&#8221; etc. and go straight to the archives. You&#8217;ll be surprised at how quickly those emails can build up!</li>
<li>
<h3>A Baby Book</h3>
<p> Rafe Needleman of the site Webware posted his <a href="http://www.webware.com/8301-1_109-9937114-2.html" target="_blank">&#8220;parent hack&#8221;</a> &#8211; he sends important details of his child&#8217;s development to a dedicated Gmail account. He sets up a filter so it goes directly to the archives. He also forwards email from that account to another PC-based email account, which is backed up using <a href="http://www.carbonite.com" target="_blank">Carbonite</a>, making the chances of losing his precious baby&#8217;s memories almost zilch.</li>
<li>
<h3>A Virtual Drive</h3>
<p> Backup, portability&#8230; whatever: you can use Gmail as a virtual drive using <a href="http://www.viksoe.dk/code/gmail.htm" target="_blank">Gmail Drive</a>. Because there&#8217;s such a ridiculous amount of storage on Gmail, why not put this to better use by storing your files on it? Gmail Drive integrates into your computer (meaning that you can save onto it the same way you save into My Documents, etc.), so it&#8217;s easy to use.</li>
<li>
<h3>Email Blacklists</h3>
<p> Receiving too much spam from one email address? Is a company sending you too many &#8220;newsletters&#8221;? Is a friend bombarding you with chain letters? You can add all of these email addresses to your blacklist by setting up a filter sending all of their emails that you receive straight to the spam folder or trash &#8211; it&#8217;s up to you. If you&#8217;re a steadfast user of another mail program, try using Gmail as your &#8220;watchguard&#8221;. It has a better spam filter than other web-based emails and you can also filter out any unwanted email using Gmail&#8217;s filtering feature.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://webupon.com/e-mail/four-weird-and-wacky-uses-for-gmail/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Six Types of Emails That Give You a Headache</title>
		<link>http://webupon.com/e-mail/six-types-of-emails-that-give-you-a-headache/</link>
		<comments>http://webupon.com/e-mail/six-types-of-emails-that-give-you-a-headache/#comments</comments>
		<pubDate>Thu, 22 May 2008 14:01:19 +0000</pubDate>
		<dc:creator><a target="_blank" href="http://www.triond.com/users/zelliot">zelliot</a></dc:creator>
				<category><![CDATA[E-mail]]></category>
		<category><![CDATA[emails]]></category>
		<category><![CDATA[forward]]></category>
		<category><![CDATA[headache]]></category>
		<category><![CDATA[humour]]></category>

		<guid isPermaLink="false">http://webupon.com/e-mail/six-types-of-emails-that-give-you-a-headache/</guid>
		<description><![CDATA[Each of us get these forwarded emails a hundred times a year. Why we're better off without them.]]></description>
			<content:encoded><![CDATA[<p>Okay, I may have exaggerated a bit. Forwarded e-mails usually don&#8217;t give you a headache, but instead makes you go &ldquo;Not again!?!&rdquo; Here are ten common examples I&#8217;m pretty sure you can relate to:</p>
<ol>
<li> E-mails that tell you to say a short prayer and then pass on the mail to X number of people. &ldquo;Do not break the chain. This has been going around the world for a hundred years.&rdquo;, it says. Come on! I&#8217;ve probably received this kind of mail about fifty times in my entire four-year work experience. They must have been serious about the &ldquo;going around the world&rdquo;-thing! If not, then how come these mails always find me?!</li>
<li> E-mails that say, &ldquo;Look at the picture for sixty seconds, pass it on to fifty people, and tada! You&#8217;ll get promoted or have a chance to work in a more progressive country!&rdquo; Does anyone really buy this kind of stuff? I mean, yeah, at one point, I did try staring at it for a minute, maybe even more than that, and passed it on to a number of friends, but I did not get promoted at 11:59 am the following day like it said so! Aaaargh!</li>
<li> Chain mails. I&#8217;m sure you&#8217;ve gotten one. The mail that says &ldquo;Mr. Famous Personality got his letter and ignored it and he lost his job and his wife.&rdquo; Or &ldquo;Mr. Nobody resent the mail to twenty of his friends and he won a million dollars in a lottery the following day!&rdquo; Again, come on! What if I got busy and wasn&#8217;t able to pass on the mail twenty-four hours after I&#8217;ve opened it? Will I really lose my job, too? Sigh.</li>
<li> Warning mails. &ldquo;Do not use public toilets. There are poisonous spiders hiding in the toilet waiting for your cute butt so it can bite you and then you&#8217;re dead the next day.&rdquo; Are they really serious? What if I badly need to pee? I do have a social life, honey. I&#8217;m not at home every minute of the day. It only follows that, as much as I would like to listen to you, I need to use the public toilet.</li>
<li> Mails that are supposed to be generating donations for a worthy cause. I&#8217;m not sure about this one. I do get lots of this and admittedly forward it to as many friends as possible just in case Yahoo really would donate a centavo for every mail I send. But, is this really serious? Can anybody tell me if this really works? Coz if it does, I&#8217;ll just go on with the forwarding, and if not, I can go back to doing my job.</li>
<li> Magic mails. These are the e-mails that say, &ldquo;Read and scroll down and say a wish. Once you&#8217;ve passed it on to an x number of people (again!), the phone will ring and your crush will tell you he likes you!&rdquo; Uhm, does reading the mail, scrolling down and forwarding it makes me a Prom Queen after 25 minutes? (the number of minutes still depend on your age, by the way!) </li>
</ol>
<p>Yes, I know that when you send me an e-mail telling me not to drink Coke because it can clean the toilet bowl in minutes, you were just being concerned. I get that. I also happen to know that whenever you send me forward-or-else-lose-your-job-mails, you were just protecting your own interests. But can you do me a favor? Next time, try to ignore these mails. Think about this: If all of us would stop entertaining these kind of mails and supporting it by means of forwarding it to our friends, maybe these same mails would stop &ldquo;going-around-the-world-for-a-hundred-years&rdquo;.</p>
<p>Can&#8217;t do it? Then please, delete me from your mailing list.</p>
]]></content:encoded>
			<wfw:commentRss>http://webupon.com/e-mail/six-types-of-emails-that-give-you-a-headache/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>10 Disposable Email Services to Prevent Spam Mails</title>
		<link>http://webupon.com/e-mail/10-disposable-email-services-to-prevent-spam-mails/</link>
		<comments>http://webupon.com/e-mail/10-disposable-email-services-to-prevent-spam-mails/#comments</comments>
		<pubDate>Tue, 06 May 2008 14:57:43 +0000</pubDate>
		<dc:creator><a target="_blank" href="http://www.triond.com/users/eches">eches</a></dc:creator>
				<category><![CDATA[E-mail]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[malicious virus]]></category>
		<category><![CDATA[prevention]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[spam mail]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[Trojan]]></category>

		<guid isPermaLink="false">http://webupon.com/e-mail/10-disposable-email-services-to-prevent-spam-mails/</guid>
		<description><![CDATA[Definitive way to stop spam mails from reaching your email.]]></description>
			<content:encoded><![CDATA[<p>People usually check their mails on daily basis, mostly waiting for important emails from their clients or probably looking forward for picture attachment from their good buddies. They see incoming mail but at the end of the day they realize, that&#8217;s just another annoying spam mail that manages to elude spam filter. Wouldn&#8217;t that be a sick sight? Spam filter is doing good job in keeping spam mails at bay, but not good enough to completely seal off your inbox from unsolicited mails. </p>
<p>So, here&#8217;s the solution towards this problem. When an online registration requires you to include your email address simply gives them a temporary email address. What is temporary email address anyway and where to get them I hear you ask? Disposable email service is free and requires no registration and it will effectively stop spam from reaching your primary email account.
  </p>
<p>
If you never heard of them, there are 2 things you need to know and you always need to keep in mind. First off, by using this service, anyone can get access to the email address you created as long as they are using the same username as yours. Only a few of them require you to have a password. So you need to be a little bit creative such that the username you created will not be easily replicated or guessed by other people. Lastly never use this service for your personal or sensitive business because nobody can tell for sure who is running this service. Chances of your information being stolen are quite high.
 </p>
<p>
Anyway, here&#8217;s the list of the websites that provide disposable email services; so I hope it can be of great help to you in fighting spam in your emails.
 </p>
<ol>
<li>
<h3>1. <a href="http://www.mailmoat.com" target="_blank">MailMoat</a></h3>
<p>MailMoat.com is built around the idea of an endless supply of disposable (and self-destructing!) e-mail addresses that you can give to anyone you don&#8217;t trust. E-mails they send to the alias that you gave them are automatically forwarded to your existing e-mail account (no need to separately check a dozen e-mail accounts if you give out a dozen aliases!). Each alias automatically dies after a date or number of forwarded messages that you set, or you can kill it at will. Live or dead, the alias is not traceable to either you or your real e-mail address.</p>
</li>
<li>
<h3> <a href="http://www.sneakemail.com/" target="_blank">Sneak Mail</a></h3>
<p>It gives you the power over your inbox from commercial forces, and catch them spamming.</p>
</li>
<li>
<h3> <a href="http://www.guerrillamail.com/" target="_blank">Guerrilla Mail</a></h3>
<p>This website provides you with disposable e-mail addresses which expire after 15 Minutes. You can read and reply to e-mails that are sent to the temporary e-mail address within the given time frame.</p>
</li>
<li>
<h3> <a href="http://www.temporaryinbox.com/" target="_blank">Temporary Inbox</a></h3>
<p>A temporary inbox is a disposable email address, which doesn&#8217;t require registration and can be used to avoid spam. Use this email address in forums, lotteries, erotic sites or wherever. The spammers will never find out your private email address.</p>
</li>
<li>
<h3> <a href="http://www.blockfilter.com/" target="_blank">Block Filter</a></h3>
<p>Use this temporary e-mail address to sign-up to websites that requires e-mail verification and its perfect for forums, e-book sale pages, or email required download pages. But bear in mind, they delete the e-mails every 2 hours!</p>
</li>
<li>
<h3> <a href="http://www.mailinator.com/" target="_blank">Mailnator</a></h3>
<p>Mailinator is a disposable email service for people who want to protect their online identity. It is a tool that allows users to create an on-the-spot email identity that provides anonymity and fights web inertia in one easy step.</p>
</li>
<li>
<h3> <a href="http://10minutemail.com/" target="_blank">10 Minute Mail</a></h3>
<p>Any e-mails sent to that address will show up automatically on the web page. You can read them, click on links, and even reply to them. The e-mail address will expire after 10 minutes.</p>
</li>
<li>
<h3><a href="http://www.fakemailgenerator.com/" target="_blank">Fake Mail Generator</a></h3>
<p>The Fake Mail Generator is an absolutely free disposable email system. By simply visiting this site the above address has already been saved to your clipboard. Paste (Ctrl-V) it into any form on a website that requires email verification, and when the email is received it will pop up instantly in this box.</p>
</li>
<li>
<h3> <a href="http://www.spamgourmet.com/" target="_blank">Spam Gourmet</a></h3>
<p>There is nothing to install on your computer, and once you&#8217;re set up, it&#8217;s likely you won&#8217;t ever have to come back here. This is what makes it one of the most convenient and effective anti-spam tools available.</p>
</li>
<li>
<h3><a href="http://www.mytrashmail.com/" target="_blank">My Trash Mail</a></h3>
<p>No registration or password needed. Your account is created on the fly. Your email is stored between 12 hours to 30 days in its server.</p>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://webupon.com/e-mail/10-disposable-email-services-to-prevent-spam-mails/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>