i want do customize the subject of reply emails with a dynamicfield.
i found the file "Ticket.pm". there is a function that generates the subject. the function is called "TicketSubjectBuild"
how can i access a dynamic field from the ticket in this function?
at the moment it looks like this:
Code: Select all
return $TicketSubjectRe . "[$TicketHook$TicketHookDivider$Param{TicketNumber}] " . $Subject;
Code: Select all
return $TicketSubjectRe . "[$TicketHook$TicketHookDivider$Param{TicketNumber}] " . $DynamicField_Fremdnummer . " - " . $Subject;
can anyone help me?