I'm porting a windows phone app and i have the following wp code:
public static void startEmailFeedbackActivity(Context context)
{
EmailComposeTask emailcomposer = new EmailComposeTask();
emailcomposer.To = Strings.IDST_FLAG_SUPPORT_EMAIL_ADDRESS;
emailcomposer.Subject = Strings.IDST_EMAIL_FEEDBACK_TITLE;
emailcomposer.Show();
}
QUESTION - How do I do this for my Windows Store App? Is It even possible?
I found some threads about this and i realize i should be using contracts, but it is not clear...
Any help much appreciated.
Thanks