diff --git a/htdocs/core/triggers/interface_50_modTicket_TicketEmail.class.php b/htdocs/core/triggers/interface_50_modTicket_TicketEmail.class.php
index bead2d3faf659..55f04a9d43e6b 100644
--- a/htdocs/core/triggers/interface_50_modTicket_TicketEmail.class.php
+++ b/htdocs/core/triggers/interface_50_modTicket_TicketEmail.class.php
@@ -77,48 +77,17 @@ public function runTrigger($action, $object, User $user, Translate $langs, Conf
if ($res > 0) {
// Send email to notification email
if (empty($conf->global->TICKET_DISABLE_ALL_MAILS)) {
-// Init to avoid errors
-// $filepath = array();
-// $filename = array();
-// $mimetype = array();
-
// Send email to assigned user
-// $subject = '['.$conf->global->MAIN_INFO_SOCIETE_NOM.'] '.$langs->transnoentities('TicketAssignedToYou');
-// $message = '
'.$langs->transnoentities('TicketAssignedEmailBody', $object->track_id, dolGetFirstLastname($user->firstname, $user->lastname))."
";
-// $message .= '- '.$langs->trans('Title').' : '.$object->subject.'
';
-// $message .= '- '.$langs->trans('Type').' : '.$object->type_label.'
';
-// $message .= '- '.$langs->trans('Category').' : '.$object->category_label.'
';
-// $message .= '- '.$langs->trans('Severity').' : '.$object->severity_label.'
';
-// // Extrafields
-// if (is_array($object->array_options) && count($object->array_options) > 0) {
-// foreach ($object->array_options as $key => $value) {
-// $message .= '- '.$langs->trans($key).' : '.$value.'
';
-// }
-// }
-//
-// $message .= '
';
-// $message .= ''.$langs->trans('Message').' :
'.$object->message.'
';
-// $message .= ''.$langs->trans('SeeThisTicketIntomanagementInterface').'
';
-
$sendto = $userstat->email;
$subject_assignee = 'TicketAssignedToYou';
$body_assignee = 'TicketAssignedEmailBody';
$see_ticket_assignee = 'SeeThisTicketIntomanagementInterface';
-// $from = dolGetFirstLastname($user->firstname, $user->lastname).'<'.$user->email.'>';
-//
-// $message = dol_nl2br($message);
if (!empty($conf->global->TICKET_DISABLE_MAIL_AUTOCOPY_TO)) {
$old_MAIN_MAIL_AUTOCOPY_TO = $conf->global->MAIN_MAIL_AUTOCOPY_TO;
$conf->global->MAIN_MAIL_AUTOCOPY_TO = '';
}
-// include_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
-// $mailfile = new CMailFile($subject, $sendto, $from, $message, $filepath, $mimetype, $filename, '', '', 0, -1);
-// if ($mailfile->error) {
-// setEventMessages($mailfile->error, $mailfile->errors, 'errors');
-// } else {
-// $result = $mailfile->sendfile();
-// }
+
if (!empty($conf->global->TICKET_DISABLE_MAIL_AUTOCOPY_TO)) {
$conf->global->MAIN_MAIL_AUTOCOPY_TO = $old_MAIN_MAIL_AUTOCOPY_TO;
}