I am trying to send email from my WP8 App using EmailComposeTask. But it is not sending the mail. Please correct the code if i am missing some statements. My code is:
private void Button_Click_1(object sender, RoutedEventArgs e)
{
EmailComposeTask email = new EmailComposeTask();
email.Body = "Test email from an app on click";
email.Subject = "Testing";
email.To = "[email protected]";
email.Show();
}
On clicking Button , i want this mail to be send to [email protected]. When i m running this app it asks for select an account from it will send mail after choosing it send the mail but reciever is not recieving the mail.