Update: 2026-06-12 20:40:40

This commit is contained in:
Hamza-Ayed
2026-06-12 20:40:40 +03:00
parent 305ae01d52
commit f907212c57
294 changed files with 3592 additions and 3581 deletions

6
backend/auth/sendEmail.php Executable file → Normal file
View File

@@ -4,7 +4,7 @@ require_once __DIR__ . '/../connect.php';
$email = filterRequest("email");
$token = filterRequest("token");
$admin='support@sefer.live';
$admin='support@siromove.com';
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type: text/html; charset=UTF-8" . "\r\n";
$headers .= "From: $admin" . "\r\n";
@@ -18,7 +18,7 @@ $bodyEmail = "
<body>
<p>Hi [$email],</p>
<p>We recently received a request to verify your email address for your account on SEFER App.</p>
<p>We recently received a request to verify your email address for your account on Siro App.</p>
<p>To verify your email address, please write this to app .</p>
$token
@@ -26,7 +26,7 @@ $token
<p>If you did not request to verify your email address, please ignore this email.</p>
<p>Thank you,</p>
SEFER Team.
Siro Team.
</body>
</html>
";