I am not sure if it is a best practice but you could have the template call your mechanism either through a bash script or web request:
{
my $type = $Ticket->FirstCustomFieldValue( 'Type' );
$OUT = `perl script.sh $type`;
}
I am not sure if it is a best practice but you could have the template call your mechanism either through a bash script or web request:
{
my $type = $Ticket->FirstCustomFieldValue( 'Type' );
$OUT = `perl script.sh $type`;
}