Possible Duplicate:
How to programmatically send SMS on the iPhone?
How to Send SMS with Some Body text programmatically from iPhone using Objective-C. Was trying to do something like:
NSString *path = [NSString stringWithFormat:@"sms:?&body:%@", aSMSBodyText];
NSURL *url = [NSURL URLWithString:[path stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
[[UIApplication sharedApplication] canOpenURL:url];
but not working, I don't want to use MFMessageComposeViewController, cause my app supports from 3.0 Onwards & MFMessageComposeViewController is applicable from 4.0 Onwards.