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");
Top comments (0)