I want to send eMails with subject and body.
This is my code right now and it works as expected. It´s leaving my app and creating a new message in Mail.
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto:[email protected]"]];
However, I want to create more complex messages including subject and body like this: [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto:[email protected]?subject=my Subject?body=my Body"]];
Which does´t do anything at all as soon as I add the subject.
Any idea what I´m doing wrong?