菜鸟教程小白 发表于 2022-12-12 09:26:50

ios - 使用 MFMailComposeViewController 编写 HTML 消息


                                            <p><div>
            <aside class="s-notice s-notice__info post-notice js-post-notice mb16"role="status">
      <div class="d-flex fd-column fw-nowrap">
            <div class="d-flex fw-nowrap">
                <div class="flex--item wmn0 fl1 lh-lg">
                  <div class="flex--item fl1 lh-lg">
                        <b>这个问题在这里已经有了答案</b>:
                        
                  <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>以下是适合您的解决方案:</p>

<pre><code>MFMailComposeViewController *mailController = [ init];
mailController.mailComposeDelegate = self;
NSString *emailBody = @&#34;&lt;p&gt;Here Your HTML Code&lt;/p&gt;&#34;;                        
;
;
</code></pre>

<p>实现委托(delegate)</p>

<pre><code>- (void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_3_0)
{
// Notifies users about errors associated with the interface

switch (result)

{
    case MFMailComposeResultCancelled:

      // message.text = @&#34;Result: canceled&#34;;

      break;

    case MFMailComposeResultSaved:

      // message.text = @&#34;Result: saved&#34;;

      break;

    case MFMailComposeResultSent:

      //   message.text = @&#34;Result: sent&#34;;

      break;

    case MFMailComposeResultFailed:

      // message.text = @&#34;Result: failed&#34;;

      break;

    default:

      //message.text = @&#34;Result: not sent&#34;;

      break;

}

;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使用 MFMailComposeViewController 编写 HTML 消息,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/15288978/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/15288978/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使用 MFMailComposeViewController 编写 HTML 消息