I am trying to send an MMS mesage using the platform API, but the message doesnot go through.
This is the code i have used.
inParam = {MessageType:"MMS", To:destinationNumber.text, BodyText:destinationMessage.text, Attachment:_root.activeItemValue, MimeType:mimeType};
messaging.Send(inParam,onSend);
If i dont specify the attachment and the Mimetype, i am able to send the message.
The attachment contains the following value "E:\Images\344.jpg"
and the Mimetype contains "image/jpeg".
Is there anything wrong with the above code?



