Re: [Arsperl-users] Attachments via ars_CreateEntry

2008-07-17 Thread Steve McDonald
Thanks guys! As always, you're a big help. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Thilo Stapff Sent: Wednesday, July 16, 2008 9:34 AM To: ARSperl User Discussion Subject: Re: [Arsperl-users] Attachments via ars_CreateEntry Yes, it'

Re: [Arsperl-users] Attachments via ars_CreateEntry

2008-07-16 Thread White, Linn
f Of Steve McDonald Sent: Wednesday, July 16, 2008 12:02 PM To: ARSperl User Discussion Subject: [Arsperl-users] Attachments via ars_CreateEntry Hello! Is it possible to submit an attachment via ars_CreateEntry? I have a webform with an attachment field and would like to submit the attached file wit

Re: [Arsperl-users] Attachments via ars_CreateEntry

2008-07-16 Thread Thilo Stapff
Yes, it's possible. First, construct a data structure for the attachment: my %attachStruct = ( name => $name, size => length($buffer), buffer => $buffer, ); In this example the $buffer variable contains the attachment data. Alternatively the data structure might only refer to a file

Re: [Arsperl-users] Attachments via ars_CreateEntry

2008-07-16 Thread Richard Hellier
rsperl-users@arsperl.org> Subject: [Arsperl-users] Attachments via > ars_CreateEntry> > > Hello!> > Is it possible to submit an attachment via > ars_CreateEntry? I have a webform with an attachment field and would like to > submit the attached file with the ticket.> > T

[Arsperl-users] Attachments via ars_CreateEntry

2008-07-16 Thread Steve McDonald
Hello! Is it possible to submit an attachment via ars_CreateEntry? I have a webform with an attachment field and would like to submit the attached file with the ticket. Thanks in advance for your help. Steve - This S