نسخة كاملة من مستودع سيرو عند ecfe7568 لتكون أساس تطبيق «انطلق». نُسخ المتعقَّب في git فقط (12,509 ملفاً / 302 م.ب) بـ git archive، لا `cp -r` — فاستُثنيت تلقائياً مخلفات البناء (build · node_modules · .dart_tool · .gradle · Pods ≈ 10.7 غ.ب) وكل ما يستثنيه .gitignore. هذا الكوميت **بلا أي تعديل عمداً** حتى يكون كل ما يليه فرقاً مقروءاً مقابل سيرو الأصلي. سيرو نفسه لم يُمسّ. ⚠️ لا يبني بعد: `.env` و`lib/env/env.g.dart` غير متعقَّبين في سيرو (وهذا صحيح — أسرار لكل مستأجر). كل تطبيق فلاتر هنا يحتاج .env خاصاً بانطلق ثم توليد env.g.dart عبر build_runner. لا تُنسخ أسرار سيرو. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
30 lines
805 B
PHP
30 lines
805 B
PHP
<?php
|
|
require_once __DIR__ . '/../../connect.php';
|
|
|
|
$email = filterRequest("email");
|
|
|
|
$headers = "MIME-Version: 1.0" . "\r\n";
|
|
$headers .= "Content-type: text/html; charset=UTF-8" . "\r\n";
|
|
$headers .= "From: SEFER Team" . "\r\n";
|
|
|
|
// Create the email subject and body
|
|
$subject = 'Your SEFER account has been deleted';
|
|
$body = '
|
|
|
|
Dear passenger,
|
|
|
|
We are sorry to see you go, but we respect your decision to delete your SEFER account.
|
|
|
|
We would like to thank you for using our platform and for being a part of the SEFER community. We hope that you had a positive experience and that we were able to make your travels easier and more enjoyable.
|
|
|
|
If you have any questions or concerns, please do not hesitate to contact us.
|
|
|
|
Sincerely,
|
|
|
|
The SEFER Team
|
|
';
|
|
|
|
// Send the email
|
|
mail($email, $subject, $body);
|
|
|
|
?>
|