How to recall an email in gmail-get your mail back

Posted by Unknown 0 comments

 How to recall sent email in gmail:


We sometimes send mails to irrelevant or wrong person then regret and wish we could recall the message.The option of recalling the sent email is available in MS Outlook, OK that's fine,but what if we are using Gmail ? .Is there any way to recall the already sent email in gmail.Yes,Now it is easy to get  your sent email back in gmail so that the recipient won’t be able to read the sent email.

Gmail has provided a very useful solution by giving an option called UNDO ,through which you can easily recall your already sent email.The only thing you need to do is just enable the UNDO option first .

How to Enable UNDO option in Gmail:

Process:

When you log into your gmail account,you can see a Gear shaped image (Settings) at the top right.Click on that image and select settings.



 You will be navigated to a screen shown below ,click on Labs tab as highlighted in the picture .

you will see a Undo send option ,just enable it and save the changes by clicking the save button at the bottom of the page.Now Gmail will show you a yellow notification box with an Undo link every time you send an email.


Click on that undo link if you want to recall your sent email.

Note:This Undo link will be visible only for few seconds.This UNDO is an option to recall the emails the moment you send.

Do enable this option right now ,you may come across this(unfortunately send email to wrong person) situation some day.

If you think this article is useful,please share it to your friends.

Continue Reading :)

How to Disable image copy on a blogger web page

Posted by Unknown 0 comments

How to Protect images from being copied/Disabling right-click on a web page.Avoid copy infringement .


Want to protect your source code? Using this code will prevent the vast majority of users from right-clicking over a page and choosing "View source", or  right-clicking over an image and saving it. There are other ways to view the code, though... This is not always a wise technique to use - it would have to be a very special piece of code to want to hide, and those who would want to steal it will always be able to find a way to see it. 
 Use this code in the head section of your page


Code for Disabling right-click on a web page

  <SCRIPT TYPE="text/javascript">
<!--
//Disable right click script
//visit http://www.rainbow.arch.scriptmania.com/scripts/
var message="Sorry!! No right click";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
// -->
</SCRIPT>
Place the above code into <HEAD></HEAD> of your HTML.  

To disable the IE imagetoolbar also add the META TAG below to the HEAD

<META HTTP-EQUIV="imagetoolbar" CONTENT="no">

Code for Disabling text copy on a web page


To protect TEXT add 'Disable Text Select' code below into <HEAD></HEAD> of your HTML.

Ways to protect your images


To start off, the straight truth is there is no 100% way to protect your images short of not displaying them on the Internet to begin with. There are many ways to prevent a novice visitor, but no matter what you try, there will ALWAYS be a way to get any image. That said, here are a few attempts you may try in no particular order.

1. Using CSS to position a transparent gif overtop of the image.
<img src="myimage.gif" width="100" height="50">
<img src="transparent.gif" width="100" height="50" style="position:relative; left:-102px; top:0px;">


2. Using span tag to position a transparent gif overtop of the image.
<span style="background-image: url(images/my_image.jpg)"><img src="images/transparent.gif" width="200" height="150" border="0" alt="My protected Image."></span>


3. Use the image as a background of a table and fill the cell with a transparent gif.
<table width="100" height="50">
<tr>
<td background="myimage.gif">
<img src="transparent.gif" width="100" height="50">
</td>
</tr>
</table>


4. Use a watermark.
That is, put a mark on the actual image with an image software. A word, a small graphic logo, anything that would deter a thief but still look nice visually for the common visitor.

Here are a number of very effective methods of keeping unscrupulous surfers from stealing your HTML source:

1. Use the <INVISIBLE> </INVISIBLE> tags around the entire document.  [ Menu > View > Source.  To see this one. ]

2. Use the DONTSTEAL attribute in the <BODY> tag.

3. Ftp to your server, select all files and directories, hit "Delete".

4. Put every existing copy of every file on floppies, place them in a shoebox and bury them in the backyard. There is another version of this method which involves placing the floppies in a plastic bag and hiding them in a different sort of hole. Both are equally effective.

5. Password protect your entire site and make sure no one has the password, not even you.

6. Employ a small but fanatically loyal and well-armed band of mercenaries to guard your site.

7. Start>Run>format C:\

8. Attack dogs, preferably rabid.

9. Use any version of Microsoft Frontpage to create your site. (This won't prevent people from viewing your source, but no one will want to steal it.)

10. Don't put your pages on the web. 


How To steal 'NO RIGHT CLICK' code :-

Use Left mouse and drag to highlite the code, (or try, cursor over code and triple left click)
then use keys [Ctrl + C] to copy and then paste [Ctrl + V] where you want it.

Continue Reading :)