Tuesday, 25 October 2016

HOW TO INSERT A GIF ANIMATION INTO A PERSONAL EMAIL


STEP-1 

 Locate or create the animated GIF you wish to use in your email. Make sure that you have permission to download and use any animated GIF that you locate online. Create your own animated GIF using photo editing software like Photoshop if you do not have permission to use an existing animated GIF
.

 STEP-2


Save the animated GIF to your hard drive or local network. Give the file a name you will easily recognize, since you will have to navigate to it again.
 

STEP-3

Click where you want the image to appear in your email message and using the "Insert" or equivalent command in your email client. Look for an "Insert Image" icon or "Insert" link in your email menu. 

 STEP-4 

Navigate to and select the animated GIF file on your hard drive or local network. Click "OK" or the equivalent button, once you have selected your file. Verify that the animated GIF now appears in your message.

STEP-5 

Send a test message to yourself to verify that the animated GIF appears in the email you receive before you send it to the intended recipient. Take note that Outlook 2007 does not support animated GIF files. HOW TO INSERT A GIF ANIMATION INTO A MASS MARKETING EMAIL STEP 1 Purchase or create the animated GIF you wish to use in your email marketing campaign. Make sure that you have the right to distribute the image in marketing materials, if you purchased the image online. STEP 2 Upload the animated GIF to your server. Save the GIF in the same location that you typically use to store images for your email marketing campaigns. Take note of the full URL for the image that you have now hosted on your web server. STEP 3 Insert the source code for the animated GIF into the HTML version of your email marketing message just like you would for a static image. Use the "img src" HTML code to reference the full URL for the hosted image. STEP 4 Test your full HTML and text versions of your email marketing campaign. Verify that the animated GIF appears and functions correctly in your test HTML message before you send the campaign to your subscribers. Take note that Outlook 2007 does not support animated GIFs.

Friday, 14 October 2016

Thursday, 13 October 2016

Folder Lock With Password Without Any Software

Folder Lock Without Software – Paste the code given below in notepad file and ‘Save’ it as batch file (with extension ‘.bat’). Any name will do.
Then you see a batch file. Double click on this batch file to create a folder lock program.
New folder named ‘Locker’ would be formed at the same location.
Now bring all the files you want to hide in the ‘Locker’ folder. Double click on the batch file to lock the folder namely ‘Locker’.
If you want to unlock your files,double click the batch file again and you would be prompted for password.
Enter the password and enjoy access to the folder.
Then you see a batch file. Double click on this batch file to create a folder lock program.New folder named ‘Locker’ would be formed at the same location.Now bring all the files you want to hide in the ‘Locker’ folder. Double click on the batch file to lock the folder namely ‘Locker’.If you want to unlock your files,double click the batch file again and you would be prompted for password.Enter the password and enjoy access to the folder.Then you see a batch file. Double click on this batch file to create a folder lock program.New folder named ‘Locker’ would be formed at the same location.Now bring all the files you want to hide in the ‘Locker’ folder. Double click on the batch file to lock the folder namely ‘Locker’.If you want to unlock your files,double click the batch file again and you would be prompted for password.
Enter the password and enjoy access to the folder.if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCKif NOT EXIST Locker goto MDLOCKER:CONFIRMecho Are you sure u want to Lock the folder(Y/N)set/p “cho=>”if %cho%==Y goto LOCKif %cho%==y goto LOCKif %cho%==n goto ENDif %cho%==N goto ENDecho Invalid choice.goto CONFIRM:LOCKren Locker “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”attrib +h +s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”

echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p “pass=>”
if NOT %pass%==type your password here goto FAIL
attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End