アプリのドキュメント ディレクトリに VideoClip.mp4 が保存されています。SKPSMTPMessage (メール、件名、本文など) を含むメールは正常に送信できますが、ビデオの添付に問題があります。すでにいろいろ探しましたが、引き続き探してみます。誰かが私を助けることができれば、それは大歓迎です。ありがとうございました!
このコードは (明らかに) 画像を添付しますが、それを操作してビデオを添付する方法を理解できませんでした:
NSString *image_path = [[NSBundle mainBundle] pathForResource:@\"Success\" ofType:@\"png\"];
NSData *image_data = [NSData dataWithContentsOfFile:image_path];
NSDictionary *image_part = [NSDictionary dictionaryWithObjectsAndKeys:
@\"inline;\r\n\tfilename=\\"Success.png\\"\",kSKPSMTPPartContentDispositionKey,
@\"base64\",kSKPSMTPPartContentTransferEncodingKey,
@\"image/png;\r\n\tname=Success.png;\r\n\tx-unix-mode=0666\",kSKPSMTPPartContentTypeKey,
[image_data encodeWrappedBase64ForData],kSKPSMTPPartMessageKey,
nil];