I am working on an app in which user have to send an email, i have implemented the email functionality and it is working, however the only thing which i need to do is to write multiple message in message body. i have used the code below to write multiple message
[mailController setMessageBody:@"Hey" isHTML:YES];
[mailController setMessageBody:delegate.tripName isHTML:YES];
[mailController setMessageBody:delegate.resultString isHTML:YES];
[mailController setMessageBody:delegate.messageDetails isHTML:YES];
However only the last message is only showing in the mail, how to show all the message in the mail, in separate line
1 Answer