On Fri, Nov 13, 2009 at 05:01:47PM +0100, Alessandra Serrau wrote:
> In order to create a custom scrip, I need to access to Attachment structure
> because I would know the value of a header of the original request message.
> 
> So I try to do in custom cleanup code block:
> my $headers = $self->TransactionObj->Attachments->Headers;
> 

$self->TransactionObj->Attachments links to multiple attachements, you
have to walk them with:

while ( my $Attachment = $self->TransactionObj->Attachments->Next ) {
    my $headers = $Attachment->Headers;
}

Or use only the first one:

my $headers = $self->TransactionObj->Attachments->First->Headers;

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

Community help: http://wiki.bestpractical.com
Commercial support: [email protected]


Discover RT's hidden secrets with RT Essentials from O'Reilly Media. 
Buy a copy at http://rtbook.bestpractical.com

Reply via email to