I want to create the app that will send SMS as text and MMS i.e. image, video, gif and audio. So is there any possibility to create such app and is there any reference available or is there any document available for implementing SMS and MMS???
Send SMS and MMS from app
Have a look at MFMessageComposeViewController
See https://developer.apple.com/documentation/messageui/mfmessagecomposeviewcontroller
If you’re OK with user interaction then robnotyou’s answer is spot on.
If you’re trying to do this without user interaction, that’s not supported. See QA1944 Sending SMS Programmatically for more background on this.
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"
Thanks for your reply!