14Mar
Run a Perl Script on Outlook Emails to genereate Calendar Events?
2 comments so farIs there a way to run a Perl script on incoming emails to create calendar events? My company uses its own internal calendar system that sends me emails everytime a new event/meeting is scheduled. I’d like to be able to create a perl script or VB script that would “Read” the incoming emails, strip out the meeting info (date, time, locations, etc.) and then create a new calendar event. Is this possible?
Categories: Programming & Design
Sunday, March 14th, 2010 at 12:58 pm and is filed under Programming & Design. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.







No, it’s not possible to call Perl from Outlook. It should be possible in VB, since VB is a “native” language in MS Office. As a starting point, try selecting the “run a script” option in Outlook’s Rules Wizard. I assume you can select a VB function there…
You could write a Perl script to parse your emails and generate calendar events, but it wouldn’t run automatically, you’d have to run it manually. I’m including a link to the module you would need and a perlmonks question that has some code to get you started.