As I tried to explain in the title, I need to send emails in my WP8 app from my own account not by the existing accounts on the phone. I plan to use this for password reset process. What I currently use is:
private void Button_Click(object sender, RoutedEventArgs e) {
EmailComposeTask emailcomposer = new EmailComposeTask();
emailcomposer.To = "AMailAdress";
emailcomposer.Subject = "subject from test app";
emailcomposer.Body = "This is a test mail from Email Composer";
emailcomposer.Show();
}
This just sends via user's accounts. Shortly, I need a way to set from field sending an email. Any help is appreciated.