Skip to content Skip to sidebar Skip to footer

Send An HTML Formatted Email Using MFMailComposeViewController

I am formatting a mail with HTML content and sending it using MFMailComposeViewController.But on the receiver side mail is not reaching in HTML format.Only Plain text is visible.Ho

Solution 1:

Be sure to set the message body using the following lines:

MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
NSString *emailBody = @"<p><b>Hello World</b></p>";                         
[picker setMessageBody:emailBody isHTML:YES];

Solution 2:

Even if you set isHTML param to YES, your message body can be sent as plain/text if the message body can be represented as such.

In my case adding a link in the message body helped. Bold formatting with tags works too. Tricky!

Tested on iPod 1G 3.1.3.


Post a Comment for "Send An HTML Formatted Email Using MFMailComposeViewController"