Hi,
I'd like to make it so the user can send an email address which comes from a predefined email address. So the user does not specify the email address.
However, I'd like it so they do define the recipient's email and the content of the email address.
This is what I tried using earlier, which goes through the Mail client:
NSString *emailInfo = [NSString stringWithString: @"mailto:[email protected]&subject=SUBJECT"];
[[UIApplication sharedApplication] openURL: [NSURL URLWithString: emailInfo]];
The thing is, I want to make it so MAIL & SUBJECT resemble the toEmail and content variables which are used in UITextFields.
I tried using stringWithFormat but it didn't work.
Any ideas?
Thanks