i am using this code in my app which will help me to send a image.
however i have a image view with a image.i have no file in appbundle but have the image in my side.how can i change the below code.can any one tell me how can i convert myimage to NsData.
// Attach an image to the email
NSString *path = [[NSBundle mainBundle] pathForResource:@"rainy" ofType:@"jpg"];
NSData *myData = [NSData dataWithContentsOfFile:path];
[picker addAttachmentData:myData mimeType:@"image/jpeg" fileName:@"rainy"];