I have setup everything with the in-app email. I’m trying to gather the UITextField value and UILabel value then send the information to the “body” of an email. Here is the line of code that I believe needs tweaked:
NSString *message = [NSString stringWithFormat:@"tex2.text %@ label2.text %@"];
[composer setMessageBody:message isHTML:NO];
Your stringWithFormat call is missing the UITextField and UILabel parameters: