inwise Top Background
Arrow on Service

Email Marketing API-Part B

InwiseWebServices API Center

https://www.em-sender.com/ws/inwiseservice.asmx

A mobile device message with all of it's parameters

Parameters:

Name Type Required Description
Name string Yes The internal message name to be used by the account owner
Body string Yes The body of the message that will be sent. The body may contain custom recipient fields, unless sending to a non existing recipient.
Sender string Yes The name or number of the sender, as will be displayed on the mobile device. Please note that is value is restricted under the company's policy and the mobile service providers.
Validity integer Yes The value in minutes since the moment of sending till the moment the message will be expired.
Charset string Yes A valid charset in which the message will be sent

Java Code:

            InwiseServiceReference.MobileMessage message = new InwiseServiceReference.MobileMessage();
            message.setSender("MyCompany");
            message.setValidity((short) 1440);
            message.setBody("Hi #field1#");
            message.setName("my message
                name");

C# Code:

            MobileMessage message = new MobileMessage();

            message.Validity = 1440;

            message.Name = "New sale notification";

            message.Body = "The sale has started!";

            message.Charset = "unicode";

            message.Sender = "MyCompany";

VB Code:

        Dim message As New MobileMessage()

        message.Validity = 1440

        message.Name = "New sale notification"

        message.Body = "The sale has started!"

        message.Charset = "unicode"

        message.Sender = "MyCompany"

Raw Xml:

           <entity xsi:type="MobileMessage">

                <AccountId xsi:nil="true" />

                <Body>Hi #field1#</Body>

                <Bounces xsi:nil="true" />

                <Charset>unicode</Charset>

                <CreateDate xsi:nil="true" />

                <EndDate xsi:nil="true" />

                <LastSent xsi:nil="true" />

                <Name>my message name</Name>

                <NonSent xsi:nil="true" />

                <Opens xsi:nil="true" />

                <RecipientType xsi:nil="true" />

                <Sender>MyCompany</Sender>

                <Sent xsi:nil="true" />

                <Status xsi:nil="true" />

                <TableConnectionId xsi:nil="true" />

                <Unsubscribes xsi:nil="true" />

                <UpdateDate xsi:nil="true" />

                <Validity>1440</Validity>

            </entity>




Home  |  About us  |  Products  |  Service  |  Partners  |  Forum  |  Email Marketing Terms  |  Support  |  Contact us
Terms & Conditions  |  Privacy Policy  |  Anti Spam Policy  |  Site Map
© 2008 inwise LTD. All rights reserved.