Hi,
Can somebody explain to me how I can present an email to the iPhone-App-User that has input fields that the User should fill in before sending ??
Simple Example: The user should input their name....
Blockquote
NSString *emailBody = @"\
<html><head>\
</head><body>\
<form>First name:<input type="text" name="firstname" /></form>\
</body></html>";
[picker setMessageBody:emailBody isHTML:YES];
Blockquote
With the above example I get a compiler error "Expected ',' or ';' before 'text'". Any help would be much appreciated. I tried searching for the answer but didn't get a solution.
Thanks