Hi,
I'm trying to send an SMS to a email address (e.g. [email protected]) as follow:
MFMessageComposeViewController *picker = [[MFMessageComposeViewController alloc] init];
picker.messageComposeDelegate = self;
picker.recipients = [NSArray arrayWithObjects:@"[email protected]", nil];
However, the email address gets trimmed/formatted in the SMS composer To: line as bellow: "myemailexample.com"
I want to see the exact string that I'm passing in the To line, does anyone have any suggestion why it trims the input string?
Thanks a lot,
-Mehrdad