vote up 6 vote down star
2

Basically I'm trying to accomplish the same thing that "mailto:bgates@microsoft.com" does in Internet Explorer Mobile.

But I want to be able to do it from a managed Windows Mobile application. I don't want to send an email pro grammatically in the background.

I want to be able to create the email in Pocket Outlook and then let the user do the rest.

Hopefully that helps you hopefully help me!

flag

79% accept rate

2 Answers

vote up 8 vote down check

I assume you use C#. You add a reference to System.Diagnostics and then write the following code:

ProcessStartInfo psi = 
  new ProcessStartInfo("mailto:bla@bla.com?subject=MySubject", "");
Process.Start(psi);

This will start the default email client on your mobile device.

The mailto protocol definition might come handy too.

link|flag
Thanks Petros! Great answer, worked perfectly and was clean and simple, which is something I really wanted and needed. You really helped me out. – CJCraft.com Oct 6 '08 at 16:42
No problem! I am glad I could help you! – Petros Oct 7 '08 at 0:09
vote up 2 vote down

You can also use Microsoft.WindowsMobile.PocketOutlook.MessagingApplication.DisplayComposeForm like so:

OutlookSession sess = new OutlookSession();
EmailAccountCollection accounts = sess.EmailAccounts;
//Contains all accounts on the device  
//I'll just choose the first one -- you might want to ask them
MessagingApplication.DisplayComposeForm(accounts[0], 
    "someone@somewhere.com", "The Subject", "The Body");

The DisplayComposeForm method has a lot of overloads with options for attachments and more.

link|flag
Thanks, Jake, that's exactly what i've been looking for. – Muxa Nov 27 at 1:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.