Hi Rajesh,

I am thinking of using

http://www.kigkonsult.se/iCalcreator/index.php

This way I will create the ics files based on the IETF standard using
the same and then send them as as MIME type for vcalendar files -
text/x-vCalendar through the Swift Mail.

Please let me know your comments about the same.

Also I may use the sendmail or mail to send the ICS information to the
Microsoft Calender.

The example of same is given below

<?
$to = $formVars['email'];
$subject = "Training Registration";
$message = "Thank you for participating in the Technical Certification
training program.\n\n";
//==================
$headers = 'Content-Type:text/calendar; Content-Disposition: inline;
charset=utf-8;\r\n';
$headers .= "Content-Type: text/plain;charset=\"utf-8\"\r\n";
$messaje = "BEGIN:VCALENDAR\n";
$messaje .= "VERSION:2.0\n";
$messaje .= "PRODID:PHP\n";
$messaje .= "METHOD:REQUEST\n";
$messaje .= "BEGIN:VEVENT\n";
$messaje .= "DTSTART:" . $date_array[1] . $momth . $day1 . "T080000\n";
$messaje .= "DTEND:" . $date_array[1] . $momth . $day2. "T170000\n";
$messaje . "DESCRIPTION: You have registered for the class\n";
$messaje .= "SUMMARY:Technical Training\n";
$messaje .= "ORGANIZER; CN=\"Corporate\":mailto:train...@corporate.com\n";;
$messaje .= "Location:" . $location . "\n";
$messaje .= "UID:040000008200E00074C5B7101A82E00800000006FC30E6
C39DC004CA782E0C002E01A81\n";
$messaje .= "SEQUENCE:0\n";
$messaje .= "DTSTAMP:".date('Ymd').'T'.date('His')."\n";
$messaje .= "END:VEVENT\n";
$messaje .= "END:VCALENDAR\n";
$headers .= $messaje;
mail($to, $subject, $message, $headers);
?>


On Thu, Sep 17, 2009 at 8:12 PM, Rajesh Kodali <rajeshkod...@gmail.com> wrote:
> We are facing issues in integrating ics based calendar. But we don't have
> much time as the delivery dates at just down the lane. We are now doing this
> with webcalendar. Our Veetsa Team is working to make it symfony plugged
> after this project.
>
> On Thu, Sep 17, 2009 at 10:38 AM, DEEPAK BHATIA <toreachdee...@gmail.com>
> wrote:
>>
>> Hi,
>>
>> Is it compatible with Microsoft Outlook Calender ?
>>
>> Does it take Microsoft Outlook calender to .ics file ?
>>
>> Regards
>>
>> Deepak Bhatia
>>
>> On Fri, Sep 4, 2009 at 9:13 PM, Rajesh Kodali <rajeshkod...@gmail.com>
>> wrote:
>> > Hi,
>> >
>> > We have tried and integrated http://www.k5n.us/webcalendar.php to
>> > symfony,
>> > though could not succeed 100% we hope to completely integrate in a
>> > week's
>> > time. So I was trying to find out if any one have already tried this
>> > before
>> >
>> > On Fri, Sep 4, 2009 at 9:03 PM, Richtermeister <nex...@gmail.com> wrote:
>> >>
>> >> Hey Rajesh,
>> >>
>> >> I guess the answer is that it's not available. Doesn't seem to be
>> >> amongst the official plugins, and nobody came forward with one..
>> >> Time to shine and build it ;)
>> >>
>> >> Daniel
>> >>
>> >>
>> >> On Sep 4, 8:02 am, Rajesh Kodali <rajeshkod...@gmail.com> wrote:
>> >> > I am looking at full scale calendar plug in with ical compliance.
>> >> >
>> >> > On Fri, Sep 4, 2009 at 8:21 PM, DEEPAK BHATIA
>> >> > <toreachdee...@gmail.com>wrote:
>> >> >
>> >> >
>> >> >
>> >> >
>> >> >
>> >> > > Hi,
>> >> >
>> >> > > I have used Yahoo user interface for the same.
>> >> >
>> >> > >http://developer.yahoo.com/yui/
>> >> >
>> >> > > Regards
>> >> >
>> >> > > Deepak
>> >> >
>> >> > > On Fri, Sep 4, 2009 at 8:13 PM, Rajesh
>> >> > > Kodali<rajeshkod...@gmail.com>
>> >> > > wrote:
>> >> > > > Hi Guys,
>> >> >
>> >> > > > I did not receive any reply to my previous post on Calendar
>> >> > > > plug-in.
>> >> > > > Can
>> >> > > any
>> >> > > > one help me in integrating.
>> >> >
>> >> > > > --
>> >> > > > Regards & Thanks,
>> >> > > > Rajesh.Kodali
>> >> >
>> >> > --
>> >> > Regards & Thanks,
>> >> > Rajesh.Kodali
>> >>
>> >
>> >
>> >
>> > --
>> > Regards & Thanks,
>> > Rajesh.Kodali
>> >
>> > >
>> >
>>
>>
>
>
>
> --
> Regards & Thanks,
> Rajesh.Kodali
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-users@googlegroups.com
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to