SMS type to Fax? | developer.brewmp.com SMS type to Fax? | developer.brewmp.com

Developer

SMS type to Fax?

Forums:

Hi,
There is a need to set the SMS type to fax 3/fax 4 while sending the SMS.

The following API's could be called:

To send the SMS:
void ISMS_SendMsg(ISMS *po, const ISMSMsg * pISMSMsg, AEECallback * pcb, uint32 *pnRv)
The ISMSMsg *(containing parameters like SMS type) can be set using the following:

int ISMSMSG_AddOpt(ISMSMsg *po, SMSMsgOpt *apwoz) is used to add the options for the message to be sent.
SMSMsgOpt message options can be set from "message options" some of which are :
1. AEESMSType type
which has the following types.
Types are:
AEESMS_TYPE_UNKNOWN = 0,
AEESMS_TYPE_TEXT,
AEESMS_TYPE_PAGE,
AEESMS_TYPE_VOICE_MAIL_NOTIFICATION,
AEESMS_TYPE_BROADCAST,
AEESMS_TYPE_WAP,
AEESMS_TYPE_EMS
or
But this doesn't have FAX as one of the options. (Moreover in brew API reference it says AEESMSType is for incoming messages)

2. AEESMSMsgWaitingKind
Types are:
AEESMS_MSGWAITINGKIND_VOICEMAIL 0
AEESMS_MSGWAITINGKIND_FAX 1
AEESMS_MSGWAITINGKIND_EMAIL 2
AEESMS_MSGWAITINGKIND_OTHER 3

the name suggests it is waiting (reception)

Please suggest how to set the SMS type to fax while sending the SMS.
Thanks in advance.