AddRecipient Method

Will add a recipient of the specified type to the recipient list.

Syntax

ANSI (Cross Platform)
int AddRecipient(int iRecipientType, const char* lpszRecipientAddress);

Unicode (Windows)
INT AddRecipient(INT iRecipientType, LPCWSTR lpszRecipientAddress);
- (void)addRecipient:(int)recipientType :(NSString*)recipientAddress;
#define MID_SMPP_ADDRECIPIENT 2

IPWORKS_EXTERNAL int IPWORKS_CALL IPWorks_SMPP_Do(void *lpObj, int methid, int cparam, void *param[], int cbparam[], int64 *lpllVal);

Remarks

This method will add a recipient of the specified type to the recipient list. For normal-type recipients, the addresses should be either a dotted IPv4 address (for sending messages to other SMS-enabled applications) or the directory number of a mobile phone. For sending messages to distributed lists, the name of the list should be used.

Valid values for RecipientType are:

0 (smppRecipientTypeNormal)Normal SME (Short Message Entity) Address
1 (smppRecipientTypeList)Distribution List

Error Handling (C++)

This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks 2020 C++ Edition - Version 20.0 [Build 8307]