Attach Local image in MMS in iphone - iphone

I have one application in that I convert UIView in the image and send that file as an Email or an MMS. It is possible to send via Email using the addAttachmentData Method, but I can not find a similar solution for MMS.
Is there an MMS solution similar to the Email solution?

There is no way to attach photos to the MMS sheet currently. Right now it is only for the Email sheet.

Related

Want to send mail without USing MFmailcomposer and without webservice

I have a task which is related to sending mail without connection or MFmailcomposer.
Simply i am doing work on a form which have to sent a single mail-id. when the form fills up and user perform the action for sending then sent mail to the client without MFmailcomposer and webservice if connection available else if Wi-fi is not available then filled form text file will save in documents directory.and when iPhone comes in connection then automatically it sent to that mail -id. document is saving as text file. but now what to do ?
Is SMTP is useful for it?
suggest me...
the below link could help you...
http://www.raddonline.com/blogs/geek-journal/iphone-sdk-testing-network-reachability/
You would definitely have to implement this functionality with SMTP.
Check the answer to this SO Post, Open Source Cocoa/Cocoa-Touch POP3/SMTP library?
Includes several links to different SMTP Libraries, as well as example code.

send picture as an attachment via SMS

I want to send a picture via an iphone app.
How to send the picture as an attachment with the SMS?
How to do that programatically?
Thanks in Advance.
1st a picture will be via MMS, not SMS.
Now, unfortunately I do not know exactly how to do this with images, but I have done it with text before using the "MFMessageComposeViewController" method... I'm sure with google you can find your answer, Good luck!!
Currently, only the recipients and the body can be prepopulated.
You may like to see the ref
Thanks!

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.

Programmatically Compose Email using my mail account without configure in iphone's mail client

In My Iphone Application,programmatically i have to sent Email without end user's knowledge (even end user should not know ,program sending email and receiving).if i use MFMailComposeViewController (MessageUI.framework), user need to config and able to see inbox.
I am new to this concept. can you please just give some path to get solution, like which framework or library i need to use in my app for this work. Thanks in advance
Take a look to this smtp library for iPhone
Good luck.

Iphone SDK : Send Email in background in iphone app

Iphone sdk : how to send an email in background from an iphone app.
Based on certain selections made by the user I want to trigger an event to send an email to an admin.
I am aware of the MFMailComposeViewController but this will open the mail composer window which I want to skip.
You will need to use a third party library for that. The SDK doesn't allow you to send emails in the background.
Here's one you can use:
http://code.google.com/p/skpsmtpmessage/
This is an old question, but for anyone coming across it still you can take a look at this post. The accepted answer shows how to send the email in a background using a smtp server. It also includes an image that will "dim" the screen as the email is sent and "brighten" back up after the email is sent. Take a look at the screen shot to see what I mean.
Locking the Fields in MFMailComposeViewController