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