HomeWindowsHow to send email in Windows Phone 7 using c# ?

How to send email in Windows Phone 7 using c# ?

In one of my previous post , i wrote about how one can send SMS in Windows Phone 7  using c# . This blog post focusses on sending a email in windows phone 7 using c#

EmailComposeTask is a launcher that allows the windows phone 7 app to launch the email App aling with the message to be displayed which allows the users to send the email from your app.

How to send email in Windows Phone 7 using c# ?

Similar to sending SMS , sending email can be achieved with the EmailComposeTask

To use the EmailComposeTask , you must include the namespace Microsoft.Phone.Tasks .

Using Microsoft.Phone.Tasks ;
This namespace can be found in the Microsoft.Phone.dll
To send the email , create an instance of the EmailComposeTask and set the appropriate properties like
To , Subject and Body of the Email .
private void button1_Click(object sender, RoutedEventArgs e)
{
     EmailComposeTask emailcomposer = new EmailComposeTask();
     emailcomposer.To = "[email protected]";
     emailcomposer.Subject = "subject from test app";
     emailcomposer.Body = "This is a test mail from Email Composer";
     emailcomposer.Show();
}

When the Show method is called , the EmailComposer is opened which lets the user to click the send button to send the email
Note that you might the following message when email account is not set up in your windows phone 7 .

 

    3 Comments

  1. Nick Heiner
    August 9, 2011
    Reply

    You can actually be a bit more concise making the `EmailComposeTask`:

  2. Mike
    November 29, 2011
    Reply

    thanks for this this is about the only thing i’ve done in wp7 that was easy – worked on the first try, thanks!

  3. Rohit Baghela
    January 6, 2014
    Reply

    Can we capture and send a image Via mail Using C# in windows phone

Leave a Reply

You May Also Like

This blog post will guide you through several effective methods to troubleshoot and resolve the issue of Microsoft Edge not...
Windows 11 offers a range of audio enhancements that can enrich your listening experience. These enhancements include features like virtual...
Windows 11 brings a fresh and visually stunning design to your desktop, and one of the standout features is the...