To append a simple string key-value pair, we do this in object C
NSMutableData *body = [NSMutableData data];
[body appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"%@\";\r\n\r\n%@", _name, _value] dataUsingEncoding:NSUTF8StringEncoding]];
However, how do we append NSArray of data. Let's say Email Array contains={tom@yahoo.com, dve@yahoo.com, john@yahoo.com}
How do we append Email array to the NSMutableData body?