Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MAPI Email to Multiple Recipients 2

Status
Not open for further replies.

mikemcginty

Programmer
Jul 11, 2002
184
AU
How do you email to more than one recipient using the MAPI control?

Thanks in return

Mike

When you call out for help in the darkness, and you hear a voice in return, you're probably just talking to yourself again!
 
The recipient properties refer to the currently indexed recipient where the index lies between 0 and RecipCount - 1.

To add a new recipient, set the RecipIndex to the RecipCount. This automatically increases the Count by 1 and indexes the new recipient so you can set its properties.

Paul Bent
Northwind IT Systems
 
Sorry I did this like last week but did it in c#
It will be kind of the same I think.
I did it like this

objMailItem.Recipients.Add (text1.text);
When I execute then I type it in the textbox
Name Surname;anothername surname and so forth
If you send email to someone who exist in your adressbook then you can just type in the name and surname.It will accept it.
Hope I could help you in some way
Nice hey
 

Thanks fellas

I will try this out

Mike

When you call out for help in the darkness, and you hear a voice in return, you're probably just talking to yourself again!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top