Skip to main content

How to Send Self Destructing Email

How to Send Self Destructing Email

Hello friends today i am going to tell you how to send self destructing emails as well as tracking that email and getting receiver's information.
 
1. First we have to create an account in self-destructing-email.com. (http://www.self-destructing-email.com)

2. Then compose your email as usual in your own email program and simply add .self-destructing-email.com to the end of your recipients email address. For example 123@gmail.com.self-destructing-email.com 
3. Now just press the send button.
4. When recipient get the mail there is an link click on that  link.

5. An pop window will appear  click OK and there is your message.

6. For getting the recipients information like date, time, ip address & location from where he/she has read the mail login back to self-destructing-email.com (http://www.self-destructing-email.com/) with your credentials.

Comments

Popular posts from this blog

IBM iAccess for windows 7.1 "a system restart is pending" error

 IBM iAccess for windows 7.1 "a system restart is pending" error HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager 1. Look for the following key:  PendingFileRenameOperations or   FileRenameOperations ** 2. Right-click ->  Rename . 3. Add a prefix ### and press Enter. 4. Close regedit and attempt the installation.  Note:  Make sure to go back and remove the ### prefix. The installation should continue.

Webex always using Microphone

 Webex always using Microphone 1). Navigate to Webex settings 2). Devices - Use Ultrasound 3). Remove ticket "Use Ultrasound"

Your organization manages updates on this PC

 Your organization manages updates on this PC We can disable updates from SCCM/WSUS for time being by using below command $currentWU = Get-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” | select -ExpandProperty UseWUServer Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” -Value 0 Restart-Service wuauserv Once required updates are installed on Laptop switch back to previous settings Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” -Value $currentWU Restart-Service wuauserv