src/Controller/ContactController.php line 25

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\Main\Contact;
  4. use ContainerC2aw7aC\getMessenger_Transport_AsyncService;
  5. use Doctrine\ORM\EntityManagerInterface;
  6. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  7. use Symfony\Component\HttpFoundation\Request;
  8. use Symfony\Component\HttpFoundation\Response;
  9. use Symfony\Component\Routing\Annotation\Route;
  10. use Symfony\Contracts\Translation\TranslatorInterface;
  11. use Symfony\Component\Mailer\MailerInterface;
  12. use Symfony\Component\Mime\Email;
  13. class ContactController extends AbstractController
  14. {
  15.     /**
  16.      * @Route({
  17.      *     "en": "/contact-us",
  18.      *     "tr": "/iletisim"
  19.      * }, name="contact", methods={"GET","POST"})
  20.      */
  21.   
  22.     public function index(Request $requestTranslatorInterface $translatorEntityManagerInterface $manager, \Swift_Mailer $mailer): Response
  23.     {
  24.         $errorMessage null;
  25.         $successMessage null;
  26.         $fullName null;
  27.         $email null;
  28.         $subject null;
  29.         $message null;
  30.         $content null;
  31.         if ($request->getMethod() == 'POST') {
  32.             parse_str($request->getContent(), $content);
  33.             if (!isset($content['full_name']) || !$content['full_name']) {
  34.                 $fullName $translator->trans('THIS_VALUE_NOT_BE_BLANK');
  35.             }
  36.             if (!isset($content['email']) || !$content['email']) {
  37.                 $email $translator->trans('THIS_VALUE_NOT_BE_BLANK');
  38.             } else if (!is_numeric(strpos($content['email'], '@'))) {
  39.                 $email $translator->trans('THIS_VALUE_IS_NOT_CORRECT_EMAIL_ADDRESS');
  40.             }
  41.             if (!isset($content['subject']) || !$content['subject']) {
  42.                 $subject $translator->trans('THIS_VALUE_NOT_BE_BLANK');
  43.             }
  44.             if (!isset($content['message']) || !$content['message']) {
  45.                 $message $translator->trans('THIS_VALUE_NOT_BE_BLANK');
  46.             }
  47.             if (!$fullName && !$email && !$subject && !$message) {
  48.                 try {
  49.                     // SwiftMailer ile mesaj oluşturma
  50.                     $emailMessage = (new \Swift_Message('Komili İletişim Formu: ' $content['subject']))
  51.                         ->setFrom(['eitr@daiogroup.com' => 'Komili'])
  52.                         ->setTo('eitr@daiogroup.com')
  53.                         ->setBody("
  54.                             <h2>İletişim Formu</h2>
  55.                             <p><strong>İsim:</strong> {$content['full_name']}</p>
  56.                             <p><strong>Email:</strong> {$content['email']}</p>
  57.                             <p><strong>Konu:</strong> {$content['subject']}</p>
  58.                             <p><strong>Mesaj:</strong></p>
  59.                             <p>{$content['message']}</p>
  60.                         "'text/html');
  61.                     
  62.                     // Email'i gönder
  63.                     $result $mailer->send($emailMessage);
  64.                     
  65.                     // Email başarıyla gönderildiyse veritabanına kaydet
  66.                     if ($result) {
  67.                         $contact = new Contact();
  68.                         $contact->setMessage($content['message'])
  69.                             ->setEmail($content['email'])
  70.                             ->setFullName($content['full_name'])
  71.                             ->setSubject($content['subject']);
  72.                         $manager->persist($contact);
  73.                         $manager->flush();
  74.                         
  75.                         // Başarılı mesajı
  76.                         $successMessage $translator->trans('YOUR_REQUEST_HAS_BEEN_SUCCESSFULLY_SUBMITTED');
  77.                         $content null;
  78.                     } else {
  79.                         $errorMessage $translator->trans('MESSAGE_COULD_NOT_BE_SENT');
  80.                     }
  81.                 } catch (\Exception $e) {
  82.                     // Hata mesajı
  83.                     $errorMessage $translator->trans('MESSAGE_COULD_NOT_BE_SENT');
  84.                     // Hata logla
  85.                     error_log('Mail gönderim hatası: ' $e->getMessage());
  86.                 }
  87.             } else {
  88.                 $errorMessage $translator->trans('CHECK_INFORMATION_AND_TRY_AGAIN');
  89.             }
  90.         }
  91.         return $this->render('contact/index.html.twig', [
  92.             'fullName' => $fullName,
  93.             'email' => $email,
  94.             'subject' => $subject,
  95.             'message' => $message,
  96.             'errorMessage' => $errorMessage,
  97.             'successMessage' => $successMessage,
  98.             'values' => $content,
  99.         ]);
  100.     }
  101. }