How to embed UIImage into email with html content?
1 answer
First convert the image to PNG ( UIImagePNGRepresentation
) or JPEG ( UIImageJPEGRepresentation
) data.
Then call -addAttachmentData:mimeType:fileName:
on the mail viewer controller with PNG / JPEG data.
Your image will be shown as an attachment.
+1
a source to share