i am attaching image in email.but how can we attach html file in email ?
here is code by which i am attaching image file in an email.
How can we attach HTML in a same way.
I don't want to set HTML as body ,i want to send HTML as attachment.
kindly guide me regarding this issue.
here is code by which i am attaching image file in an email.
Code:
UIImage *artworkImage = viewImage;
NSData *artworkJPEGRepresentation = nil;
if (artworkImage)
{
artworkJPEGRepresentation = UIImageJPEGRepresentation(artworkImage, 0.7);
}
if (artworkJPEGRepresentation)
{
[composeVC addAttachmentData:artworkJPEGRepresentation mimeType:@"image/jpeg" fileName:@"Image.jpg"];
}
[self presentModalViewController:composeVC animated:YES];
[composeVC release];
How can we attach HTML in a same way.
I don't want to set HTML as body ,i want to send HTML as attachment.
kindly guide me regarding this issue.