in reply to Re: meeting requests with iCalendar
in thread meeting requests with iCalendar

I took a look at Text::vFile but as far as I can tell it can only read vfiles, whereas I need to create a new one from scratch. Also, Data::ICal seems a little short on examples - do you know of any resources on it besides the POD? In particular, I haven't figured out how to create an attendee record. Cheers.

Replies are listed 'Best First'.
Re^3: meeting requests with iCalendar
by gam3 (Curate) on Feb 15, 2006 at 16:42 UTC
    Here is how I add an ATTENDEE:
    my $vevent = Data::ICal::Entry::Event->new(); $vevent->add_properties( attendee => [ 'mailto:gam3(allen)@gam3.bet', { 'CN' => 'G. Allen Morris III', 'ROLE' => 'REQ-PARTICIPANT', 'PARTSTAT' => 'NEEDS-ACTION', 'RSVP' => 'TRUE' }, ], );
    -- gam3
    A picture is worth a thousand words, but takes 200K.