Guest
2009-06-23T13:10:30Z
Hi Dears,

I've registered for a free account and I tried SMS sending and it is working fine.
But when I tried sending MMS, I caught the exception "IntelliSMS request failed (InvalidRequest)"

I'm using asp.net c#, and the file size is: 1.58 kb, and I used the sample provided on the website as follows:

MMSMessage NewMMSMessage = new MMSMessage();
NewMMSMessage.Subject = "MMS Message Subject";

MessagePart MessagePart1 = new MessagePart();
MessagePart1.Filename = "Image1.gif";
MessagePart1.SourceFilename = "C:\\Image1.gif";
NewMMSMessage.MessageParts.Add ( MessagePart1 );

MessagePart MessagePart2 = new MessagePart();
MessagePart2.Filename = "Text1.txt";
MessagePart2.Text = "This is a text part";
NewMMSMessage.MessageParts.Add ( MessagePart2 );


IntelliSMS objIntelliSMS = new IntelliSMS();

objIntelliSMS.Username = "usr";
objIntelliSMS.Password = "pass";

StringCollection ToList = new StringCollection();
ToList.Add("9746853098");

SendStatusCollection SendStatusList;

SendStatusList = objIntelliSMS.SendMMSMessage
( ToList, NewMMSMessage );




Any ideas about the reason for this error?



Thanks & BR
Support
2009-06-23T13:58:21Z
Please note MMS is only available on the UKDirect service. It is not available on accounts on the Economy service.

Further, the server can only be used to send to UK mobiles.
Guest
2009-06-23T15:38:10Z
Actually, I'm located in Qatar. And I want to send MMS to people inside Qatar.
Does that mean that I can't use your .net interface to send MMSs inside Qatar?
Support
2009-06-23T15:40:14Z
Correct, you can only use the service to send MMS messages to UK mobiles.