我正在尝试发送包含图片附件和HTML的电子邮件。问题是,当HTML打开时,图像显示为内联而不是附件(我使用gmail)。
如果我设置了isHTML:NO,则图像会正确显示为可下载的附件。如何将图像作为带有html消息的附件发送?
NSData *imageAttachment = UIImageJPEGRepresentation(myUIImage,1);
MFMailComposeViewController *mailView = [[MFMailComposeViewController alloc] init];
[mailView setSubject:@"My Email Subject!"];
[mailView addAttachmentData:imageAttachment mimeType:@"image/jpeg" fileName:@"imageAttachment.jpg"];
[mailView setMessageBody:messageBody isHTML:YES];
感谢〜!!
答案 0 :(得分:0)
您附加图片的方法是正确的,您获得的结果也达到了标准。
无论哪种方式,最终用户(无论他们是否使用Gmail)都应该获得附件。
例如,Windows Live Mail应将其视为附件,在Mac OS中使用Mail时,您会看到内嵌图像。
答案 1 :(得分:0)
您必须将图像添加为附件。使用HTML查看的呈现的电子邮件无法使用丢失的图像URL正确呈现。
这是一个例子:需要注意的是,如果你想要包含像PDF这样的东西你必须包含一个图像,否则mfmailcomposer将失败......这是一个苹果bug。
我找到了解决方案......在Apple雷达上提交了一个关于它的错误。 MFMailcomposer有一个错误,你必须发送一个图像和你的额外附件,以获得像pdf这样的奇怪项目...尝试这个并用你的卡替换pdf:
MFMailComposeViewController *controller = [[MFMailComposeViewController alloc] init];
NSString *emailSubject = [NSString localizedStringWithFormat:@"MedicalProfile"];
[controller setSubject:emailSubject];
NSString *fileName = [NSString stringWithFormat:@"%@.pdf", profileName];
NSString *saveDirectory = NSTemporaryDirectory();
NSString *saveFileName = fileName;
NSString *documentPath = [saveDirectory stringByAppendingPathComponent:saveFileName];
*** YOU MUST INCLUDE AN IMAGE OR THE PDF ATTATCHMENT WILL FAIL!!!***
// Attach a PDF file to the email
NSData *pdfData = [NSData dataWithContentsOfFile:documentPath];
[controller addAttachmentData:pdfData mimeType:@"application/pdf" fileName:fileName];
// Attach an image to the email
NSString *imagePath = [[NSBundle mainBundle] pathForResource:@"miniDoc" ofType:@"png"];
NSData *imageData = [NSData dataWithContentsOfFile:imagePath];
[controller addAttachmentData:imageData mimeType:@"image/png" fileName:@"doctor"];
[controller setMessageBody:[NSString stringWithFormat:@"%@'s Medical Profile attatched!", profileName] isHTML:NO];
[self presentModalViewController:controller animated:YES];
controller.mailComposeDelegate = self;
[controller release];