vendor/uvdesk/core-framework/Services/EmailService.php line 39

Open in your IDE?
  1. <?php
  2. namespace Webkul\UVDesk\CoreFrameworkBundle\Services;
  3. use Doctrine\ORM\EntityManagerInterface;
  4. use Symfony\Component\DependencyInjection\ContainerInterface;
  5. use Symfony\Component\HttpFoundation\RequestStack;
  6. use Symfony\Component\HttpFoundation\Session\SessionInterface;
  7. use Symfony\Component\Mailer\Transport;
  8. use Symfony\Component\Mime\Email;
  9. use Symfony\Component\Mime\Address;
  10. use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
  11. use Webkul\UVDesk\CoreFrameworkBundle\Entity\EmailTemplates;
  12. use Webkul\UVDesk\CoreFrameworkBundle\Entity\Microsoft\MicrosoftApp;
  13. use Webkul\UVDesk\CoreFrameworkBundle\Entity\Microsoft\MicrosoftAccount;
  14. use Webkul\UVDesk\CoreFrameworkBundle\Entity\Ticket;
  15. use Webkul\UVDesk\CoreFrameworkBundle\Entity\User;
  16. use Webkul\UVDesk\CoreFrameworkBundle\Entity\Website;
  17. use Webkul\UVDesk\CoreFrameworkBundle\Utils\Microsoft\Graph as MicrosoftGraph;
  18. use Webkul\UVDesk\CoreFrameworkBundle\Utils\TokenGenerator;
  19. use Webkul\UVDesk\MailboxBundle\Services\MailboxService;
  20. use Webkul\UVDesk\MailboxBundle\Utils\SMTP\Transport\AppTransportConfigurationInterface;
  21. use Webkul\UVDesk\CoreFrameworkBundle\Services\MicrosoftIntegration;
  22. class EmailService
  23. {
  24.     private $request;
  25.     private $container;
  26.     private $entityManager;
  27.     private $session;
  28.     private $mailer;
  29.     public function __construct(ContainerInterface $containerRequestStack $requestEntityManagerInterface $entityManagerSessionInterface $sessionMailboxService $mailboxServiceMicrosoftIntegration $microsoftIntegration)
  30.     {
  31.         $this->request $request;
  32.         $this->container $container;
  33.         $this->entityManager $entityManager;
  34.         $this->session $session;
  35.         $this->mailboxService $mailboxService;
  36.         $this->microsoftIntegration $microsoftIntegration;
  37.     }
  38.     public function trans($text)
  39.     {
  40.         return $this->container->get('translator')->trans($text);
  41.     }
  42.     public function getEmailPlaceHolders($params)
  43.     {
  44.         $placeHolders = [];
  45.         $allEmailPlaceholders = [];
  46.         $template is_array($params) ? ($params['match'] . 'Note') : (!empty($params) ? $params 'template');
  47.         if ($template == 'template') {
  48.             $placeHolders = [
  49.                 'ticket' => [
  50.                     'id' => [
  51.                         'title' => $this->trans('Ticket Id'),
  52.                         'info'  => $this->trans('ticket.id.placeHolders.info'),
  53.                     ],
  54.                     'subject' => [
  55.                         'title' => $this->trans('Ticket Subject'),
  56.                         'info'  => $this->trans('ticket.subject.placeHolders.info'),
  57.                     ],
  58.                     'message' => [
  59.                         'title' => $this->trans('Ticket Message'),
  60.                         'info'  => $this->trans('ticket.message.placeHolders.info'),
  61.                     ],
  62.                     'attachments' => [
  63.                         'title' => $this->trans('Ticket Attachments'),
  64.                         'info'  => $this->trans('ticket.attachments.placeHolders.info'),
  65.                     ],
  66.                     'threadMessage' => [
  67.                         'title' => $this->trans('Ticket Thread Message'),
  68.                         'info'  => $this->trans('ticket.threadMessage.placeHolders.info'),
  69.                     ],
  70.                     'tags' => [
  71.                         'title' => $this->trans('Ticket Tags'),
  72.                         'info'  => $this->trans('ticket.tags.placeHolders.info'),
  73.                     ],
  74.                     'source' => [
  75.                         'title' => $this->trans('Ticket Source'),
  76.                         'info'  => $this->trans('ticket.source.placeHolders.info'),
  77.                     ],
  78.                     'status' => [
  79.                         'title' => $this->trans('Ticket Status'),
  80.                         'info'  => $this->trans('ticket.status.placeHolders.info'),
  81.                     ],
  82.                     'priority' => [
  83.                         'title' => $this->trans('Ticket Priority'),
  84.                         'info'  => $this->trans('ticket.priority.placeHolders.info'),
  85.                     ],
  86.                     'group' => [
  87.                         'title' => $this->trans('Ticket Group'),
  88.                         'info'  => $this->trans('ticket.group.placeHolders.info'),
  89.                     ],
  90.                     'team' => [
  91.                         'title' => $this->trans('Ticket Team'),
  92.                         'info'  => $this->trans('ticket.team.placeHolders.info'),
  93.                     ],
  94.                     'customerName' => [
  95.                         'title' => $this->trans('Ticket Customer Name'),
  96.                         'info'  => $this->trans('ticket.customerName.placeHolders.info'),
  97.                     ],
  98.                     'customerEmail' => [
  99.                         'title' => $this->trans('Ticket Customer Email'),
  100.                         'info'  => $this->trans('ticket.customerEmail.placeHolders.info'),
  101.                     ],
  102.                     'agentName' => [
  103.                         'title' => $this->trans('Ticket Agent Name'),
  104.                         'info'  => $this->trans('ticket.agentName.placeHolders.info'),
  105.                     ],
  106.                     'agentEmail' => [
  107.                         'title' => $this->trans('Ticket Agent Email'),
  108.                         'info'  => $this->trans('ticket.agentEmail.placeHolders.info'),
  109.                     ],
  110.                     'agentLink' => [
  111.                         'title' => $this->trans('Ticket Agent Link'),
  112.                         'info'  => $this->trans('ticket.link.placeHolders.info'),
  113.                     ],
  114.                     'customerLink' => [
  115.                         'title' => $this->trans('Ticket Customer Link'),
  116.                         'info'  => $this->trans('ticket.link.placeHolders.info'),
  117.                     ],
  118.                     'collaboratorName' => [
  119.                         'title' => $this->trans('Last Collaborator Name'),
  120.                         'info'  => $this->trans('ticket.collaborator.name.placeHolders.info'),
  121.                     ],
  122.                     'collaboratorEmail' => [
  123.                         'title' => $this->trans('Last Collaborator Email'),
  124.                         'info'  => $this->trans('ticket.collaborator.email.placeHolders.info'),
  125.                     ],
  126.                 ],
  127.                 'user'  => [
  128.                     'userName' => [
  129.                         'title' => $this->trans('Agent/ Customer Name'),
  130.                         'info'  => $this->trans('user.name.info'),
  131.                     ],
  132.                     'userEmail' => [
  133.                         'title' => $this->trans('Email'),
  134.                         'info'  => $this->trans('user.email.info'),
  135.                     ],
  136.                     'accountValidationLink' => [
  137.                         'title' => $this->trans('Account Validation Link'),
  138.                         'info'  => $this->trans('user.account.validate.link.info'),
  139.                     ],
  140.                     'forgotPasswordLink' => [
  141.                         'title' => $this->trans('Password Forgot Link'),
  142.                         'info'  => $this->trans('user.password.forgot.link.info'),
  143.                     ],
  144.                 ],
  145.                 'global' => [
  146.                     'companyName' => [
  147.                         'title' => $this->trans('Company Name'),
  148.                         'info'  => $this->trans('global.companyName'),
  149.                     ],
  150.                     'companyLogo' => [
  151.                         'title' => $this->trans('Company Logo'),
  152.                         'info'  => $this->trans('global.companyLogo'),
  153.                     ],
  154.                     'companyUrl' => [
  155.                         'title' => $this->trans('Company URL'),
  156.                         'info'  => $this->trans('global.companyUrl'),
  157.                     ],
  158.                 ],
  159.             ];
  160.         } elseif ($template == 'savedReply') {
  161.             $placeHolders = [
  162.                 'ticket' => [
  163.                     'id' => [
  164.                         'title' => $this->trans('Ticket Id'),
  165.                         'info'  => $this->trans('ticket.id.placeHolders.info'),
  166.                     ],
  167.                     'subject' => [
  168.                         'title' => $this->trans('Ticket Subject'),
  169.                         'info'  => $this->trans('ticket.subject.placeHolders.info'),
  170.                     ],
  171.                     'status' => [
  172.                         'title' => $this->trans('Ticket Status'),
  173.                         'info'  => $this->trans('ticket.status.placeHolders.info'),
  174.                     ],
  175.                     'priority' => [
  176.                         'title' => $this->trans('Ticket Priority'),
  177.                         'info'  => $this->trans('ticket.priority.placeHolders.info'),
  178.                     ],
  179.                     'group' => [
  180.                         'title' => $this->trans('Ticket Group'),
  181.                         'info'  => $this->trans('ticket.group.placeHolders.info'),
  182.                     ],
  183.                     'team' => [
  184.                         'title' => $this->trans('Ticket Team'),
  185.                         'info'  => $this->trans('ticket.team.placeHolders.info'),
  186.                     ],
  187.                     'customerName' => [
  188.                         'title' => $this->trans('Ticket Customer Name'),
  189.                         'info'  => $this->trans('ticket.customerName.placeHolders.info'),
  190.                     ],
  191.                     'customerEmail' => [
  192.                         'title' => $this->trans('Ticket Customer Email'),
  193.                         'info'  => $this->trans('ticket.customerEmail.placeHolders.info'),
  194.                     ],
  195.                     'agentName' => [
  196.                         'title' => $this->trans('Ticket Agent Name'),
  197.                         'info'  => $this->trans('ticket.agentName.placeHolders.info'),
  198.                     ],
  199.                     'agentEmail' => [
  200.                         'title' => $this->trans('Ticket Agent Email'),
  201.                         'info'  => $this->trans('ticket.agentEmail.placeHolders.info'),
  202.                     ],
  203.                     'link' => [
  204.                         'title' => $this->trans('Ticket Link'),
  205.                         'info'  => $this->trans('ticket.link.placeHolders.info'),
  206.                     ],
  207.                 ],
  208.             ];
  209.         } elseif ($template == 'ticketNote') {
  210.             $placeHolders = [
  211.                 'type' => [
  212.                     'previousType' => [
  213.                         'title' => $this->trans('Previous Type'),
  214.                         'info'  => $this->trans('type.previous.placeHolders.info'),
  215.                     ],
  216.                     'updatedType' => [
  217.                         'title' => $this->trans('Updated Type'),
  218.                         'info'  => $this->trans('type.updated.placeHolders.info'),
  219.                     ],
  220.                 ],
  221.                 'status' => [
  222.                     'previousStatus' => [
  223.                         'title' => $this->trans('Previous Status'),
  224.                         'info'  => $this->trans('status.previous.placeHolders.info'),
  225.                     ],
  226.                     'updatedStatus' => [
  227.                         'title' => $this->trans('Updated Status'),
  228.                         'info'  => $this->trans('status.updated.placeHolders.info'),
  229.                     ],
  230.                 ],
  231.                 'group' => [
  232.                     'previousGroup' => [
  233.                         'title' => $this->trans('Previous Group'),
  234.                         'info'  => $this->trans('group.previous.placeHolders.info'),
  235.                     ],
  236.                     'updatedGroup' => [
  237.                         'title' => $this->trans('Updated Group'),
  238.                         'info'  => $this->trans('group.updated.placeHolders.info'),
  239.                     ],
  240.                 ],
  241.                 'team' => [
  242.                     'previousTeam' => [
  243.                         'title' => $this->trans('Previous Team'),
  244.                         'info'  => $this->trans('team.previous.placeHolders.info'),
  245.                     ],
  246.                     'updatedTeam' => [
  247.                         'title' => $this->trans('Updated Team'),
  248.                         'info'  => $this->trans('team.updated.placeHolders.info'),
  249.                     ],
  250.                 ],
  251.                 'priority' => [
  252.                     'previousPriority' => [
  253.                         'title' => $this->trans('Previous Priority'),
  254.                         'info'  => $this->trans('priority.previous.placeHolders.info'),
  255.                     ],
  256.                     'updatedPriority' => [
  257.                         'title' => $this->trans('Updated Priority'),
  258.                         'info'  => $this->trans('priority.updated.placeHolders.info'),
  259.                     ],
  260.                 ],
  261.                 'agent' => [
  262.                     'previousAgent' => [
  263.                         'title' => $this->trans('Previous Agent'),
  264.                         'info'  => $this->trans('agent.previous.placeHolders.info'),
  265.                     ],
  266.                     'updatedAgent' => [
  267.                         'title' => $this->trans('Updated Agent'),
  268.                         'info'  => $this->trans('agent.updated.placeHolders.info'),
  269.                     ],
  270.                     'responsePerformingAgent' => [
  271.                         'title' => $this->trans('Response Performing Agent'),
  272.                         'info'  => $this->trans('agent.response.placeHolders.info'),
  273.                     ],
  274.                 ],
  275.             ];
  276.         } elseif($template == 'manualNote') {
  277.             $placeHolders = [
  278.                 'ticket' => [
  279.                     'id' => [
  280.                         'title' => $this->trans('Ticket Id'),
  281.                         'info'  => $this->trans('ticket.id.placeHolders.info'),
  282.                     ],
  283.                     'subject' => [
  284.                         'title' => $this->trans('Ticket Subject'),
  285.                         'info'  => $this->trans('ticket.subject.placeHolders.info'),
  286.                     ],
  287.                     'status' => [
  288.                         'title' => $this->trans('Ticket Status'),
  289.                         'info'  => $this->trans('ticket.status.placeHolders.info'),
  290.                     ],
  291.                     'priority' => [
  292.                         'title' => $this->trans('Ticket Priority'),
  293.                         'info'  => $this->trans('ticket.priority.placeHolders.info'),
  294.                     ],
  295.                     'group' => [
  296.                         'title' => $this->trans('Ticket Group'),
  297.                         'info'  => $this->trans('ticket.group.placeHolders.info'),
  298.                     ],
  299.                     'team' => [
  300.                         'title' => $this->trans('Ticket Team'),
  301.                         'info'  => $this->trans('ticket.team.placeHolders.info'),
  302.                     ],
  303.                     'customerName' => [
  304.                         'title' => $this->trans('Ticket Customer Name'),
  305.                         'info'  => $this->trans('ticket.customerName.placeHolders.info'),
  306.                     ],
  307.                     'customerEmail' => [
  308.                         'title' => $this->trans('Ticket Customer Email'),
  309.                         'info'  => $this->trans('ticket.customerEmail.placeHolders.info'),
  310.                     ],
  311.                     'agentName' => [
  312.                         'title' => $this->trans('Ticket Agent Name'),
  313.                         'info'  => $this->trans('ticket.agentName.placeHolders.info'),
  314.                     ],
  315.                     'agentEmail' => [
  316.                         'title' => $this->trans('Ticket Agent Email'),
  317.                         'info'  => $this->trans('ticket.agentEmail.placeHolders.info'),
  318.                     ],
  319.                 ],
  320.             ];
  321.         }
  322.         return $placeHolders;
  323.     }
  324.     public function getEmailPlaceholderValues(User $user$userType 'member')
  325.     {
  326.         if (null == $user->getVerificationCode()) {
  327.             // Set user verification code
  328.             $user->setVerificationCode(TokenGenerator::generateToken());
  329.             $this->entityManager->persist($user);
  330.             $this->entityManager->flush();
  331.         }
  332.         $router $this->container->get('router');
  333.         $helpdeskWebsite $this->entityManager->getRepository(Website::class)->findOneByCode('helpdesk');
  334.         // Link to company knowledgebase
  335.         if (false == array_key_exists('UVDeskSupportCenterBundle'$this->container->getParameter('kernel.bundles'))) {
  336.             $companyURL $this->container->getParameter('uvdesk.site_url');
  337.         } else {
  338.             $companyURL $router->generate('helpdesk_knowledgebase', [], UrlGeneratorInterface::ABSOLUTE_URL);
  339.         }
  340.         // Resolve path to helpdesk brand image
  341.         $companyLogoURL sprintf('http://%s%s'$this->container->getParameter('uvdesk.site_url'), '/bundles/uvdeskcoreframework/images/uv-avatar-uvdesk.png');
  342.         $helpdeskKnowledgebaseWebsite $this->entityManager->getRepository(Website::class)->findOneByCode('knowledgebase');
  343.         if (!empty($helpdeskKnowledgebaseWebsite) && null != $helpdeskKnowledgebaseWebsite->getLogo()) {
  344.             $companyLogoURL sprintf('http://%s%s'$this->container->getParameter('uvdesk.site_url'), $helpdeskKnowledgebaseWebsite->getLogo());
  345.         }
  346.         
  347.         // Link to update account login credentials
  348.         $updateCredentialsURL $router->generate'helpdesk_update_account_credentials', [
  349.             'email' => $user->getEmail(),
  350.             'verificationCode' => $user->getVerificationCode(),
  351.         ], UrlGeneratorInterface::ABSOLUTE_URL);
  352.         $placeholderParams = [
  353.             'user.userName'              => $user->getFullName(),
  354.             'user.userEmail'             => $user->getEmail(),
  355.             'user.assignUserEmail'       => $user->getEmail(),
  356.             'user.forgotPasswordLink'    => "<a href='$updateCredentialsURL'>$updateCredentialsURL</a>",
  357.             'user.accountValidationLink' => "<a href='$updateCredentialsURL'>$updateCredentialsURL</a>",
  358.             'global.companyName'         => $helpdeskWebsite->getName(),
  359.             'global.companyLogo'         => "<img style='max-height:60px' src='$companyLogoURL'/>",
  360.             'global.companyUrl'          => "<a href='$companyURL'>$companyURL</a>",
  361.         ];
  362.         
  363.         return $placeholderParams;
  364.     }
  365.     public function getTicketPlaceholderValues(Ticket $ticket$type "")
  366.     {
  367.         $supportTeam $ticket->getSupportTeam();
  368.         $supportGroup $ticket->getSupportGroup();
  369.         $supportTags array_map(function ($supportTag) { return $supportTag->getName(); }, $ticket->getSupportTags()->toArray());
  370.         
  371.         $router $this->container->get('router');
  372.         $helpdeskWebsite $this->entityManager->getRepository(Website::class)->findOneByCode('helpdesk');
  373.         
  374.         // Resolve path to helpdesk brand image
  375.         $companyLogoURL sprintf('http://%s%s'$this->container->getParameter('uvdesk.site_url'), '/bundles/uvdeskcoreframework/images/uv-avatar-uvdesk.png');
  376.         $helpdeskKnowledgebaseWebsite $this->entityManager->getRepository(Website::class)->findOneByCode('knowledgebase');
  377.         if (!empty($helpdeskKnowledgebaseWebsite) && null != $helpdeskKnowledgebaseWebsite->getLogo()) {
  378.             $companyLogoURL sprintf('http://%s%s'$this->container->getParameter('uvdesk.site_url'), $helpdeskKnowledgebaseWebsite->getLogo());
  379.         }
  380.         
  381.         // Link to company knowledgebase
  382.         if (false == array_key_exists('UVDeskSupportCenterBundle'$this->container->getParameter('kernel.bundles'))) {
  383.             $companyURL $this->container->getParameter('uvdesk.site_url');
  384.         } else {
  385.             $companyURL $router->generate('helpdesk_knowledgebase', [], UrlGeneratorInterface::ABSOLUTE_URL);
  386.         }
  387.         $customerPartialDetails $ticket->getCustomer()->getCustomerInstance()->getPartialDetails();
  388.         $agentPartialDetails $ticket->getAgent() ? $ticket->getAgent()->getAgentInstance()->getPartialDetails() : null;
  389.         //Ticket Url and create ticket url for agent
  390.         $viewTicketURLAgent $router->generate('helpdesk_member_ticket', [
  391.             'ticketId' => $ticket->getId(),
  392.         ], UrlGeneratorInterface::ABSOLUTE_URL);
  393.         $generateTicketURLAgent $router->generate('helpdesk_member_create_ticket', [], UrlGeneratorInterface::ABSOLUTE_URL);
  394.         if (false != array_key_exists('UVDeskSupportCenterBundle'$this->container->getParameter('kernel.bundles'))) {
  395.                 $viewTicketURL $router->generate('helpdesk_customer_ticket', [
  396.                     'id' => $ticket->getId(),
  397.                 ], UrlGeneratorInterface::ABSOLUTE_URL);
  398.     
  399.                 $generateTicketURLCustomer $router->generate('helpdesk_customer_create_ticket', [], UrlGeneratorInterface::ABSOLUTE_URL);
  400.         } else {
  401.             $viewTicketURL '';
  402.             $generateTicketURLCustomer '';
  403.         }
  404.         $placeholderParams = [
  405.             'ticket.id'                        => $ticket->getId(),
  406.             'ticket.subject'                   => $ticket->getSubject(),
  407.             'ticket.message'                   => (count($ticket->getThreads())) > preg_replace("/<img[^>]+\>/i"""$ticket->getThreads()->get(0)->getMessage()) : preg_replace("/<img[^>]+\>/i"""$this->container->get('ticket.service')->getInitialThread($ticket->getId())->getMessage()),
  408.             'ticket.threadMessage'             => $this->threadMessage($ticket),
  409.             'ticket.tags'                      => implode(','$supportTags),
  410.             'ticket.source'                    => ucfirst($ticket->getSource()),
  411.             'ticket.status'                    => $ticket->getStatus()->getDescription(),
  412.             'ticket.priority'                  => $ticket->getPriority()->getDescription(),
  413.             'ticket.team'                      => $supportTeam $supportTeam->getName() : '',
  414.             'ticket.group'                     => $supportGroup $supportGroup->getName() : '',
  415.             'ticket.customerName'              => $customerPartialDetails['name'],
  416.             'ticket.customerEmail'             => $customerPartialDetails['email'],
  417.             'ticket.agentName'                 => !empty($agentPartialDetails) ? $agentPartialDetails['name'] : '',
  418.             'ticket.agentEmail'                => !empty($agentPartialDetails) ? $agentPartialDetails['email'] : '',
  419.             'ticket.attachments'               => '',
  420.             'ticket.collaboratorName'          => $this->getCollaboratorName($ticket),
  421.             'ticket.collaboratorEmail'         => $this->getCollaboratorEmail($ticket),
  422.             'ticket.agentLink'                 => sprintf("<a href='%s'>#%s</a>"$viewTicketURLAgent$ticket->getId()),
  423.             'ticket.ticketGenerateUrlAgent'    => sprintf("<a href='%s'>click here</a>"$generateTicketURLAgent),
  424.             'ticket.customerLink'              => sprintf("<a href='%s'>#%s</a>"$viewTicketURL$ticket->getId()),
  425.             'ticket.ticketGenerateUrlCustomer' => sprintf("<a href='%s'>click here</a>"$generateTicketURLCustomer),
  426.             'global.companyName'               => $helpdeskWebsite->getName(),
  427.             'global.companyLogo'               => "<img style='max-height:60px' src='$companyLogoURL'/>",
  428.             'global.companyUrl'                => "<a href='$companyURL'>$companyURL</a>",
  429.         ];
  430.         return $placeholderParams;
  431.     }
  432.     public function threadMessage($ticket)
  433.     {
  434.         $message null;
  435.         if (isset($ticket->createdThread) && $ticket->createdThread->getThreadType() != "note") {
  436.             return preg_replace("/<img[^>]+\>/i"""$ticket->createdThread->getMessage());
  437.         } elseif (isset($ticket->currentThread) && $ticket->currentThread->getThreadType() != "note") {
  438.             return  preg_replace("/<img[^>]+\>/i"""$ticket->currentThread->getMessage());
  439.         } else {
  440.             $messages $ticket->getThreads();
  441.             for ($i count($messages) - $i >= 0  $i--) { 
  442.                 if (isset($messages[$i]) && $messages[$i]->getThreadType() != "note") {
  443.                     return preg_replace("/<img[^>]+\>/i"""$messages[$i]->getMessage());
  444.                 }
  445.             }
  446.         }
  447.         return "";
  448.     }
  449.     public function processEmailSubject($subject, array $emailPlaceholders = [])
  450.     {
  451.         foreach ($emailPlaceholders as $var => $value) {
  452.             $subject strtr($subject, ["{%$var%}" => $value"{% $var %}" => $value]);
  453.         }
  454.         
  455.         return $subject;
  456.     }
  457.     public function processEmailContent($content, array $emailPlaceholders = [], $isSavedReply false)
  458.     {
  459.         $twigTemplatingEngine $this->container->get('twig');
  460.         $baseEmailTemplate $this->container->getParameter('uvdesk.default.templates.email');
  461.         foreach ($emailPlaceholders as $var => $value) {
  462.             $content strtr($content, ["{%$var%}" => $value"{% $var %}" => $value]);
  463.         }
  464.         $content $isSavedReply stripslashes($content) : htmlspecialchars_decode(preg_replace(['#&lt;script&gt;#''#&lt;/script&gt;#'], ['&amp;lt;script&amp;gt;''&amp;lt;/script&amp;gt;'], $content));
  465.         
  466.         return $twigTemplatingEngine->render($baseEmailTemplate, ['message' => $content]);
  467.     }
  468.     public function sendMail($subject$content$recipient, array $headers = [], $mailboxEmail null, array $attachments = [], $cc = [], $bcc = [])
  469.     {
  470.         $mailer_type $this->container->getParameter('uvdesk.support_email.mailer_type');
  471.         if (empty($mailboxEmail)) {
  472.             // Send email on behalf of support helpdesk
  473.             $supportEmail $this->container->getParameter('uvdesk.support_email.id');
  474.             $supportEmailName $this->container->getParameter('uvdesk.support_email.name');
  475.             $mailerID $this->container->getParameter('uvdesk.support_email.mailer_id');
  476.         } else {
  477.             // Register automations conditionally if AutomationBundle has been added as an dependency.
  478.             if (!array_key_exists('UVDeskMailboxBundle'$this->container->getParameter('kernel.bundles'))) {
  479.                 return;
  480.             } else {
  481.                 // Send email on behalf of configured mailbox
  482.                 try {
  483.                     $mailbox $this->container->get('uvdesk.mailbox')->getMailboxByEmail($mailboxEmail);
  484.                     if (true === $mailbox['enabled']) {
  485.                         if ($mailer_type == 'swiftmailer_id') {
  486.                             $supportEmail $mailbox['email'];
  487.                             $supportEmailName $mailbox['name'];
  488.                             $mailerID $mailbox['smtp_swift_mailer_server']['mailer_id'];
  489.                         } else {
  490.                             $supportEmail $mailbox['email'];
  491.                             $supportEmailName $mailbox['name'];
  492.                             $mailerID $this->container->getParameter('uvdesk.support_email.mailer_id');
  493.                         }
  494.                     } else {
  495.                         return;
  496.                     }
  497.                 } catch (\Exception $e) {
  498.                     // @TODO: Log exception - Mailbox not found
  499.                     return;
  500.                 }
  501.             }
  502.         }
  503.         // Send emails only if any mailer configuration is available
  504.         $mailer null;
  505.         $mailboxConfigurations $this->mailboxService->parseMailboxConfigurations();
  506.         
  507.         if ($mailer_type != 'swiftmailer_id') {
  508.             $mailbox $mailboxConfigurations->getMailboxById($mailerID);
  509.             if (!$mailbox) {
  510.                 return;
  511.             }
  512.             $mailboxSmtpConfiguration $mailbox?->getSmtpConfiguration();
  513.         }
  514.         if ($mailer_type == 'swiftmailer_id') {
  515.             // Retrieve mailer to be used for sending emails
  516.             try {
  517.                 $mailer $this->container->get('swiftmailer.mailer' . (('default' == $mailerID) ? '' ".$mailerID"));
  518.                 $mailer->getTransport()->setPassword(base64_decode($mailer->getTransport()->getPassword()));
  519.             } catch (\Exception $e) {
  520.                 // @TODO: Log exception - Mailer not found
  521.                 return;
  522.             }
  523.             // Format email address collections
  524.             $ccAddresses = [];
  525.             foreach ($cc as $_emailAddress) {
  526.                 if (strpos($_emailAddress"<") !== false && strpos($_emailAddress">") !== false) {
  527.                     $_recipientName trim(substr($_emailAddress0strpos($_emailAddress"<")));
  528.                     $_recipientAddress substr($_emailAddressstrpos($_emailAddress"<") + 1);
  529.                     $_recipientAddress substr($_recipientAddress0strpos($_recipientAddress">"));
  530.                     $ccAddresses[$_recipientAddress] = $_recipientName;
  531.                 } else {
  532.                     $ccAddresses[] = $_emailAddress;
  533.                 }
  534.             }
  535.             $bccAddresses = [];
  536.             foreach ($bcc as $_emailAddress) {
  537.                 if (strpos($_emailAddress"<") !== false && strpos($_emailAddress">") !== false) {
  538.                     $_recipientName trim(substr($_emailAddress0strpos($_emailAddress"<")));
  539.                     $_recipientAddress substr($_emailAddressstrpos($_emailAddress"<") + 1);
  540.                     $_recipientAddress substr($_recipientAddress0strpos($_recipientAddress">"));
  541.                     $bccAddresses[$_recipientAddress] = $_recipientName;
  542.                 } else {
  543.                     $bccAddresses[] = $_emailAddress;
  544.                 }
  545.             }
  546.             // Create a message
  547.             $message = (new \Swift_Message($subject))
  548.                 ->setFrom([$supportEmail => $supportEmailName])
  549.                 ->setTo($recipient)
  550.                 ->setBcc($bccAddresses)
  551.                 ->setCc($ccAddresses)
  552.                 ->setBody($content'text/html')
  553.                 ->addPart(strip_tags($content), 'text/plain')
  554.             ;
  555.             foreach ($attachments as $attachment) {
  556.                 if (!empty($attachment['path']) && !empty($attachment['name'])) {
  557.                     $message->attach(\Swift_Attachment::fromPath($attachment['path'])->setFilename($attachment['name']));
  558.                     continue;
  559.                 }
  560.                 $message->attach(\Swift_Attachment::fromPath($attachment));
  561.             }
  562.             $messageHeaders $message->getHeaders();
  563.             foreach ($headers as $headerName => $headerValue) {
  564.                 if (is_array($headerValue) && !empty($headerValue['messageId'])) {
  565.                     $headerValue $headerValue['messageId'];
  566.                 }
  567.                 if (is_array($headerValue) || empty($headerValue)) {
  568.                     continue; // Skip arrays that don't have a 'messageId'.
  569.                 }
  570.             
  571.                 $messageHeaders->addTextHeader($headerName$headerValue);
  572.             }
  573.             try {
  574.                 $messageId $message->getId();
  575.                 $mailer->send($message);
  576.                 return "<$messageId>";
  577.             } catch (\Exception $e) {
  578.                 // @TODO: Log exception
  579.                 $this->session->getFlashBag()->add('warning'$this->trans('Warning! Swiftmailer not working. An error has occurred while sending emails!'));
  580.             }
  581.             return null;
  582.         } else {
  583.             // Prepare email
  584.             $email = new Email();
  585.             $email
  586.                 ->from(new Address($supportEmail$supportEmailName))
  587.                 ->subject($subject)
  588.                 ->text(strip_tags($content))
  589.                 ->html($content)
  590.             ;
  591.             // Manage email recipients
  592.             if (!empty($recipient)) {
  593.                 $email->to($recipient);
  594.             }
  595.             foreach ($cc as $emailAddress) {
  596.                 $email->addCc($emailAddress);
  597.             }
  598.             foreach ($bcc as $emailAddress) {
  599.                 $email->addBcc($emailAddress);
  600.             }
  601.             // Manage email attachments
  602.             foreach ($attachments as $attachment) {
  603.                 if (!empty($attachment['path']) && !empty($attachment['name'])) {
  604.                     $email->attachFromPath($attachment['path'], $attachment['name']);
  605.                     
  606.                     continue;
  607.                 } 
  608.                 $email->attachFromPath($attachment);
  609.             }
  610.             // Configure email headers
  611.             $emailHeaders $email->getHeaders();
  612.             foreach ($headers as $name => $value) {
  613.                 if (is_array($value) && ! empty($value['messageId'])) {
  614.                     $value $value['messageId'];
  615.                 }
  616.             
  617.                 if (is_array($value) || empty($value)) {
  618.                     continue; // Skip arrays that don't have a 'messageId'.
  619.                 }
  620.             
  621.                 $emailHeaders->addTextHeader($name$value);
  622.             }
  623.             // Send email
  624.             $messageId null;
  625.             try {
  626.                 if ($mailboxSmtpConfiguration instanceof AppTransportConfigurationInterface) {
  627.                     $microsoftApp $this->entityManager->getRepository(MicrosoftApp::class)->findOneByClientId($mailboxSmtpConfiguration->getClient());
  628.                     if (empty($microsoftApp)) {
  629.                         $this->session->getFlashBag()->add('warning'$this->trans('An unexpected error occurred while trying to send email. Please try again later.'));
  630.                         $this->session->getFlashBag()->add('warning'$this->trans('No associated microsoft apps were found for configured mailbox.'));
  631.     
  632.                         return null;
  633.                     }
  634.                     $microsoftAccount $this->entityManager->getRepository(MicrosoftAccount::class)->findOneBy([
  635.                         'email'        => $mailboxSmtpConfiguration->getUsername(), 
  636.                         'microsoftApp' => $microsoftApp
  637.                     ]);
  638.     
  639.                     if (empty($microsoftAccount)) {
  640.                         $this->session->getFlashBag()->add('warning'$this->trans('An unexpected error occurred while trying to send email. Please try again later.'));
  641.                         $this->session->getFlashBag()->add('warning'$this->trans('No associated microsoft account was found for configured mailbox.'));
  642.     
  643.                         return null;
  644.                     }
  645.                     $credentials json_decode($microsoftAccount->getCredentials(), true);
  646.                     $emailParams = [
  647.                         'subject' => $subject
  648.                         'body' => [
  649.                             'contentType' => 'HTML'
  650.                             'content'     => $content
  651.                         ], 
  652.                         'toRecipients' => [
  653.                             [
  654.                                 'emailAddress' => [
  655.                                     'address' => $recipient
  656.                                 ], 
  657.                             ], 
  658.                         ], 
  659.                     ];
  660.                     foreach ($headers as $name => $value) {
  661.                         if ($name == 'X-Transport' || empty($value)) {
  662.                             continue;
  663.                         }
  664.                         if (is_array($value)) {
  665.                             $value $value['messageId'];
  666.                         }
  667.                         $emailParams['internetMessageHeaders'][] = [
  668.                             'name' => "x-$name"
  669.                             'value' => $value
  670.                         ];
  671.                     }
  672.                     $graphResponse MicrosoftGraph\Me::sendMail($credentials['access_token'], $emailParams);
  673.                     // Refresh access token if expired
  674.                     if (!empty($graphResponse['error'])) {
  675.                         if (!empty($graphResponse['error']['code']) && $graphResponse['error']['code'] == 'InvalidAuthenticationToken') {
  676.                             $tokenResponse $this->microsoftIntegration->refreshAccessToken($microsoftApp$credentials['refresh_token']);
  677.                             if (!empty($tokenResponse['access_token'])) {
  678.                                 $microsoftAccount
  679.                                     ->setCredentials(json_encode($tokenResponse))
  680.                                 ;
  681.                                 
  682.                                 $this->entityManager->persist($microsoftAccount);
  683.                                 $this->entityManager->flush();
  684.                                 
  685.                                 $credentials json_decode($microsoftAccount->getCredentials(), true);
  686.                                 $graphResponse MicrosoftGraph\Me::sendMail($credentials['access_token'], $emailParams);
  687.                             }
  688.                         }
  689.                     }
  690.                 } else {
  691.                     $dsn strtr("smtp://{email}:{password}@{host}:{port}", [
  692.                         "{email}"    => $mailboxSmtpConfiguration->getUsername(), 
  693.                         "{password}" => $mailboxSmtpConfiguration->getPassword(), 
  694.                         "{host}"     => $mailboxSmtpConfiguration->getHost(), 
  695.                         "{port}"     => $mailboxSmtpConfiguration->getPort(), 
  696.                     ]);
  697.                     if (false == $mailbox->getIsStrictModeEnabled()) {
  698.                         $dsn .= "?verify_peer=0";
  699.                     }
  700.                     $transport Transport::fromDsn($dsn);
  701.                     $sentMessage $transport->send($email);
  702.                     if (!empty($sentMessage)) {
  703.                         $messageId $sentMessage->getMessageId();
  704.                     }
  705.                 }
  706.             } catch (\Exception $e) {
  707.                 // @TODO: Log exception
  708.                 $this->session->getFlashBag()->add('warning'$this->trans('An unexpected error occurred while trying to send email. Please try again later.'));
  709.                 $this->session->getFlashBag()->add('warning'$this->trans($e->getMessage()));
  710.                 return null;
  711.             }
  712.     
  713.             return !empty($messageId) ? "<$messageId>" null;
  714.         }
  715.     }
  716.     public function getCollaboratorName($ticket)
  717.     {
  718.         $name null;
  719.         $ticket->lastCollaborator null;
  720.         if ($ticket->getCollaborators() != null && count($ticket->getCollaborators()) > 0) {
  721.             try {
  722.                 $ticket->lastCollaborator $ticket->getCollaborators()[ -count($ticket->getCollaborators()) ];
  723.             } catch(\Exception $e) {
  724.             }
  725.         }
  726.         if ($ticket->lastCollaborator != null) {
  727.             $name =  $ticket->lastCollaborator->getFirstName()." ".$ticket->lastCollaborator->getLastName();
  728.         }
  729.         
  730.         return $name != null $name '';
  731.     }
  732.     public function getCollaboratorEmail($ticket)
  733.     {
  734.         $email null;
  735.         $ticket->lastCollaborator null;
  736.         if ($ticket->getCollaborators() != null && count($ticket->getCollaborators()) > 0) {
  737.             try {
  738.                 $ticket->lastCollaborator $ticket->getCollaborators()[ -count($ticket->getCollaborators()) ];
  739.             } catch(\Exception $e) {
  740.             }
  741.         }
  742.         if ($ticket->lastCollaborator != null) {
  743.             $email $ticket->lastCollaborator->getEmail();
  744.         }
  745.         
  746.         return $email != null $email '';;
  747.     }
  748. }