Does anyone out there know how to insert an attachment while sending email using outlook 2000 with C#.Net or VB.Net?
I clearly know that i can use the code below to do the job: -
>Outlook.MailItem oMailitem;
>oMailitem.Attachments.Add(object Source, object Type, object Position, object DisplayName);
The problem I have is on what to insert to the variable of object Type, object Position and object DisplayName.
Thanks for your help in advance...
I clearly know that i can use the code below to do the job: -
>Outlook.MailItem oMailitem;
>oMailitem.Attachments.Add(object Source, object Type, object Position, object DisplayName);
The problem I have is on what to insert to the variable of object Type, object Position and object DisplayName.
Thanks for your help in advance...