If you're targeting 2.0 you can stick with mailto: - just leave off the email address, but keep the mailto:?subject=blah+blah+blah
Code:
NSURL *url = [[NSURL alloc] initWithString:@"mailto:?subject=This is my subject&body=this is the body"];
[[UIApplication sharedApplication] openURL:url];