I have a confirmation form containing different textFields like Name, Age, Phone no., Email etc. Now i want to use them into mail and send them to the user. I have done that. My application mail is working perfectly fine.
Now i want in the mail which i sent to user through application it should contain these information in structured way. i used string like :
NSString * bodyMessage = [NSString stringWithFormat:@"Hello Customer Details:- Cutomer name: %@,%@,@%",labelName.text, labelEmail.text,labelPhone.text];
But it shows unstructed data.
I want the mail should be :
Name : manjinder
Email: [email protected]
Phone: 098873424345t
How can i display like this.