First of all, I know this question has been asked before here: -
I think the links provided there are likely to contain the answer I need, I just think I don't understand the subject (MMS and J2ME) particularly well.
Basically, it seems to me that with the provided answer a J2ME MMS sender client sends a message to another phone running a J2ME receiver client. The receiver client then intercepts the incoming MMS and displays it, or whatever.
What I want to do is programmatically send a bog standard MMS (a picture message actually) to another phone, just as though I was using the standard 'new message' functionality provided by the phone - so no J2ME client running on the target phone, I just want it to appear as a normal new message.
To summarise, what I want to do in pseudo code is: -
MMSMessage msg = new MMSMessage();
msg.setDestinationNumber("0771234567");
msg.setImage("E:\\image.jpg");
msg.send();
Is this possible in J2ME? And if so does anyone know how I can achieve it, what parts of the solution to the previous question do I have to use?
Thanks,
Simon