How to Programatically Send Email with attachments in Windows Phone 8.1 using C# ?

Below is a sample code snippet that demonstrates how to send email with attachments programmatically in Windows Phone 8.1 using C# .

How to Programatically Send Email with attachments in Windows Phone 8.1 using C# ?

EmailMessage objEmail = new EmailMessage();
objEmail.Subject = "Abundantcode Article";
var localAppFolder = Windows.Storage.ApplicationData.Current.LocalFolder;
var fileHandle = await localAppFolder.CreateFileAsync("AbundantcodeData.txt", Windows.Storage.CreationCollisionOption.ReplaceExisting);
objEmail.Attachments.Add(new EmailAttachment(fileHandle.Name, fileHandle));
await EmailManager.ShowComposeNewEmailAsync(objEmail);
?
%d