Template Field Name Question

No one have any idea on this? I thought it would be quite a simple
question!

Stevo----- Original Message -----
From: Stevo
To: RT-Users@lists.bestpractical.com
Sent: Monday, May 03, 2004 1:35 PM
Subject: [rt-users] Scrip Field Name Question

Hey All,

When someone makes a change to a ticket (correspondance or comment) I have a
scrip that generates an email with those changes in it. However, the
template doesn’t actually show which RT user added the comments.

Can I add a field to my template adding the username?? If so, what’s the
field name?!

Thanks

Stevo

http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users

RT Developer and Administrator training is coming to LA, DC and Frankfurt
this spring and summer.
http://bestpractical.com/services/training.html

Sign up early, as class space is limited.

He-he. This question is simple as you said :slight_smile: so people don’t want spend
time on it :slight_smile:
Put into template:
{
my $UObj = $Transaction->CreatorObj;
$UObj->RealName || $UObj->Name . ’ <’ . $UObj->EmailAddress . ‘>’;
}

	Good luck. Ruslan.

Stevo wrote: