Advertisement
sixlsix

send email from codebehind

Sep 22nd, 2014
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.23 KB | None | 0 0
  1. private async void ExecuteEmailMCNCommand()
  2.         {
  3.             Uri mailUri = new Uri(string.Format("mailto:{0}?Subject=",
  4.             "info@vets4warriors.com"));
  5.             await Launcher.LaunchUriAsync(mailUri);
  6.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement