我的应用程序发送一封包含图像的电子邮件,但电子邮件中没有图像。
我创建了一个 HTML 字符串并将其作为正文发送到电子邮件中。但是在设备上执行此操作时,电子邮件中没有任何内容。在模拟器里没问题。我在我的应用程序中放置了一个 WebView 并将 HTML 放入其中并显示所有图像。
有谁知道可能是什么问题?
这是我用来在邮件正文中附加图像的代码
NSMutableString *htmlBody = [[NSMutableString alloc] initWithString:@"<html><body>"];
[htmlBody appendString:@"<p>Enter Text Here</p>"];
UIImage *emailImage = [UIImage imageNamed:@"image.png"];
NSData *imageData = [NSData dataWithData:UIImagePNGRepresentation(emailImage)];
NSString *base64String = [imageData base64EncodedString];
[htmlBody appendString:[NSString stringWithFormat:@"<p><b><img src='data:image/png;base64,%@'> </b></p>",base64String]];
[htmlBody appendString:@"</body></html>"];
NSLog(@"%@",htmlBody);
[mailComposer htmlBody isHTML:YES];
希望对你有帮助。。