开发者

send an HTML formatted email using MFMailComposeViewController

开发者 https://www.devze.com 2022-12-16 18:01 出处:网络
I am formatting a mail with HTML content and sending it u开发者_Python百科sing MFMailComposeViewController.But on the receiver side mail is not reaching in HTML format.Only Plain text is visible.How c

I am formatting a mail with HTML content and sending it u开发者_Python百科sing MFMailComposeViewController.But on the receiver side mail is not reaching in HTML format.Only Plain text is visible.How could I resolve this issue.Thanks in advance.


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];


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消