I am using following code to compose an email in XCode:
let mailComposerVC = MFMailComposeViewController()
mailComposerVC.setToRecipients(["xxx@yahoo.com"])
mailComposerVC.setSubject("subject 1")
mailComposerVC.setMessageBody(a_lot_of_content, isHTML: true) // <-- What's the limit for `a_lot_of_content`?
At the last line, when setting the message body, is there a length limit for a_lot_of_content
?
EDIT: I am not asking the maximum length of a NSString. Instead, would the limitation come from the mail protocol, the OS, the Mail app, the SDK, etc.