iPhone - how can I embed images in email from my app?

后端 未结 2 1306
旧巷少年郎
旧巷少年郎 2020-12-21 21:49

Is it possible to embed images an email being sent from my app? Can we have an tag with source as an image in our app?

Thanks.

2条回答
  •  [愿得一人]
    2020-12-21 22:17

    Yes. Using 3.0's mail APIs you can.

    I'll not put the code here because it is under the NDA. It is well documented in the SDK though. You need to get the image data into an NSData which is not as obviously documented:

    NSData* imageData = UIImagePNGRepresentation(myUIImage);
    

提交回复
热议问题