How to set from in MFMailComposeViewController?

后端 未结 4 1603
礼貌的吻别
礼貌的吻别 2021-01-05 04:34

How do I set the from address in the MFMailComposeViewController?

MFMailComposeViewController *controller = [[MFMailComposeViewController alloc]         


        
相关标签:
4条回答
  • 2021-01-05 04:54

    This is possible since iOS 11.0

    Use setPreferredSendingEmailAddress(_:) to define a preferred address which will automatically select a corresponding account if available.

    From the documentation:

    Sets the preferred email address to use in the From field, if such an address is available.

    If the user does not have an account with a preferred address set up, the default account is used instead. Call this method before you display the mail composition interface only. Do not call it after presenting the interface to the user.

    0 讨论(0)
  • 2021-01-05 05:01

    There isn't a way to do what you want with the From field. The from address will default to whatever mail account the user has specified as "default" in Settings. Obviously if the user has only one mail account set up then it will be that account.

    0 讨论(0)
  • 2021-01-05 05:07

    As far as I know, it's not possible. When the mail composer is open, you will be able to fetch the "from" field from the list of e-mails configured in the device, and the user selected default will be initially set.

    I know that it would be useful to know the list of available "from" accounts and set the composer with a more appropriate user choice. Probably Apple doesn't want to give the app this possibility. You might open a "radar" with Apple, e.g. adding a special view controller to let the user define a different default address for the specific app, this would be a nice addition to the iOS.

    0 讨论(0)
  • 2021-01-05 05:09

    I don't think you can change "from" if you use MFMailComposeViewController in app email in iOS Another workaround, you may use this, a standalone email client, instead. You will have better control of the sender programmatically.

    0 讨论(0)
提交回复
热议问题