生成されたレポート(csv)を送信するためにMFMailComposeViewControllerを使用しました。
これでメールはTo:email idに送信されますが、メールを確認したところ、メールは受信されましたが、添付ファイルがありませんでした。
次に、MailComposerの例も試しました。
https://developer.apple.com/iphone/library/samplecode/MailComposer/index.html
png画像がメールデモに添付されています。そのアプリを使ってメールも送ったのですが、同じ結果の画像添付が配信されません。
助けて、何が問題なのかを見つけますか?前もって感謝します。
そのアプリのコードは次のとおりです。
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
[picker setSubject:@"Hello from California!"];
// Set up recipients
NSArray *toRecipients = [NSArray arrayWithObject:@"first@example.com"];
NSArray *ccRecipients = [NSArray arrayWithObjects:@"second@example.com", @"third@example.com", nil];
NSArray *bccRecipients = [NSArray arrayWithObject:@"fourth@example.com"];
[picker setToRecipients:toRecipients];
[picker setCcRecipients:ccRecipients];
[picker setBccRecipients:bccRecipients];
// Attach an image to the email
NSString *path = [[NSBundle mainBundle] pathForResource:@"rainy" ofType:@"png"];
NSData *myData = [NSData dataWithContentsOfFile:path];
[picker addAttachmentData:myData mimeType:@"image/png" fileName:@"rainy"];
// Fill out the email body text
NSString *emailBody = @"It is raining in sunny California!";
[picker setMessageBody:emailBody isHTML:NO];
[self presentModalViewController:picker animated:YES];
[picker release];