There are a couple out there. I'm sure they are using an smtp client in the background. I found some open source code project called skpsmtpmessage but I don't know how to use it.
The way HaHaHa worked it would ask what address you want it sent to. You typed in the address. It then emailed the image to the address you typed in from whatever address they had setup in the app.
I think the easiest way would be to have a server side script (PHP, CGI, etc.) that you call from your app. Then you can send a mail, write a file, insert data into a DB or what you like...
The way HaHaHa worked it would ask what address you want it sent to. You typed in the address. It then emailed the image to the address you typed in from whatever address they had setup in the app.
I think the easiest way would be to have a server side script (PHP, CGI, etc.) that you call from your app. Then you can send a mail, write a file, insert data into a DB or what you like...
The email was "from" the app address, not the person using the app. So it was like from "hahahaapp@warnerbros.com" or something (not really, but you get the point). So it's not sending emails in the background as the app user. In order to do that you need to have a settings section where the app user will enter their from address, you can't pull from the Mail.app (and of course you'd then need proper SMTP information, otherwise you'd be spoofing their address and I'm sure Apple will reject it). If you want the app to silently send as the user of the app, I don't think it will happen unless you ask them for ALL of their SMTP info in some sort of settings section. Using the app user's information to do something like that is also probably a privacy issue, so Apple would make you warn/notify the user that you are doing it. Or they could decide to just flat out reject the app 😛 Unless I'm totally misunderstanding what you're trying to accomplish?