Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

Can anyone tell me of how to populate "To" address in the Attendee field in Outlook 2003 using C#.Net.

I am able to populate all other values like subject,Location,Date etc...

Thanks
Prabhu
Posted
Updated 1-Jun-10 0:03am
v2

PrabhaharanR wrote:
Attendee field


Looks like you are making an appointment. Here are a rough list of accessing various properties:
C#
// Set some common properties.
oAppt.MeetingStatus = MAPI.CdoMeetingStatusTypes.CdoMeeting;
oAppt.Subject = subject;
oAppt.Text = body;
oAppt.Location = "Atlantis";
oAppt.StartTime = Convert.ToDateTime("04/14/2005 8:00:00 AM");
oAppt.EndTime = Convert.ToDateTime("04/14/2005 9:00:00 AM");
oAppt.ReminderSet = true;
oAppt.ReminderMinutesBeforeStart = 5;
oAppt.AllDayEvent = false;
// Add attendees.
oSafeAppt.Recipients.Add("abc@anc.com");
oSafeAppt.Recipients.ResolveAll();
// Send out request.
oSafeAppt.Send();


You need something like: oSafeAppt.Recipients.Add("ab@ab.com");
 
Share this answer
 
You need to add a recipient as follows -
Outlook.Recipients oRecips = (Outlook.Recipients)oMsg.Recipients.

See here.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900