I’ve written code which creates and populates an email in objective c iOS but we need to ensure the user does not alter the content – the user is still in control of sending the email.
Is this possible and if so how?
Cheers
I’ve written code which creates and populates an email in objective c iOS but
Share
You’ll need to send the message to the MTA by some means other than the mail framework in iOS. If you use the mail framework, the user will aways be able to edit the message. Two options are:
Implement your own SMTP client directly in your app. Since you’re just sending a message, this isn’t really that complicated.
Send the message to another machine via web services or some other interface, and have that machine send the message on your behalf.