我有一个 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];