如何使用默认邮件编辑器将文件附加到邮件
我有一个包含一些数据的文件,我想将此文件附加到邮件,并且我正在使用默认的邮件编辑器...
知道如何在发送到收件人之前将文件附加到邮件...
提前致谢.. ..
i hav a file with some data and i want to attach this file to mail, and i am using the default mail composer ...
any idea how to attach the file to mail before sending to receipents....
Thanks in advance....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(2)
痴情2024-10-05 03:35:43
NSString *path = [[NSBundle mainBundle] pathForResource:@"bg" ofType:@"jpg"];
NSData *myData = [NSData dataWithContentsOfFile:path];
[controller addAttachmentData:myData mimeType:@"image/jpg" fileName:@"Attachment-1"];
[self presentModalViewController:controller animated:YES];
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
带有附加图像的示例:
Example with an attached image: