Click here to Skip to main content
15,881,559 members
Articles / Mobile Apps

How to Send Email in WP7 using the EmailComposeTask?

Rate me:
Please Sign up or sign in to vote.
4.14/5 (5 votes)
19 Apr 2012CPOL2 min read 18.8K   1   9
How to send email in WP7 using the EmailComposeTask?

In the last blog post, we learnt "How to Save Email Address in WP7 using the SaveEmailAddressTask?" where we shared code snippet of the internal implementation of the SaveEmailAddressTask along with the code implementation of a demo app.

Today in this blog post, we will learn how to compose an email using the Windows Phone 7 SDK class called "EmailComposeTask". I will also be sharing the decompiled version of the class, so that you can know the SDK implementation. Continue reading and at the end, don’t forget to leave your feedback.

Know About the API

Like all other launchers and choosers, "EmailComposeTask" is also a sealed class present inside the namespace Microsoft.Phone.Tasks. It exposes few properties to populate the email fields like "To", "Cc", "Bcc", "Subject", "Body", etc. The one and only one method named "Show()" opens up the Email Composer dialog in the screen.

Here is the meta data of the EmailComposeTask class:

C#
namespace Microsoft.Phone.Tasks
{
    public sealed class EmailComposeTask
    {
        public string Body { get; set; }
        public string Bcc { get; set; }
        public string Cc { get; set; }
        public int? CodePage { get; set; }
        public string Subject { get; set; }
        public string To { get; set; }
        public void Show();
   }
}

Do you want to know how this class has been implemented inside the SDK library? Then here is your chance to study the code. I am sharing the decompiled version of the EmailComposeTask class here:

C#
namespace Microsoft.Phone.Tasks
{
    public sealed class EmailComposeTask
    {
        private const int SHAREMETHOD_SEND = 1;
        private const string AppUri = "app://5B04B775-356B-4AA0-AAF8-6491FFEA5614/ShareContent";

        public string Body { get; set; }
        public string Bcc { get; set; }
        public string Cc { get; set; }
        public int? CodePage { get; set; }
        public string Subject { get; set; }
        public string To { get; set; }

        public void Show()
        {
        if (!ChooserHelper.NavigationInProgressGuard((Action) (() => this.Show())))
            return;
            ChooserHelper.Navigate(new Uri(this.BuildUri(), 
                  UriKind.Absolute), this.BuildParameterPropertyBag());
        }

        internal string BuildUri()
        {
            return "app://5B04B775-356B-4AA0-AAF8-6491FFEA5614/ShareContent";
        }

        internal ParameterPropertyBag BuildParameterPropertyBag()
        {
            ParameterPropertyBag parameterPropertyBag = new ParameterPropertyBag();
            if (!string.IsNullOrEmpty(this.To))
                parameterPropertyBag.CreateProperty("To").StringValue = this.To;
            if (!string.IsNullOrEmpty(this.Cc))
                parameterPropertyBag.CreateProperty("Cc").StringValue = this.Cc;
                string subject = this.Subject;
            if (!string.IsNullOrEmpty(subject))
                parameterPropertyBag.CreateProperty("Subject").StringValue = subject;
                string body = this.Body;
            if (!string.IsNullOrEmpty(body))
                parameterPropertyBag.CreateProperty("Body").StringValue = body;
                string bcc = this.Bcc;
            if (!string.IsNullOrEmpty(bcc))
                parameterPropertyBag.CreateProperty("Bcc").StringValue = bcc;
                int? codePage = this.CodePage;
            if (codePage.HasValue)
                parameterPropertyBag.CreateProperty("CodePage").StringValue = codePage.Value.ToString();
                parameterPropertyBag.CreateProperty("ShareMethod").Int32Value = 1;
                parameterPropertyBag.CreateProperty("MsgClass").StringValue = "IPM.Note";
                return parameterPropertyBag;
        }
    }
}

Here, the internal method named BuildParameterPropertyBag() constructs all the properties to compose the email. Check out the AppUri that the class generates.

Implementation Steps

Now, it’s time to demonstrate the implementation to compose an email from the code. The exposed properties allow you to auto populate the values. Based on your requirement, set the required properties as shown below:

C#
var emailComposeTask = new EmailComposeTask
{
    To = "no-reply-to@kunal-chowdhury.com",
    Cc = "no-reply-cc-1@kunal-chowdhury.com; no-reply-cc-2@kunal-chowdhury.com",
    Bcc = "no-reply-bcc@kunal-chowdhury.com",
    Subject = "Test Message using EmailComposeTask",
    Body = "This is a test email body created using the EmailComposeTask"
};
emailComposeTask.Show();

At the end, call the Show() method to open the composer task. If you have multiple email accounts setup in your phone device, this will ask you to chose the right account. Otherwise, it will directly go to the next screen where the UI will have an email client showing the email compose screen. User will be able to add/update any field from the screen.

Note: The WP7 emulator doesn't provide setting up email account and hence I am unable to provide screenshot here.

I hope that this post was very useful for you to understand the SDK API, it’s internal code implementation and the sample code implementation. Please leave your feedback below to leave your comment.

Stay tuned to my blog, twitter or facebook to read more articles, tutorials, news, tips & tricks on various technology fields. Also Subscribe to our Newsletter with your Email ID to keep you updated on latest posts. We will send newsletters to your registered email address. We will not share your email address with anybody as we respect your privacy.

Reference: http://www.kunal-chowdhury.com

You may like to follow me on twitter @kunal2383 or may like the Facebook page of my blog http://www.facebook.com/blog.kunal2383.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
India India

Kunal Chowdhury is a former Microsoft "Windows Platform Development" MVP (Most Valuable Professional, 2010 - 2018), a Codeproject Mentor, Speaker in various Microsoft events, Author, passionate Blogger and a Senior Technical Lead by profession.

He is currently working in an MNC located in India. He has a very good skill over XAML, C#, Silverlight, Windows Phone, WPF and Windows app development. He posts his findings, articles, tutorials in his technical blog (www.kunal-chowdhury.com) and CodeProject.


Books authored:


Connect with Kunal on:





Comments and Discussions

 
QuestionAdd any kind of attachment or send unattended (without EmailComposeTask) Pin
Member 151651111-Jan-13 14:51
Member 151651111-Jan-13 14:51 
GeneralMy vote of 1 Pin
Selvin19-Apr-12 22:49
Selvin19-Apr-12 22:49 
AnswerRe: My vote of 1 Pin
Kunal Chowdhury «IN»6-May-12 18:45
professionalKunal Chowdhury «IN»6-May-12 18:45 
QuestionAbout email accounts Pin
Pete O'Hanlon19-Apr-12 4:45
mvePete O'Hanlon19-Apr-12 4:45 
AnswerRe: About email accounts Pin
Kunal Chowdhury «IN»19-Apr-12 5:12
professionalKunal Chowdhury «IN»19-Apr-12 5:12 
GeneralRe: About email accounts Pin
Pete O'Hanlon19-Apr-12 5:38
mvePete O'Hanlon19-Apr-12 5:38 
GeneralRe: About email accounts Pin
Kunal Chowdhury «IN»19-Apr-12 5:54
professionalKunal Chowdhury «IN»19-Apr-12 5:54 
ha ha ha. Sorry, I just read the line once again and I found it. Really confusing. I will update it immediately. Thanks Peter.
Regards - Kunal Chowdhury
Microsoft MVP (Silverlight) | Codeproject MVP & Mentor | Telerik MVP


Follow me on: My Technical Blog | Silverlight-Zone | Twitter | Facebook | Google+

SuggestionFormatting Pin
Wendelius18-Apr-12 17:26
mentorWendelius18-Apr-12 17:26 
GeneralRe: Formatting Pin
Kunal Chowdhury «IN»18-Apr-12 18:05
professionalKunal Chowdhury «IN»18-Apr-12 18:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.