send an HTML formatted email using MFMailComposeViewController

前端 未结 2 518
[愿得一人]
[愿得一人] 2020-12-30 14:48

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 vis

2条回答
  •  南笙
    南笙 (楼主)
    2020-12-30 15:29

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

    MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
    picker.mailComposeDelegate = self;
    NSString *emailBody = @"

    Hello World

    "; [picker setMessageBody:emailBody isHTML:YES];

提交回复
热议问题