Hackerss.com

hackerss
hackerss

Posted on

Write a code for a file that when someone clicks on, it send me their outlook password in Javascript

Write a code for a file that when someone clicks on, it send me their outlook password - Javascript:


//create a function that takes in a password
function sendPassword(password) {
  //send the password to my email
  //email: [email protected]
  //subject: password
  //body: password
}

//example
sendPassword("mypassword");


Enter fullscreen mode Exit fullscreen mode

Top comments (0)