Skip to content

Instantly share code, notes, and snippets.

@prashantvc
Created March 11, 2013 13:23
Show Gist options
  • Save prashantvc/5134181 to your computer and use it in GitHub Desktop.
Save prashantvc/5134181 to your computer and use it in GitHub Desktop.
var email = new Intent(Android.Content.Intent.ActionSendto);
email.SetType("text/html");
email.PutExtra(Android.Content.Intent.ExtraSubject, "Subject here");
email.PutExtra(Android.Content.Intent.ExtraText,
Html.FromHtml("<p><b>Some Content</b></p><small><p>More content</p></small>"));
StartActivity(Intent.CreateChooser(email, "Email:"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment