How can I open a Network drive like GMail drive installed in my system through
C# windows application.
tnx...
How can I open a Network drive like GMail drive installed in my system through
C# windows application.
tnx...
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Basu BiswasPosted Apr 2, 2007, 12:45 PM
Tnx 4 reply...actaully u did'nt get me....Actually i want to open a drive ....say like C drive or D drive of the local system from my code....
I think the drive like Gmail Drive does not fall under the category of logical drives like C or D ....
so having sum probs...anyway tnx 4 giving ur time....
regards
BobbyPosted Apr 2, 2007, 11:29 AM
Here is sample code for sending eMails using C#, may it help you -
//create the mail message
MailMessage mail = new MailMessage();
//set the addresses
mail.From = new MailAddress("[email protected]");
mail.To.Add("[email protected]");
//set the content
mail.Subject = "This is an email";
mail.Body = "this is a sample body";
//send the message
SmtpClient smtp = new SmtpClient("127.0.0.1");
smtp.Send(mail);
Best Regard,
Bobby