There are quite a few basic syntax errors in your code as it is.
It would be good if you looked at some books/examples/tutorials.
Here it is as it should be (to my best guess as to what you're trying to do):
Code:
for(int i=0; i< [order2 count]; i++){
NSString *temp = [[NSString alloc] initWithFormat:@"%d",[order2 objectAtIndex:i] integerValue]];
// I believe this line is not needed
// mailString = (@"%@", temp);
[orderComposer setMessageBody:temp isHTML:NO];
//Because we allocated the string
[temp release];