⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.60
Server IP:
68.65.123.197
Server:
Linux premium49.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Server Software:
LiteSpeed
PHP Version:
8.2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
smarbgfw
/
whatsapp.smartech-hub.com
/
emails
/
View File Name :
returnEmails.js
function recoverEmail(appName, recoveryLink) { return `<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Password Recovery</title> <style> /* Email Body */ body { font-family: Arial, sans-serif; line-height: 1.6; margin: 0; padding: 0; } /* Email Wrapper */ .email-wrapper { max-width: 600px; margin: auto; padding: 20px; } /* Email Header */ .email-header { text-align: center; margin-bottom: 20px; } /* Email Content */ .email-content { padding: 20px; background-color: #f9f9f9; border-radius: 8px; } /* Button Style */ .button { display: inline-block; background-color: #007bff; color: #ffffff; text-decoration: none; padding: 10px 20px; border-radius: 5px; margin-top: 20px; } </style> </head> <body> <div class="email-wrapper"> <div class="email-header"> <h1>Password Recovery</h1> </div> <div class="email-content"> <p>Hello,</p> <p>You have requested to reset your password. Please click the button below to reset it:</p> <a href="${recoveryLink}" class="button">Reset Password</a> <p>If you did not request this, you can safely ignore this email.</p> <p>Thank you,</p> <p>${appName}</p> </div> </div> </body> </html> ` } module.exports = { recoverEmail }