I am creating a csv file with the following code:
BOOL written = [csvString writeToFile:@"stock_summary.csv" atomically:YES encoding:NSUTF8StringEncoding error:&error];
if (!written)
NSLog(@"write failed, error=%@", error);
Now i want to send this file as an attachment in the email. I can see my created file but i want to access this file. I know how to attach a file, i just want to access it.