Re: [rt-users] Get recipient with scrip

2007-05-24 Thread Sven Kloe
Hi, the correspondAddress is not what I'm searching for. I queried the DB and saw that the information is only located in the headers. Now I want to do something like this: if ($self-TransactionObj-Attachments-Headers =~ m/^To: [EMAIL PROTECTED]/i){ ... } Untortunaly I don't get a match. Is

Re: [rt-users] Get recipient with scrip

2007-05-21 Thread Fahd Sultan
this might help: $self-TicketObj-QueueObj-CorrespondAddress Sven Kloe wrote: Hi all, I am using a scrip which moves a new (email generated) ticket in another queue. This works fine if I query the Sender / Requestor, but now I have to know the recipient the To: Field (I have several email

[rt-users] Get recipient with scrip

2007-05-18 Thread Sven Kloe
Hi all, I am using a scrip which moves a new (email generated) ticket in another queue. This works fine if I query the Sender / Requestor, but now I have to know the recipient the To: Field (I have several email addresses forwarded into one of RT). How can I access the To:-value from a scrp?