Is it possible to send SMS using LWUIT? - lwuit

I want to send SMS using LWUIT. what class should i be looking at? Does LWUIT have a class for sending SMS?

You don't need LWUIT to send sms. You can design UI using LWUIT and use MessageConnection class to send sms. You can have a look at this and this thread.

Related

Custom mail sending other than MFMailComposeViewController?

Is there any other way to send custom mail.
In my application i want to send mail like this
How can i implement this custom view for sending mails.
Check this answer:
Open Source Cocoa/Cocoa-Touch POP3/SMTP library?
It's more complex than using the MailComposer, but it's possible
also you can use this library:
https://code.google.com/p/skpsmtpmessage/

Sending SMS from iphone application to user

i am creating an application where user will find the deal and if he want to receive the deal detail by sms or email.
how user will get sms and mail from my application without using web service if any sample code is available then please help me.
Thanks in Advance
For mail you can check out this: MFMailComposeViewController and its delegate MFMailComposeViewControllerDelegate.
Documentation here:
https://developer.apple.com/library/ios/#documentation/MessageUI/Reference/MFMailComposeViewController_class/Reference/Reference.html
For sending SMS, MFMessageComposeViewController.
Documentation here:
https://developer.apple.com/library/ios/#documentation/MessageUI/Reference/MFMessageComposeViewController_class/Reference/Reference.html
Apple provides MFMessageComposeViewController which can be used to send SMS too. This article should solve your problem - How to Send an SMS Progammatically in iOS

sending SMS in IOS Custome SMS Composer

I am looking for sending SMS through my iPhone app.
There is a condition , i am not using the default composer of iPhone, i have designed my own design.
There is a text box and send button, so sms should go to the selected respective phone no of phone book.
I have done that with default compose, but i want to go with customize sms composer.
Please help in this case.
Thanks,
Gopal
If you want to use iOS' built-in SMS API, I'm afraid you must also use the built-in message composer (it's part of the package deal). That said, you could always use a third-party SMS gateway, and rather than send the SMS directly from the phone, you could send it via HTTP to the gateway.

How send messages to the contact list numbers

I am working in new application and I am new to iphone.
I want to send a message to the person whom I have added from the contact list.
Is it possible?
Can you please give me some sample code or links.
For sending SMS through iPhone, it is required to have user authentication. So programmatically without and user interaction you cannot send an SMS
You need to see this to get a better idea:
How to programmatically send SMS on the iPhone?
also see:
MFMessageComposeViewController

Is it possible to send a picture message using iPhone SDK?

Is it possible to send an MMS message with a picture using the iPhone SDK? After looking at MFMessageComposeViewController, it doesn't appear to be possible.
Yes thats true there is still no API for sending mms in iphone.But the only option left is to attach the image in mail composer
I think, the iphone has no public API for sending MMS. Only way you can achieve this is to use a providers MMS gateway directly, but this would not work worldwide.
Alternate way to is open SMS interface and let the User choose Image/Video as attachment. Then SMS will automatically be converted into MMS.