0

We have an IoS APP that can send and email and attach a file that was created by the app. It has worked fine for long but now a user says it is not possible. It seems like the users at this company are not allowed to use Apple Email so they are using Outlook.

I have now heard that the IoS APPs requires Apple Email to send emails. I just thought that was a bit strange and wanted to ask if there are ways so that the APP can use Outlook instead.

Green1234
  • 33
  • 3
  • You can't use `MFMailComposeViewController` to send via outlook. You could use `UIActivityViewController` to let the user share the file via Outlook. – Paulw11 Oct 18 '21 at 19:39

1 Answers1

0

Apps aren't required to use Apple's mail API, but if you want to use something else then you have to do it yourself. Apple won't stop you from using Outlook but they won't help you either. Outlook has its own API that can be used by third party apps. There are various questions on StackOverflow from people using that API.

Tom Harrington
  • 69,312
  • 10
  • 146
  • 170