Hi i am developing an windows phone 8 app , in which i would like to send email from my application .
sending an email can be done in this way easily in this way :-
EmailComposeTask emailComposeTask = new EmailComposeTask();
emailComposeTask.To = "someone@example.com";
emailComposeTask.Cc = "testmail@test.com";
emailComposeTask.Subject = "Windows Phone 8";
emailComposeTask.Show();
But my Doubt is :-
i have html content (which consists of a table with columns and rows constructed in html format)
1) so i wanted to set that html content as body to my email in my windows phone 8 app and send it over, how can achieve this ??
2)Are they any other ways / alternatives of accomplishing this task ??
3)Am i missing an alternative provided by Microsoft ??
Please let me know .
Thanks in Advance