Hi,
I am developing a webapplication in Visual Studio-2008(AsP.net/C#). I am trying to integrate my webapplication with webservice.The webservice is such that it will put all my request in asynchronous mode.
My webapplication, I am sending a mail with Cc and Bcc fields, for the body of my mail I am using a rich textbox from richer components.
Rich text box is used to send the data in formatted text.
I am using the code below:
Service webServ = new Service();
// Make an Asynchronous Call by calling the start method.
webServ.BeginSendMailAll(dsRec, strSubj, RichTextBox1.Text , new AsyncCallback(WsCallback), webServ);
while using the webservice how to implement: The Bcc and Cc in the code above.
Also the body of the mail goes(to the recepient) in html format, instead of the fromatted text I am sending.
please help me out
thanks