Click here to Skip to main content
Click here to Skip to main content

Sending Tasks Programmatically

By , 24 Jul 2005
 

Introduction

I’m going to show two different ways of sending tasks programmatically. One is using the Microsoft Outlook 11.0 Object Library and the other is using vCalendar.

Using Microsoft Outlook 11.0 Object Library

The simplest of these is using Microsoft 11.0 object library. This has a class called TaskItem. TaskItem represents a task (an assigned, delegated, or self-imposed task to be performed within a specified time frame) in a Tasks folder. Like appointments or meetings, tasks can be delegated. You can get this library from Add Reference and click on COM tab.

Create an alias as follows:

using Outlook = Microsoft.Office.Interop.Outlook;

Create objects of ApplicationClass and TaskItem as follows:

Outlook.ApplicationClass app = new Outlook.ApplicationClass();
Outlook.TaskItem tsk = (Outlook.TaskItem) 
             app.CreateItem(Outlook.OlItemType.olTaskItem);

Set the properties of task as needed:

tsk.StartDate = DateTime.Now;
tsk.DueDate = DateTime.Now;
tsk.Subject = "Test";
tsk.Body = "Testing Task";
tsk.Recipients.Add("abc@xyz.com");
tsk.Assign();
tsk.Send();

That’s it. This is the simplest way for creating and sending a task programmatically. One disadvantage of this is we get to click away the annoying security popups.

Using vCalendar

The next way is through the vCalendar object. vCalendar is the industry standard format for sending/receiving scheduling information electronically. vCalendar was developed by a consortium formed by IBM, AT&T, Siemens and Apple. Later, this specification was given to Internet Mail Consortium. Now, most of the Personal Information Manager (PIM) programs on all software support vCalendar as the standard exchange format.

Microsoft Outlook supports vCalendar (what more do we want ;)). vCalendar files are not just used to exchange appointments and schedules within one organization. They can be used to schedule appointments with others, who use scheduling software incompatible with yours (all the more we want, right?). Let’s get on with how to create a vCalendar object programmatically.

vCalendar file would look something like the following:

BEGIN:VCALENDAR PRODID:-//Microsoft Corporation//Outlook MIMEDIR//EN 
     VERSION:1.0 BEGIN:VEVENT DTSTART:19980114T210000Z DTEND:19980114T230000Z 
     LOCATION:Team Room CATEGORIES:Business 
     DESCRIPTION;ENCODING=QUOTED-PRINTABLE:Testing 
     Task=0D=0A SUMMARY:Test PRIORITY:3 END:VEVENT END:VCALENDAR

To create the vCalendar object, we have the method given below:

string CreateTask(DateTime start, DateTime end, string sub, string msgBody)
{
    StringBuilder sbvCalendar = new StringBuilder();

    //Header
    sbvCalendar.Append("METHOD: REQUEST");
    sbvCalendar.Append("\n");
    sbvCalendar.Append("BEGIN:VCALENDAR");
    sbvCalendar.Append("\n");
    sbvCalendar.Append("PRODID:-//Microsoft Corporation//Outlook ");
    sbvCalendar.Append("\n");
    sbvCalendar.Append("MIMEDIR//ENVERSION:1.0");
    sbvCalendar.Append("\n");
    sbvCalendar.Append("BEGIN:VEVENT");
    sbvCalendar.Append("\n");
                
    //DTSTART 
    sbvCalendar.Append("DTSTART:");
    string hour = start.Hour.ToString();
    if(hour.Length<2){hour ="0"+ hour;}
            
    string min = start.Minute.ToString();
    if(min.Length<2){min = "0" + min;}
            
    string sec = start.Second.ToString();
    if(sec.Length<2){sec = "0" + sec;}

    string mon = start.Month.ToString();
    if(mon.Length<2){mon ="0" + mon;}
             
    string day = start.Day.ToString();
    if(day.Length<2){day ="0" + day;}

    sbvCalendar.Append(start.Year.ToString()+ mon + day 
                           +  "T" + hour + min + sec );
    sbvCalendar.Append("\n");

    //DTEND
    sbvCalendar.Append("DTEND:");
    hour = end.Hour.ToString();
    if(hour.Length<2){hour ="0"+ hour;}

    min = end.Minute.ToString();
    if(min.Length<2){min = "0" + min;}
                
    sec = end.Second.ToString();
    if(sec.Length<2){sec = "0" + sec;}

    mon = end.Month.ToString();
    if(mon.Length<2){mon ="0" + mon;}
             
    day = end.Day.ToString();
    if(day.Length<2){day ="0" + day;}

    sbvCalendar.Append(end.Year.ToString()+ mon + 
                 day +  "T" + hour + min + sec );
    sbvCalendar.Append("\n");

    //Location
    sbvCalendar.Append("LOCATION;ENCODING=QUOTED-PRINTABLE: " 
                                             + String.Empty);
    sbvCalendar.Append("\n");
        
    //Message body
    sbvCalendar.Append("DESCRIPTION;ENCODING=QUOTED-PRINTABLE:" 
                                                    + msgBody);
    sbvCalendar.Append("\n");

    //Subject
    sbvCalendar.Append("SUMMARY;ENCODING=QUOTED-PRINTABLE:" 
                                                    + sub);
    sbvCalendar.Append("\n");

    //Priority
    sbvCalendar.Append("PRIORITY:3");
    sbvCalendar.Append("\n");
    sbvCalendar.Append("END:VEVENT");
    sbvCalendar.Append("\n");
    sbvCalendar.Append("END:VCALENDAR");
    sbvCalendar.Append("\n");
            
    return sbvCalendar.ToString();
}

We can use this method as:

string sub = "Test";
string body = "Testing Task";

//Create a message object
MailMessage msg = new MailMessage();
msg.From = "abc@xyz.com";
msg.To = "def@xyz.com";
msg.Subject = sub;
msg.BodyEncoding = System.Text.Encoding.UTF8;
msg.Body = body;
            
//Set the date/time
DateTime start = DateTime.Parse("Jan 1, 2005");
DateTime end = DateTime.Parse("Jan 2, 2005");
DateTime ex = DateTime.Now;

//Location where you want to save the vCalendar file
string attachUrl = 
   "C:\Inetpub\wwwroot\WebApplication3\bin\ Test.vcs";

//Create task
using(StreamWriter sw = new StreamWriter(attachUrl)
{
  sw.Write(CreateTask (start, end, sub, body));
}

//Attach the task
MailAttachment mAttachment = new MailAttachment(attachUrl);
msg.Attachments.Add(mAttachment);
            
//Send
SmtpMail.SmtpServer = "some-smtp-mail-server.com";
SmtpMail.Send(msg);

That’s it. Happy coding!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Wizard12
Web Developer
India India
Member
Have a Master of Computer Applications degree from Anna University, Chennai, India. Working as a Technology Specialist for Cognizant, Bangalore, India.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralNice Article PinmemberRajin Sayeed S Alam15 May '11 - 19:07 
GeneralMy vote of 3 Pinmemberfertansa2 Mar '11 - 11:21 
Newsbroken code - do not use as-is - please read the RFC and validate Pinmemberrlively6 Apr '10 - 8:16 
Generalmsg.To cannot be assigned PinmemberJames_Lin11 May '09 - 10:12 
GeneralAppending strings to get vCalendar: wrong, Using MS API: right Pinmemberrlively10 Oct '08 - 5:40 
GeneralReminder & Busy Status PinmemberMember 44677752 Oct '08 - 3:56 
QuestionAppointment vs Task Pinmembercentric5 Mar '07 - 7:57 
GeneralHave a little problem Pinmemberuddesh14 Feb '07 - 18:37 
GeneralOther people's tasks PinmemberKokas1 Nov '05 - 2:10 
QuestionAnd with no attachment? Pinsussjoujoukinder1 Sep '05 - 20:51 
QuestionOutlook neets to run in background ? Pinmembermvanschie27 Jul '05 - 22:12 
GeneralNice, But... PinmemberFZelle25 Jul '05 - 4:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 25 Jul 2005
Article Copyright 2005 by Wizard12
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid